body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}

/* Top promotional bar */
.nav-promo-bar {
    background: linear-gradient(135deg, #2527ac, #2e31d4);
    color: white;
    padding: 8px 0;
    font-size: 14px;

}

.nav-promo-bar .nav-contact-info {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Marquee animation */
.nav-marquee-container {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;

}

.nav-marquee-text {
    display: inline-block;
    animation: marquee 15s linear infinite;
}

.nav-ECOM-btn:hover{
    color:black;
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

@media (min-width: 992px) {
  .nav-header-height {
    height: 42px;
  }
}

.nav-promo-bar .nav-contact-info i {
    margin-right: 8px;
}

.nav-promo-bar .btn-outline-light {
    border-color: white;
    color: white;
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 20px;
}

.nav-promo-bar .btn-outline-light:hover {
    background-color: white;
    color: var(--gabros-blue);
}

/* Main header */
.nav-main-header {
    /*padding-top: 8px;*/
    /*padding-bottom: 8px;*/
    background-color: #fff; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); 
}

.nav-gabros-logo {
    font-size: 80px;
    font-weight: bold;
    color: var(--gabros-blue);
    text-decoration: none;
    color: #2527ac;
}

.navbar-nav .nav-link {
    color: #333;
    font-weight: 500;
    padding: 8px 15px !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--gabros-blue);
}

.dropdown-toggle::after {
    margin-left: 8px;
}

.nav-search-container {
    position: relative;
    max-width: 300px;
}

.nav-search-input {
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    padding: 8px 40px 8px 15px;
    font-size: 14px;
    width: 100%;
}

.nav-search-input:focus {
    border-color: var(--gabros-blue);
    box-shadow: none;
    outline: none;
}

.nav-search-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #999;
}

.nav-header-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-header-icons i {
    font-size: 20px;
    color: #333;
    cursor: pointer;
    transition: color 0.3s ease;
}

.nav-header-icons i:hover {
    color: var(--gabros-blue);
}

/* Bottom navigation */
.nav-bottom-nav {
    background-color: #f8f9fa;
    padding: 10px 0;
    border-top: 1px solid #e0e0e0;
}

.nav-bottom-nav .nav-link {
    color: #666;
    font-size: 14px;
    padding: 5px 15px !important;
    
}

.nav-bottom-nav .nav-link:hover {
    color: var(--gabros-blue);
}

/* Dropdown customization */
.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.dropdown-item:hover {
    background-color: #f0f7ff;
    color: var(--gabros-blue);
}

@media (max-width: 991px) {
    .nav-promo-bar .nav-contact-info {
        flex-direction: column;
        gap: 0px;
        text-align: center;
        width: 100%;
    }

    .nav-marquee-container {
        display: none;
    }

    .nav-contact-info div {
        width: 100%;
    }

    .nav-ECOM-btn {
        display: none;
    }

    .home-banner {
        height: 100px;
        margin: 0px;
    }

    .nav-header-container {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .navbar-toggler {
        order: 1;
        z-index: 2;
    }

    .nav-gabros-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        font-size: 24px;
        z-index: 1;
        margin-left: 90px;
    }

    .nav-header-spacer {
        width: 40px;
        /* To balance layout if needed */
        order: 2;
    }

    .why-gabros {
        text-align: center;
    }
    .nav-gabros-logo img{
    margin-left:35px;
    }
}

/*Index page CSS*/
.home-carousel-img {
    width: 100%;
    height: 550px;
    object-fit: cover;
  }

@media (max-width: 767.98px) {
    .home-carousel-img {
      width: 100%;
      height: 150px; /* Let image height scale naturally */
      max-height: 200px; /* Optional: limit max height */
      object-fit: cover; /* Keeps it full-width while cropping if needed */
    }
  }
  
.service-card {
    transition: all 0.3s ease;
    background-color: #f8f9fa;
  }

.service-card:hover {
transform: translateY(-8px);
box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
background-color: #ffffff;
}

.service-card img {
transition: transform 0.3s ease;
}

.service-card:hover img {
transform: scale(1.05);
}

.service-card a:hover {
text-decoration: underline;
}  

.rbsc-energy-hero {
    /*padding: 60px 20px;*/
    text-align: left;
    position: relative;
}

.rbsc-energy-content {
    max-width: 600px;
    
}

.rbsc-energy-content h1 {
    font-size: 3rem;
    font-weight: 800;
}

.rbsc-energy-content h1 span {
    color: #1d3557;
}

.rbsc-energy-content p {
    margin: 10px 0 30px;
    font-size: 1.1rem;
}

.rbsc-energy-btn {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #1d3557;
    color: #1d3557;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.rbsc-energy-btn:hover {
    background: #1d3557;
    color: #fff;
}

.rbsc-energy-scene {
    position: relative;
    margin-top: 40px;
}

.rbsc-energy-bg {
    width: 100%;
    height: auto;
    display: block;
}

/* Animated windmill blades over image */
.rbsc-windmill-blades {
    position: absolute;
    top: 35%;
    /* adjust based on your image */
    left: 25%;
    /* adjust based on your image */
    width: 50px;
    height: 50px;
    background: url('windmill-blades.png') no-repeat center/contain;
    animation: spin 4s linear infinite;
    transform-origin: center center;
}

/* Labels */
.rbsc-energy-label {
    position: absolute;
    background: rgba(29, 53, 87, 0.1);
    backdrop-filter: blur(2px);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1d3557;
    animation: fadeIn 1s ease forwards;
    opacity: 0;
}

.rbsc-energy-label.hydro {
    top: 75%;
    left: 5%;
    animation-delay: 0.3s;
}

.rbsc-energy-label.wind {
    top: 40%;
    left: 22%;
    animation-delay: 0.6s;
}

.rbsc-energy-label.solar {
    top: 80%;
    left: 38%;
    animation-delay: 0.9s;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .rbsc-energy-content h1 {
        font-size: 2rem;
    }

    .rbsc-energy-label {
        font-size: 0.75rem;
    }
}
/*Index page CSS End*/


/*testimonial section*/
.testmonial-section {
    background-color: #fff;
    padding: 60px 0;
}

.testmonial-title {
    font-weight: 700;
    font-size: 2rem;
}

.testmonial-subtitle {
    color: #888;
    margin-bottom: 50px;
}

.testmonial-box {
    background: #f5f7fa;
    padding: 25px 30px;
    border-radius: 16px;
    position: relative;
    font-style: italic;
    font-size: 1rem;
    color: #555;
}

.testmonial-box::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 20px solid #f5f7fa;
}

