/*marquee glass effect */
 .marquee-glass-box {
      background: rgba(233, 233, 233, 0.2);
      border: 1px solid rgba(255, 255, 255, 0.3);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border-radius: 16px;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
      padding: 15px 25px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      color: #212529;
      font-weight: 500;
	  margin-top: 545px;
    }

    .job-label {
      white-space: nowrap;
      font-size: 1rem;
      font-weight: 600;
      color: #198754;
    }

    .vertical-divider {
      border-left: 1px solid #505375;
      height: 24px;
      margin: 0 15px;
    }

    .marquee-container {
      overflow: hidden;
      flex-grow: 1;
    }

    .marquee-text {
      display: inline-block;
      white-space: nowrap;
      animation: scroll-left 20s linear infinite;
      font-size: 0.95rem;
      color: #fefefe;
    }

    @keyframes scroll-left {
      0% {
        transform: translateX(100%);
      }
      100% {
        transform: translateX(-100%);
      }
    }
	
	 .jobtitle-btn {
	    background-color: #3e4944;
    color: white;
    border-radius: 25px;
    padding: 6px 22px;
    font-weight: 500;
    border: none;
    box-shadow: 0 4px 10px rgb(192 192 192 / 40%);
    display: flex
;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
	}

    .recruit-btn {
      background-color: #198754;
      color: white;
      border-radius: 25px;
      padding: 6px 22px;
      font-weight: 500;
      border: none;
      box-shadow: 0 4px 10px rgba(1, 98, 52, 0.4);
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 0.95rem;
      transition: all 0.3s ease;
    }

    .recruit-btn:hover {
      background-color: #014f2c;
      box-shadow: 0 6px 14px rgba(1, 98, 52, 0.6);
    }


	/*btn class */
	.btn-primary-glass, .btn-success-glass, .btn-dark-glass {
  border-radius: 26px;
  padding: 5px 12px;
  margin-bottom: 8px;
  font-size: 14px;
  color: #fff;
  border: none;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

/* Specific backgrounds */
.btn-primary-glass {
  background-color: rgb(0 102 255 / 68%);
}

.btn-success-glass {
   background-color: rgb(1 98 52 / 69%);
}

.btn-dark-glass {
 background-color: rgb(33 37 41 / 66%);
 padding: 8px 43px;
}

/* Hover states */
.btn-primary-glass:hover {
  background-color: rgba(0, 102, 255, 0.35);
  color: #fff;
}

.btn-success-glass:hover {
  background-color: rgba(1, 98, 52, 0.35);
  color: #fff;
}

.btn-dark-glass:hover {
  background-color: rgba(33, 37, 41, 0.35);
  color: #fff;
}

/*secton about */
.section-title {
  text-align: center;
  padding: 10px 20px 20px;
}

.section-title h2 {
  font-size: 32px;
  color: #016234;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-title p {
    color: #505375;
    font-size: 16px;
    max-width: 85%;
    margin: 25px auto;
    line-height: 1.6;

}

.cards-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  padding: 20px;
}

.info-card {
  background: #ffffff;
  border: 1px solid #e9e9e9;
  border-radius: 14px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  max-width: 360px;
  width: 100%;
  transition: all 0.3s ease;
  overflow: hidden;
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.10);
}

.card-header {
  background-color: #e9e9e9;
  color: #016234;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  padding: 14px 10px;
  border-bottom: 1px solid #ddd;
}

.card-body {
  display: flex;
  align-items: flex-start;
  padding: 16px;
  gap: 14px;
}

.card-body img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
  border: 2px solid #ccc;
}

.text-block {
  color: #212529;
  font-size: 14px;
  line-height: 1.5;
}

.text-block strong {
  color: #016234;
}

.icon {
  color: #016234;
  font-style: normal;
  margin-right: 6px;
}

.section-title h2:after {
background: #ffffff !important;
}