.testmonial-profile {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.testmonial-profile img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testmonial-name {
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 5px;
}

.testmonial-stars {
    color: #fbbc04;
}
        
        
        
/*why gabros support*/
.feature-icon {
  font-size: 2.5rem;
  color: #1d3557; /* Blue color */
  margin-right: 15px;
}

.feature-title {
  font-weight: 600;
  color: #000;
  margin-bottom: 4px;
}

.feature-subtext {
  color: #999;
  font-size: 0.95rem;
}

.feature-box {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  padding: 15px;
}

.feature-box .text {
  line-height: 1.2;
}

.features-section {
  padding: 40px 0;
  background-color: #fff;
}

.product-card {
transition: all 0.3s ease;
border: 1px solid #e0e0e0;
background-color: #fff;
}

.product-card:hover {
transform: translateY(-8px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
border-color: #1d3557;
}

.product-card img {
transition: transform 0.3s ease;
}

.product-card:hover img {
transform: scale(1.05);
}

/*whatspp icon for mobile screen*/
.whatsapp-float {
    position: fixed;
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: background 0.3s;
  }

.whatsapp-float:hover {
    background-color: #1ebe57;
    color: #fff;
    text-decoration: none;
  }

   /*Hide on large screens */
@media (min-width: 768px) {
    .whatsapp-float {
      display: none;
    }
  }


/*About page CSS*/

.about-banner-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .about-banner-img {
     width: 100%;
      height: 150px; /* Let image height scale naturally */
      max-height: 200px; /* Optional: limit max height */
      object-fit: cover; /* Keeps it full-width while cropping if needed */
  }
}
.gabros-timeline {
    position: relative;
    padding-top: 50px;
}

.gabros-timeline-line {
    position: absolute;
    top: 35px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #e0e0e0;
    z-index: 1;
}

/* Flex container for timeline years */
.gabros-timeline .row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap;
    /* no wrap on desktop */
}

.gabros-timeline .col {
    flex: 1 1 auto;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gabros-timeline-year {
    cursor: pointer;
    position: relative;
    z-index: 2;
    background: white;
}

.gabros-timeline-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #e0e0e0;
    margin: 0 auto;
    transition: background-color 0.3s, transform 0.3s;
}

.gabros-timeline-year.active .gabros-timeline-dot {
    background-color: #0033a0;
    transform: scale(1.2);
}

.gabros-timeline-year.active span {
    color: #0033a0;
    font-weight: bold;
}

.gabros-timeline-info {
    display: none;
    animation: fadeIn 0.4s ease-in-out forwards;
}

.gabros-timeline-info.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gabros-icon {
    font-size: 1.5rem;
    color: #0033a0;
}

.gabros-timeline-year span {
    display: block;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .gabros-timeline .row {
        flex-direction: column;
        align-items: flex-start;
    }

    .gabros-timeline .col {
        display: flex;
        flex-direction: row;
        align-items: center;
        width: 100%;
        margin-bottom: 20px;
        gap: 15px;
        /* space between year and info */
    }

    .gabros-timeline-year {
        display: flex;
        flex-direction: column;
        align-items: center;
        min-width: 60px;
    }

    .gabros-timeline-dot {
        margin-bottom: 5px;
    }

    .gabros-timeline-info {
        display: none;
        flex: 1;
    }

    .gabros-timeline-info.active {
        display: block;
    }

    .gabros-timeline-line {
        left: 30px;
        top: 0;
        bottom: 0;
        height: auto;
        width: 2px;
    }
}

/* gabsos facts */
.fact-card {
    transition: all 0.3s ease;
}

.fact-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}


/* .leaders-card */
.leaders-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s;
    min-width: 250px;
    flex-shrink: 0;
}

.leaders-card:hover {
    transform: translateY(-6px);
}

.leaders-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

@media (max-width: 576px) {
    .leaders-card img {
        height: 200px;
    }

    .leaders-card {
        min-width: 200px;
    }
}

#scrollContainer {
    scroll-behavior: smooth;
    gap: 1rem;
    padding-bottom: 1rem;
}

/* Achievement card */

.achievement-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.08);
    padding: 20px;
    width: 250px;
    height: 250px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.achievement-card:hover {
    transform: translateY(-5px);
}

.achievement-icon {
    font-size: 30px;
    color: #6b92de;
    margin-bottom: 10px;
}

#achievementScroll {
    scroll-behavior: smooth;
    gap: 1rem;
    padding-bottom: 1rem;
}

@media (max-width: 576px) {
    .achievement-card {
        width: 250px;
        height: 250px;
    }
}

.achievement-card h6 {
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 8px;
}

.achievement-card p {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 0;
}

.bank-gst-section-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1d3557;
  padding-left: 15px;
  border-left: 5px solid #1d3557;
  margin-bottom: 2rem;
}

.bank-gst-card {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 25px 30px;
  height: 100%;
}

.bank-gst-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.bank-gst-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #1d3557;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.bank-gst-icon {
  font-size: 1.4rem;
  color: #457b9d;
}

.bank-gst-text {
  font-size: 1rem;
  margin-bottom: 10px;
}

.bank-gst-highlight {
  font-weight: 600;
  color: #000;
}

.leadership-card {
    transition: all 0.3s ease;
    border: none;
    overflow: hidden;
    position: relative;
    z-index: 1;
  }

.leadership-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
z-index: 2;
}

.leadership-card img {
border: 4px solid #010926;
transition: transform 0.3s ease;
}

.leadership-card:hover img {
transform: scale(1.1);
}

.leadership-card::after {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(135deg, rgba(29, 53, 87, 0.05), rgba(29, 53, 87, 0.1));
opacity: 0;
transition: opacity 0.3s ease;
z-index: 0;
}

.leadership-card:hover::after {
opacity: 1;
}

/*About page CSS End*/



/*Business Enquiry Page CSS*/


.balance-enquery .breadcrumb {
  background: none;
  padding: 20px 0 0 20px;
}

.balance-enquery .enquiry-banner img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.balance-enquery .enquiry-form {
  padding: 40px 20px;
}

.balance-enquery .form-control,
.balance-enquery .form-select {
  border-radius: 8px;
  padding: 10px 15px;
}

.balance-enquery .submit-btn {
  background-color: #ddd;
  color: #666;
  cursor: not-allowed;
  border-radius: 8px;
  padding: 10px 30px;
}


/*Business Enquiry Page CSS End*/



/*Career Page CSS*/