/* tabs menu css */
 .custom-tabs {
  padding:12px;
}
.tab-menu {
  display: flex;
  list-style: none;
  padding: 0;
  gap: 10px;
  margin-bottom: 15px;
  flex-wrap: wrap;
      justify-content: center;
}
.tab-menu li {
  padding: 10px 16px;
  border-radius: 30px;
  background-color: #016234;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}
.tab-menu li:hover,
.tab-menu li.active {
  background-color: #505375;
  color: #e9e9e9;
}
.tab-content .tab {
  display: none;
}
.tab-content .tab.active {
  display: block;
}
.news-section {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.news-card {
  background: #ffffffcc;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 20px;
  flex: 1;
  min-width: 300px;
  max-width: 32%;
  transition: 0.3s ease-in-out;
}
.news-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #016234;
}
.news-marquee {
  height: 200px;
  overflow: hidden;
}
.news-item {
  margin-bottom: 15px;
  color: #212529;
}
.news-item .dot {
  height: 10px;
  width: 10px;
  background-color: #505375;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
}
.download-btn {
  background-color: #016234;
  color: white;
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 12px;
  transition: 0.3s ease;
  display: inline-block;
  margin-top: 5px;
}
.download-btn:hover {
  background-color: #505375;
  color: #e9e9e9;
}
.news-card.links .link-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  border-bottom: 1px solid #ccc;
  color: #212529;
  transition: all 0.3s;
}
.news-card.links .link-item:hover {
  background-color: #f2f2f2;
}
.news-card.links .link-item img {
  width: 40px;
  margin-right: 12px;
}
.news-card.links .link-item a {
  color: #016234;
  font-size: 20px;
}

/* button css for second tab */
.glass-button-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 20px;
  justify-items: center;
}

.glass-btn {
  width: 100%;
  padding: 14px 22px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  border: none;
  border-radius: 30px;
  backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08); /* reduced shadow */
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  position: relative;
  z-index: 1;
  overflow: hidden;
  text-align: center;
}

/* Hover Effect */
.glass-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.12);
  filter: brightness(1.05);
}

/* Individual Button Colors */
.btn-1 { background: rgba(121, 40, 202, 0.85); }     /* Violet */
.btn-2 { background: rgba(200, 128, 0, 0.85); }       /* Amber */
.btn-3 { background: rgba(0, 150, 136, 0.85); }       /* Teal */
.btn-4 { background: rgba(76, 175, 80, 0.85); }       /* Green */
.btn-5 { background: rgba(63, 81, 181, 0.85); }       /* Indigo */
.btn-6 { background: rgba(244, 67, 54, 0.85); }       /* Red */
.btn-7 { background: rgba(255, 87, 34, 0.85); }       /* Deep Orange */
.btn-8 { background: rgba(0, 188, 212, 0.85); }       /* Cyan */
.btn-9 { background: rgba(103, 58, 183, 0.85); }      /* Deep Purple */
.btn-10 { background: rgba(139, 195, 74, 0.85); }     /* Light Green */
.btn-11 { background: rgba(33, 150, 243, 0.85); }     /* Blue */
.btn-12 { background: rgba(233, 30, 99, 0.85); }      /* Pink */
.btn-13 { background: rgba(255, 152, 0, 0.85); }      /* Orange */
.btn-14 { background: rgba(0, 131, 143, 0.85); }      /* Dark Cyan */
.btn-15 { background: rgba(156, 39, 176, 0.85); }     /* Purple */
.btn-16 { background: rgba(46, 125, 50, 0.85); }      /* Dark Green */