/* Container background and padding */
.career-life-container {
    background: #f9fbff;
    border-radius: 12px;
    padding: 30px 40px;
    box-shadow: 0 8px 25px rgb(13 110 253 / 0.15);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Heading style */
.career-life-container h2 {
    font-weight: 900;
    font-size: 2.8rem;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.testimonial-img {
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
}
.carousel-indicators [data-bs-target] {
  background-color: #000;
  width: 10px;
  height: 10px;
  border-radius: 100%;
}

/* Paragraph next to heading */
.career-life-container>.row>.col-md-6 p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.5;
    padding-left: 15px;
}

/* Tabs container */
#career-luminousTab {
    border-bottom: 2px solid #0d6efd;
}

/* Tab buttons */
#career-luminousTab .nav-link {
    color: #0d6efd;
    font-weight: 600;
    border: none;
    border-radius: 10px 10px 0 0;
    padding: 10px 25px;
    margin-right: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Hover effect for tabs */
#career-luminousTab .nav-link:hover:not(.active) {
    background-color: #e3eefd;
    color: #0843b6;
}

/* Active tab */
#career-luminousTab .nav-link.active {
    background-color: #0d6efd;
    color: #fff !important;
    box-shadow: 0 4px 15px rgb(13 110 253 / 0.3);
    border-radius: 10px 10px 0 0;
    border: none;
}

/* Tab content area styling */
.career-tab-content {
    background-color: #fff;
    border-radius: 0 12px 12px 12px;
    padding: 30px 35px;
    box-shadow: 0 8px 25px rgb(0 0 0 / 0.05);
    min-height: 220px;
    color: #444;
    font-size: 1.1rem;
}

/* Apply Now button */
.career-btn-primary {
    background-color: #0d6efd;
    border: none;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 30px;
    box-shadow: 0 6px 15px rgb(13 110 253 / 0.4);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    color: #fff;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

.career-btn-primary:hover,
.career-btn-primary:focus {
    background-color: #0843b6;
    box-shadow: 0 8px 20px rgb(8 67 182 / 0.6);
    outline: none;
    color: #fff;
}

/* Video responsive ratio styling */
.career-ratio iframe {
    border-radius: 12px;
    box-shadow: 0 5px 15px rgb(13 110 253 / 0.25);
    width: 600px;
    height: 300px;
}

/* List in benefits tab */
#career-benefits ul {
    list-style: inside disc;
    color: #0d6efd;
    font-weight: 600;
    padding-left: 0;
}

/* Responsive adjustments */

/* Medium devices and smaller (up to 767.98px) */
@media (max-width: 767.98px) {

    /* Remove left padding and add margin on paragraphs */
    .career-life-container>.row>.col-md-6 p {
        padding-left: 0;
        margin-top: 12px;
    }

    /* Make Apply button full width */
    .career-btn-primary {
        width: 100%;
        text-align: center;
        margin-top: 15px;
    }

    /* Add margin below tabs */
    #career-luminousTab {
        margin-bottom: 15px;
        flex-wrap: wrap;
        gap: 8px;
        display: flex;
    }

    /* Tabs become smaller and take full width if wrapped */
    #career-luminousTab .nav-link {
        flex: 1 1 auto;
        margin-right: 0;
        padding: 8px 12px;
        font-size: 0.95rem;
        text-align: center;
    }

    /* Make iframe width 100% and height auto */
    .career-ratio iframe {
        width: 100% !important;
        height: auto !important;
        min-height: 220px;
    }

    /* Stack heading and paragraph vertically */
    .career-life-container>.row {
        flex-direction: column;
    }

    .career-life-container>.row>.col-md-6 {
        max-width: 100%;
        flex: 1 1 100%;
    }
}

/* Extra small devices (up to 575.98px) */
@media (max-width: 575.98px) {

    /* Smaller heading font size */
    .career-life-container h2 {
        font-size: 2rem;
        text-align: center;
    }

    /* Paragraph font size and center text */
    .career-life-container>.row>.col-md-6 p {
        font-size: 1rem;
        text-align: center;
    }
}

.bi {
    transition: transform 0.3s ease;
}

.bi:hover {
    transform: scale(1.1);
}

/* Container background and padding */
.career-life-container {
    background: #f9fbff;
    border-radius: 12px;
    padding: 30px 40px;
    box-shadow: 0 8px 25px rgb(13 110 253 / 0.15);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Heading style */
.career-life-container h2 {
    font-weight: 900;
    font-size: 2.8rem;
    letter-spacing: 1px;
    margin-bottom: 0;
}

/* Paragraph next to heading */
.career-life-container>.row>.col-md-6 p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.5;
    padding-left: 15px;
}

/* Tabs container */
#career-luminousTab {
    border-bottom: 2px solid #0d6efd;
}

/* Tab buttons */
#career-luminousTab .nav-link {
    color: #0d6efd;
    font-weight: 600;
    border: none;
    border-radius: 10px 10px 0 0;
    padding: 10px 25px;
    margin-right: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Hover effect for tabs */
#career-luminousTab .nav-link:hover:not(.active) {
    background-color: #e3eefd;
    color: #0843b6;
}

/* Active tab */
#career-luminousTab .nav-link.active {
    background-color: #0d6efd;
    color: #fff !important;
    box-shadow: 0 4px 15px rgb(13 110 253 / 0.3);
    border-radius: 10px 10px 0 0;
    border: none;
}

/* Tab content area styling */
.career-tab-content {
    background-color: #fff;
    border-radius: 0 12px 12px 12px;
    padding: 30px 35px;
    box-shadow: 0 8px 25px rgb(0 0 0 / 0.05);
    min-height: 220px;
    color: #444;
    font-size: 1.1rem;
}

/* Apply Now button */
.career-btn-primary {
    background-color: #0d6efd;
    border: none;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 30px;
    box-shadow: 0 6px 15px rgb(13 110 253 / 0.4);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    color: #fff;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

.career-btn-primary:hover,
.career-btn-primary:focus {
    background-color: #0843b6;
    box-shadow: 0 8px 20px rgb(8 67 182 / 0.6);
    outline: none;
    color: #fff;
}

/* Video responsive ratio styling */
.career-ratio iframe {
    border-radius: 12px;
    box-shadow: 0 5px 15px rgb(13 110 253 / 0.25);
    width: 600px;
    height: 300px;
}

/* List in benefits tab */
#career-benefits ul {
    list-style: inside disc;
    color: #0d6efd;
    font-weight: 600;
    padding-left: 0;
}

/* Responsive adjustments */

/* Medium devices and smaller (up to 767.98px) */
@media (max-width: 767.98px) {

    /* Remove left padding and add margin on paragraphs */
    .career-life-container>.row>.col-md-6 p {
        padding-left: 0;
        margin-top: 12px;
    }

    /* Make Apply button full width */
    .career-btn-primary {
        width: 100%;
        text-align: center;
        margin-top: 15px;
    }

    /* Add margin below tabs */
    #career-luminousTab {
        margin-bottom: 15px;
        flex-wrap: wrap;
        gap: 8px;
        display: flex;
    }

    /* Tabs become smaller and take full width if wrapped */
    #career-luminousTab .nav-link {
        flex: 1 1 auto;
        margin-right: 0;
        padding: 8px 12px;
        font-size: 0.95rem;
        text-align: center;
    }

    /* Make iframe width 100% and height auto */
    .career-ratio iframe {
        width: 100% !important;
        height: auto !important;
        min-height: 220px;
    }

    /* Stack heading and paragraph vertically */
    .career-life-container>.row {
        flex-direction: column;
    }

    .career-life-container>.row>.col-md-6 {
        max-width: 100%;
        flex: 1 1 100%;
    }
}

/* Extra small devices (up to 575.98px) */
@media (max-width: 575.98px) {

    /* Smaller heading font size */
    .career-life-container h2 {
        font-size: 2rem;
        text-align: center;
    }

    /* Paragraph font size and center text */
    .career-life-container>.row>.col-md-6 p {
        font-size: 1rem;
        text-align: center;
    }
}


/*Career Page CSS End*/



/*Complaint Page CSS */

.complaint-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-top: 40px;
    margin-bottom: 40px;
}

.complaint-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.complaint-section-title {
    font-size: 16px;
    font-weight: 600;
    color: #1d3557;
    margin: 25px 0 15px;
}

.complaint-label {
    font-weight: 500;
    margin-bottom: 5px;
}

.complaint-upload-btn {
    background-color: #1d3557;
    color: #fff;
    border: none;
    padding: 6px 16px;
    font-size: 14px;
    border-radius: 5px;
}

.complaint-upload-btn:hover {
    background-color: #16324f;
}

.complaint-btn-submit {
    width: 100%;
    background-color: #adb5bd;
    color: white;
    border: none;
    padding: 10px;
    font-size: 16px;
    border-radius: 8px;
    margin-top: 20px;
}

.complaint-form-select,
.complaint-form-input,
.complaint-form-textarea {
    border-radius: 6px;
}

/*Complaint Page CSS End*/