/* service class */
   .card-section-wrapper {
        background-color: #fffffd;
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
    margin-top: 66px;
    }

    .card-section {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      max-width: 1280px;
      margin: 0 auto;
      flex-wrap: wrap;
    }

    .custom-card {
      flex: 1 1 calc(25% - 20px);
      background: rgba(1, 98, 52, 0.85); /* green with opacity */
      border: 1px solid rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(8px);
      border-radius: 16px;
      padding: 24px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .custom-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    }

    .card-logo {
      display: block;
      margin: 0 auto 16px;
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background-color: #fff;
      object-fit: contain;
      border: 2px solid #fff;
      padding: 4px;
    }

    .card-title {
      font-size: 16px;
      color: #ffffff;
      text-align: center;
      font-weight: 600;
      margin-bottom: 24px;
      min-height: 60px;
    }

    .card-button {
      align-self: center;
      background-color: #ffffff;
      color: #016234;
      border: none;
      padding: 10px 20px;
      font-weight: 600;
      border-radius: 30px;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .card-button:hover {
      background-color: transparent;
      border: 1px solid #ffffff;
      color: #ffffff;
    }

    @media screen and (max-width: 1024px) {
      .custom-card {
        flex: 1 1 48%;
      }
    }

    @media screen and (max-width: 600px) {
      .custom-card {
        flex: 1 1 100%;
      }
    }
	
	
/*  qucik links*/
.quick-links-wrapper {
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  background-color: #f7f7f7;
  font-family: 'Inter', sans-serif;
}

.quick-links-container {
  width: 100%;
  max-width: 1300px;
}

.quick-links-title {
  background-color: #e6e6e6;
  color: #016234;
  text-align: left;
  padding: 20px 30px;
  font-size: 24px;
  font-weight: 600;
  border-radius: 16px 16px 0 0;
}

.quick-links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  background: #fff;
  padding: 30px;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  justify-content: space-between;
}

.quick-card {
  background: #f0f0f0;
  border-radius: 20px;
  padding: 16px 20px;
  width: calc(33% - 20px);
  min-width: 200px;
  display: flex;
  align-items: center;
  color: #016234;
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
  gap: 14px;
  justify-content: space-between;
}

.quick-card:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.quick-icon {
  background-color: #016234;
  color: #fff;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.quick-text {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  flex-grow: 1;
  margin-left: 10px;
}

.setter {
  font-size: 18px;
  color: #555;
}
 
@media screen and (max-width: 768px) {
  .quick-card {
    width: 100%;
  }
}

	
	
	
	
	/* scrool logo design */
	.logo-scroll-section {
  width: 100%;
  overflow: hidden;
  background: #e6ebff;
  padding: 20px 0;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
}

.logo-track {
  display: flex;
  width: max-content;
  animation: scroll-left 30s linear infinite;
  gap: 60px;
}

.logo-track img {
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
}

.logo-track img:hover {
  transform: scale(1.05);
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.setter{
	margin-left: 145px;
    color: #8f8f8f;
}

.header .social-links {
    margin: 100px 0 20px 0;
}
  
  
  
 /*slider Css */
  
  
  
/* 1. Main Section Container */
        .custom-hero-section {
            position: relative;
            width: 100%;
            height: 100vh; /* Viewport height ka 85% */
            overflow: hidden; /* Jo image screen se bahar ho use chupaye */
            background: #111; /* Dark background fallback */
            margin-top: 0;
            padding: 0;
        }

        /* 2. Slider Track (Ye lamba patta hai jispe sari images ek line mein hain) */
        .c-slider-track {
            display: flex; /* Images ko horizontal line mein lata hai */
            width: 100%;
            height: 100%;
            /* Smooth sliding transition */
            transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            will-change: transform;
        }

        /* 3. Individual Slide Item */
        .c-slide {
            min-width: 100%; /* Har slide 100% chaudai legi */
            width: 100%;
            height: 100%;
            flex-shrink: 0; /* Bahut Zaroori: Ye image ko dabne (shrink hone) se rokta hai */
            position: relative;
        }

        /* Slide ke andar ki image */
        .c-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* Image ko bina stretch kiye container fill karegi */
            display: block;
        }

        /* 4. Navigation Indicators (Circles) */
        .c-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;  /* Circle Width */
            height: 50px; /* Circle Height */
            background: rgba(0, 0, 0, 0.3); /* Semi-transparent black */
            border: 2px solid rgba(255, 255, 255, 0.7); /* White Border */
            border-radius: 50%; /* Perfect Circle */
            color: white;
            font-size: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10; /* Images ke upar rahe */
            transition: all 0.3s ease;
        }

        .c-nav-btn:hover {
            background: rgba(255, 255, 255, 0.9);
            color: black;
            border-color: white;
        }

        .c-prev { left: 20px; }
        .c-next { right: 20px; }

        /* 5. Marquee Box Styling (Centered Bottom) */
        .c-marquee-wrapper {
            position: absolute;
            bottom: 30px; /* Neeche se gap */
            left: 50%;
            transform: translateX(-50%); /* Center align */
            width: 90%;
            max-width: 1000px;
            z-index: 20;
        }

        .c-glass-box {
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.15); /* Glass Effect Background */
            backdrop-filter: blur(12px); /* Blur effect */
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 50px; /* Capsule shape */
            padding: 10px 15px;
            color: white;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .c-job-label {
            background: #007bff; /* Blue bg for label */
            color: white;
            padding: 5px 15px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 14px;
            white-space: nowrap;
        }

        .c-divider {
            height: 30px;
            width: 2px;
            background: rgba(255,255,255,0.4);
            margin: 0 15px;
        }

        .c-marquee-content {
            flex-grow: 1; /* Bachi hui jagah le */
            overflow: hidden;
            white-space: nowrap;
            position: relative;
        }
        
        /* Simple CSS Marquee Animation */
        .c-scrolling-text {
            display: inline-block;
            padding-left: 100%;
            animation: scrollText 20s linear infinite;
        }

        @keyframes scrollText {
            0%   { transform: translateX(0); }
            100% { transform: translateX(-100%); }
        }

        .c-recruit-btn {
            background: white;
            color: black;
            border: none;
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: bold;
            margin-left: 15px;
            cursor: pointer;
            white-space: nowrap;
            transition: 0.3s;
        }
        .c-recruit-btn:hover {
           background: #e0e0e0;
        }

        /* Mobile Responsive Adjustments */
        @media (max-width: 768px) {
            .c-glass-box {
                flex-wrap: wrap;
                justify-content: center;
                padding: 15px;
                border-radius: 20px;
            }
            .c-divider { display: none; }
            .c-marquee-content {
                width: 100%;
                margin: 10px 0;
                text-align: center;
            }
             .c-scrolling-text {
                padding-left: 0;
                animation: none; /* Mobile pe simple text rakhein */
                white-space: normal;
            }
            .c-nav-btn { width: 40px; height: 40px; font-size: 18px; }
        }
		
		/* Container jo marquee ko bottom me center karega */
.marquee-fixed-container {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1100px;
  z-index: 999;
}

/* Main Glass Box */
.custom-glass-box {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.15); /* Translucent White */
  backdrop-filter: blur(15px); /* Strong Blur Effect */
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 60px; /* Perfect Capsule Shape */
  padding: 8px 12px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

/* Job Details Pill (Dark Grey) */
.job-pill {
  background: #343a40; /* Image ke jaisa dark color */
  color: #ffffff;
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

/* Thin Vertical Divider */
.custom-divider {
  width: 1px;
  height: 24px;
  background: rgba(0, 51, 153, 0.3); /* Subtle blue-ish divider */
  margin: 0 20px;
}

/* Marquee Text Area */
.marquee-content-area {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.scrolling-info {
  display: inline-block;
  white-space: nowrap;
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
  padding-left: 100%;
  animation: marquee-scroll 25s linear infinite;
}

/* Recruit Button (Green) */
.recruit-pill {
  background: #0a8a5e; /* Exact Green shade from image */
  color: white;
  border: none;
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 15px;
  transition: 0.3s ease;
}

.recruit-pill:hover {
  background: #08734e;
  transform: scale(1.02);
}

/* Marquee Animation */
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* Responsive for Mobile */
@media (max-width: 768px) {
  .custom-glass-box {
    border-radius: 20px;
    flex-wrap: wrap;
    padding: 15px;
  }
  .custom-divider { display: none; }
  .marquee-content-area { width: 100%; order: 3; margin-top: 10px; }
  .job-pill, .recruit-pill { font-size: 12px; padding: 6px 15px; }
}