/*catalogue Page CSS*/

.catalogue-section select,
    .catalogue-section input {
        border-radius: 8px;
}

.catalogue-section .card {
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.catalogue-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.btn-reset {
    background: none;
    border: none;
    color: #a0a0a0;
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
}
/*catalogue Page CSS End*/


/*Installation Page CSS*/

.installation-container {
    padding: 30px 15px;
    background-color: #f8f9fa;
    border-radius: 12px;
}

.installation-title {
    font-size: 2rem;
    font-weight: bold;
    color: #1d3557;
}

.installation-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 30px;
    color: #343a40;
}

.installation-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #495057;
}

.installation-video-wrapper {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.installation-btn {
    background-color: #1d3557;
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.installation-btn:hover {
    background-color: #16324e;
}
/*Installation Page CSS End*/



/*Service care Page CSS*/

.amc-container {
    max-width: 1140px;
    margin: 40px auto;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.amc-title {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #1d3557;
}

.amc-subtitle {
    font-size: 30px;
    font-weight: 600;
    margin: 40px 0 20px;
    font-weight: 700;
}

.amc-form .form-control,
.amc-form .form-select {
    border-radius: 8px;
}

.amc-form .form-label {
    font-weight: 500;
}

.amc-btn {
    background-color: #1d3557;
    color: #fff;
    border-radius: 8px;
    padding: 10px 30px;
}

.amc-btn:hover {
    background-color: #16324f;
}
/*Service care Page CSS End*/


/*Track Order Page CSS*/

.track-container {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}
.track-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1d3557;
  margin-bottom: 30px;
}
.track-form-label {
  font-weight: 500;
  margin-bottom: 6px;
  color: #333;
}
.track-form-control {
  border-radius: 8px;
  padding: 10px 15px;
  border: 1px solid #ced4da;
  transition: all 0.2s ease-in-out;
}
.track-form-control:focus {
  border-color: #1d3557;
  box-shadow: 0 0 0 0.2rem rgba(29, 53, 87, 0.15);
}
.track-btn-submit {
  background-color: #1d3557;
  color: #fff;
  font-weight: 600;
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  transition: background-color 0.3s ease-in-out;
}
.track-btn-submit:hover {
  background-color: #16324f;
}
.track-breadcrumb {
  font-size: 0.9rem;
  margin-bottom: 20px;
}
.track-error {
  color: #dc3545;
  font-size: 0.875rem;
  display: none;
}
/*track order Page CSS End*/


/*Warranty Page CSS*/

.warranty-container {
    max-width: 920px;
    margin: 40px auto;
    background: #fff;
    padding: 35px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.warranty-title {
    font-size: 24px;
    font-weight: 700;
    color: #1d3557;
    margin-bottom: 20px;
}

.warranty-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: #1d3557;
    margin-top: 30px;
}

.warranty-text {
    font-size: 15px;
    color: #333;
}

.warranty-input,
.warranty-select {
    border-radius: 6px;
    font-size: 14px;
    padding: 10px;
}

.warranty-btn-upload {
    background-color: #1d3557;
    color: #fff;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 6px;
    border: none;
}

.warranty-btn-upload:hover {
    background-color: #16324f;
}

.warranty-note {
    font-size: 12px;
    color: #6c757d;
    margin-top: 5px;
}

.warranty-submit-btn {
    background-color: #1d3557;
    color: #fff;
    padding: 10px 24px;
    font-weight: 500;
    border-radius: 6px;
    margin-top: 25px;
}

/*Warranty Page CSS End*/


/*Contact Page CSS*/

.contact-heading {
    font-weight: 700;
    margin-bottom: 40px;
    font-size: 2.2rem;
    color: #003366;
}

.contact-section-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #003366;
}

.contact-subtitle {
    color: #6c757d;
}

.contact-card {
    background: #ffffff;
    border: 1px solid #e3e6f0;
    border-radius: 12px;
    padding: 25px 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}

.contact-icon {
    font-size: 22px;
    color: #003366;
    margin-right: 12px;
}

.contact-label {
    font-weight: 600;
    font-size: 0.95rem;
    color: #003366;
}

.contact-email,
.contact-phone {
    font-weight: 600;
    color: #212529;
    margin-bottom: 10px;
}

.contact-link {
    color: #003366;
    font-weight: 500;
    text-decoration: none;
    font-size: 0.95rem;
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-container {
    background-color: #eef2f7;
    padding: 60px 20px;
}

.contact-info-box {
    margin-bottom: 30px;
}

.fa-icon {
    width: 26px;
    text-align: center;
}
/*Contact Page CSS End*/


/*Global Presence Page CSS */

.global-about-section {
    font-family: 'Segoe UI', sans-serif;
    color: #1a1a1a;
    background-color: #fff;
}

.global-about-text {
    font-size: 18px;
    line-height: 1.6;
}

.global-about-text a {
    color: #0033cc;
    text-decoration: none;
}

.global-about-text a:hover {
    text-decoration: underline;
}

.global-stats-card {
    background-color: #e3e3eb;
    width: 250px;
    height: 150px;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease-in-out;
    margin: 0 auto;
}

.global-stats-card:hover {
    transform: translateY(-5px);
}

.global-stats-card h3 {
    color: #003399;
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 5px;
}

.global-stats-card p {
    margin: 0;
    font-size: 28px;
    color: #222;
}

@media (max-width: 768px) {
    .global-about-text {
        font-size: 16px;
    }

    .global-stats-card {
        width: 100%;
        height: auto;
    }

    .global-stats-card h3 {
        font-size: 26px;
    }

    .global-stats-card p {
        font-size: 16px;
    }
}

.global-enquiry-section {
    padding: 60px 0;
}

.global-enquiry-title {
    font-size: 36px;
    font-weight: 700;
    color: #010926;
}

.global-enquiry-subtitle {
    font-size: 18px;
    color: #101C3D;
    max-width: 500px;
}

.global-form-control {
    border-radius: 6px;
    border: 1px solid #ccc;
    padding: 14px;
    font-size: 16px;
}

.global-form-control:focus {
    box-shadow: none;
    border-color: #000;
}

.global-submit-btn {
    background-color: #f1f1f1;
    color: #666;
    font-weight: 600;
    font-size: 16px;
    padding: 12px 24px;
    border-radius: 6px;
    border: none;
    cursor: not-allowed;
}

@media (max-width: 767px) {
    .global-enquiry-title {
        font-size: 28px;
    }

    .global-enquiry-subtitle {
        font-size: 16px;
    }
}

.global-banner-img {
height: 470px;       
object-fit: cover;    
display: block;      
}

@media (max-width: 767.98px) {
.global-banner-img {
  height: auto;     
  max-height: 200px;   
  object-fit: cover;   
}
}
/*global Presence CSS End*/


/*Support Page CSS*/

.support-section {
  padding: 60px 0;
}

.support-heading {
  font-size: 32px;
  font-weight: 700;
  color: #010926;
}

.support-subtitle {
  font-size: 16px;
  color: #101c3d;
  max-width: 480px;
}

.support-box {
  border-bottom: 1px solid #eee;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.support-box i {
  font-size: 26px;
  color: #002c9b;
  margin-right: 16px;
}

.support-box-text {
  display: flex;
  align-items: center;
  font-weight: 600;
  color: #000;
  font-size: 16px;
}

.support-arrow {
  font-size: 18px;
  color: #333;
}

@media (max-width: 767px) {
  .support-box {
    flex-direction: row;
    align-items: flex-start;
  }
}

.faq-section {
background: #f9f9f9;
border-radius: 12px;
padding: 60px 20px;
}

.faq-section h1 {
font-size: 2.5rem;
font-weight: 700;
color: #1d3557;
}

.faq-section .nav-tabs .nav-link {
border: none;
font-weight: 600;
color: #1d3557;
background: transparent;
border-radius: 0;
transition: all 0.3s ease;
}

.faq-section .nav-tabs .nav-link.active {
color: #fff;
background-color: #1d3557;
border-radius: 10px 10px 0 0;
}

.accordion-item {
border-radius: 8px;
overflow: hidden;
margin-bottom: 10px;
border: 1px solid #ddd;
box-shadow: 0 3px 6px rgba(0,0,0,0.05);
transition: 0.3s ease-in-out;
}

.accordion-button {
background-color: #fff;
font-weight: 600;
color: #1d3557;
transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
background-color: #1d3557;
color: #fff;
}

.accordion-button i {
transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed) i {
transform: rotate(45deg);
}

.accordion-body {
background-color: #fdfdfd;
font-size: 15px;
color: #333;
}

.faq-section img {
border: 8px solid #fff;
box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
/*Support Page CSS End*/


/*login Signup Page CSS*/
.user-login {
    display: flex;
    height: 100vh;
}
   .form-box button#loginBtn {
margin-bottom: 0;
}

.form-box .bottom-links {
margin-bottom: 0;
margin-top: 10px; /* Optional: maintain a small gap from the button */
}
.user-login .left-panel {
    flex: 1;
    background: linear-gradient(to bottom right, rgba(0, 0, 50, 0.8), rgba(0, 0, 80, 0.9)),
        url('https://images.unsplash.com/photo-1549921296-3a6bfa0bd871') no-repeat center center/cover;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
}

.user-login .left-panel h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #FFD700;
    letter-spacing: 1px;
}

.user-login .left-panel p {
    font-size: 20px;
    line-height: 1.6;
    color: #eee;
}

.user-login .right-panel {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background-color: #f9f9f9;
}

.form-box {
    max-width: 420px;
    width: 100%;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.user-login h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #222;
}

.user-login input[type="email"],
.user-login input[type="password"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.user-login input:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

.user-login label {
    font-size: 14px;
}

.user-login .checkbox {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 14px;
}

.user-login .checkbox input {
    margin-right: 8px;
    margin-top: 3px;
}

.user-login button {
    width: 100%;
    padding: 12px;
    background-color: #FFD700;
    color: #000;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.user-login button:hover:not(:disabled) {
    background-color: #e6c200;
}

.user-login button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.user-login .bottom-links {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    font-size: 14px;
}

.user-login .bottom-links a {
    color: #1a73e8;
    text-decoration: none;
}

.user-login .google-btn {
    margin-top: 20px;
    width: 100%;
    padding: 12px;
    background: #fff;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.user-login .google-btn:hover {
    box-shadow: 0 0 10px rgba(66, 133, 244, 0.3);
}

.user-login .signup-link {
    margin-top: 30px;
    text-align: center;
    font-size: 14px;
}

.user-login .signup-link a {
    color: #1a73e8;
    text-decoration: none;
    font-weight: 600;
}

@media (max-width: 768px) {
    .user-login {
        flex-direction: column;
    }

    .user-login .left-panel,
    .user-login .right-panel {
        flex: none;
        width: 100%;
        height: auto;
    }

    .form-box {
        margin-top: 30px;
    }
}
        
/*signup css*/
.user-signup {
    display: flex;
    height: 100vh;
}

.user-signup .left-panel {
    flex: 1;
    background: linear-gradient(to bottom right, rgba(0, 0, 50, 0.8), rgba(0, 0, 80, 0.9)),
        url('https://images.unsplash.com/photo-1549921296-3a6bfa0bd871') no-repeat center center/cover;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
}

.user-signup .left-panel h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #FFD700;
    letter-spacing: 1px;
}

.user-signup .left-panel p {
    font-size: 20px;
    line-height: 1.6;
    color: #eee;
}

.user-signup .right-panel {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background-color: #f9f9f9;
}

.form-box {
    max-width: 460px;
    width: 100%;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.user-signup h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #222;
}

.user-signup input[type="text"],
.user-signup input[type="email"],
.user-signup input[type="password"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 18px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.user-signup input:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

.user-signup .checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.user-signup .checkbox input[type="checkbox"] {
    margin: 4px 0 0;
    transform: scale(1.2);
    accent-color: #007bff;
    cursor: pointer;
}

.user-signup .checkbox label {
    margin: 0;
    flex: 1;
    cursor: pointer;
}

.user-signup .checkbox label a {
    color: #1a0dab;
    text-decoration: underline;
    font-weight: 500;
}

.user-signup button {
    width: 100%;
    padding: 14px;
    background-color: #FFD700;
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
}

.user-signup button:hover:not(:disabled) {
    background-color: #e6c200;
}

.user-signup button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.user-signup .google-btn {
    margin-top: 20px;
    width: 100%;
    padding: 12px;
    background: #fff;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.user-signup .google-btn:hover {
    box-shadow: 0 0 10px rgba(66, 133, 244, 0.3);
}

.user-signup .login-link {
    margin-top: 25px;
    text-align: center;
    font-size: 14px;
}

.user-signup .login-link a {
    color: #1a73e8;
    text-decoration: none;
    font-weight: 600;
}

@media (max-width: 768px) {
    .user-signup {
        flex-direction: column;
    }

    .user-signup .left-panel,
    .user-signup .right-panel {
        flex: none;
        width: 100%;
        height: auto;
    }

    .form-box {
        margin-top: 30px;
    }
}


/*login signup Page CSS End*/
