* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root{
            --primary-color: #0A1D4A;
            --background-color:#E8F1FF;
            --btn-color:#D4AF37;
            --text-color:#1A1A1A;
            --links-color:#D4AF37;
            --header-color:#97b0d7;
        }

        body {
            font-family:sans-serif;
        }
        
        html,body{
            overflow-x:hidden;
        }
        
        html {
  scroll-behavior: smooth; /* optional, just for nice smooth scroll */
}

#service-content {
  scroll-margin-top: 10px;  /* adjust this to your header+topbar height */
}


        /* Top Bar */
        .top-bar {
            background-color: var(--primary-color);
            color: white;
            padding: 8px 0;
            font-size: 13px;
        }
        
        @media (max-width:768px){
            .top-bar {
              padding: 28px 0;
            }
        }

        .top-bar-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .social-section {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .social-section span {
            margin-right: 5px;
        }

        .social-icons {
            display: flex;
            gap: 8px;
        }

        .social-icons a {
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #3b5998;
            border-radius: 3px;
            text-decoration: none;
            color: white;
            font-size: 14px;
        }
        
        .social-icons img{
            width: 28px;
            height: 28px;
        }

        .social-icons a:nth-child(2) {
            background-color: #1da1f2;
        }

        .social-icons a:nth-child(3) {
            background-color: #e4405f;
        }
        
       

        .address-section {
            display: flex;
            align-items: center;
            gap: 8px;
            color:white;
        }

        .location-icon {
            /*color: #ff6b35;*/
            color:ffd700 ;
            font-size: 16px;
        }

        /* Header Main */
        .header-main {
            /*background-color: white;*/
            /*background: linear-gradient(to right, #1A1A1A, #4A4A4A);*/
            background-color: #152030;
            padding: 20px 0;
            border-bottom: 1px solid #e0e0e0;
        }

        .header-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .contact-info {
            display: flex;
            gap: 60px;
        }

        .phone-section, .email-section {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .icon-box {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 5px;
            color: var(--links-color);
            font-size: 24px;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 3px;
            line-height:1.5 !important;
        }
        
         .contact-details-header a {
             display: flex;
            flex-direction: column;
            gap: 3px;
              color: var(--btn-color);
               text-decoration: none;
            font-size: 14px;
            white-space: nowrap
         }
          .contact-details-header a:hover {
            color: white;
        }

        .contact-details a {
            color: var(--links-color);
            text-decoration: none;
            font-size: 14px;
            white-space: nowrap;
        }

        .contact-details a:hover {
            color: var(--links-color);
        }

        /* Navigation */
        .navigation {
            margin-top: -1px;
            background-color: #2d4a9e;
            background-color: var(--primary-color) ;
            display: flex;
            position:relative;
        }
   
   .elct-features li{
       font-weight:;
   }


.navigation.fixed {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* placeholder (hidden by default) */
.nav-placeholder {
  display: none;
  height: 0;
}

/* shown when nav becomes fixed — height will be set by JS */
.nav-placeholder.active {
  display: block;
  height: var(--nav-height, 70px);
}


        .nav-content {
            max-width: 1400px;
            width: 100%;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
          
        }

        .nav-menu {
            display: flex;
            justify-content:center;
            list-style: none;
            flex: 1;
        }

        .nav-menu li {
            position: relative;
        }

        .nav-menu a {
            display: block;
            padding: 18px 25px;
            color: var(--links-color);
            text-decoration: none;
            font-size: 15px;
            font-weight: 600;
            transition: background-color 0.3s;
        }

        .nav-menu a:hover {
            background-color: black;
        }

        .nav-menu .dropdown::after {
            content: '▼';
            font-size: 10px;
            margin-left: 5px;
        }
        .readmore-btn{
             /*background-color: #ffaa00;*/
            border: none;
            color: black ;
            /*padding: 10px;*/
            font-size: 15px;
            font-weight: 600;
            text-decoration:none;
            cursor: pointer;
            transition: background-color 0.3s;
            letter-spacing: 0.5px;
        }
        

        .enquiry-btn {
            background-color: #f4e4a5;
            border: none;
            color: black;
            padding: 18px 35px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
            letter-spacing: 0.5px;
        }

        .enquiry-btn:hover {
            background-color:  #f5c08d;
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            /*padding: 18px 20px;*/
            gap: 5px;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: white;
            transition: all 0.3s;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: var(--primary-color);
            z-index: 1000;
        }

        .mobile-menu.active {
            display: block;
        }

        .mobile-menu ul {
            list-style: none;
        }

        .mobile-menu a {
            display: block;
            padding: 15px 20px;
            color: #FDDC52;
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .mobile-menu a:hover {
            background-color: #000;
        }

        @media (min-width: 1033px) and (max-width: 1233px) {
            .enquiry-btn {
                display: none;
            }
        }

        @media (max-width: 1033px) {
            /* Hide address in top bar */
            .address-section {
                display: none;
            }

            /* Hide desktop nav menu */
            .nav-menu {
                display: none;
            }

            /* Show hamburger */
            .hamburger {
                display: flex;
                margin-left: auto;
            }
        }

        @media (max-width: 768px) {
            .top-bar-content {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }

            .header-content {
                flex-direction: column;
                gap: 25px;
            }

            .contact-info {
                flex-direction: column;
                gap: 0px;
            }
        }
/*dropdown*/

/* Dropdown */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--primary-color) ;
    list-style: none;
    min-width: 220px;
    z-index: 1000;
    border-radius: 0 0 5px 5px;
    overflow: hidden;
}

.dropdown-menu li a {
    padding: 12px 20px;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background: black;
}

/* Show dropdown on hover (desktop) */
@media (min-width: 1033px) {
    .has-dropdown:hover .dropdown-menu {
        display: block;
    }
}

/*mobile dropdown */
/* Mobile submenu styles */
@media (max-width: 1033px) {
  .mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    /*background-color: #;*/
    z-index: 1000;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
  }

  /* when active: allow height to expand */
  .mobile-menu.active {
    max-height: 1000px; /* large enough to show content; limits collapse animation */
  }

  .mobile-menu ul { padding: 0; margin: 0; list-style: none; }

  .mobile-menu a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    color: #FDDC52;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  /* caret indicator */
  .mobile-caret {
    font-size: 28px;
    margin-left: 10px;
    transition: transform 0.22s ease;
  }

  /* mobile submenu (hidden by default) */
  .mobile-submenu {
    display: block;
    max-height: 0;
    overflow: hidden;
    background: #152030;
    transition: max-height 0.28s ease, padding 0.22s ease;
  }

  .mobile-submenu li a {
    padding-left: 36px;
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }

  /* when parent has .open -> show submenu */
  .has-dropdown-mobile.open > .mobile-submenu {
    max-height: 1000px; /* large enough for children */
    padding-bottom: 8px;
  }

  /* rotate caret when open */
  .has-dropdown-mobile.open > a .mobile-caret {
    transform: rotate(90deg);
  }
}


/*slider*/

.slider-container {
            position: relative;
            width: 100%;
            height: 600px;
            overflow: hidden;
        }

        .slider-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .slide.active {
            opacity: 1;
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .social-section{
           visibility:hidden;
        }
        @media (max-width:768px){
            .social-section{
                display:none;
            }
        }

        .slide-title {
            padding: 20px;
            background: rgb(72 140 221 / 76%);
            position: absolute;
            top: 50%;
            left: 25%;
            transform: translate(-50%, -50%);
            color: #ffffff;
            font-size: 30px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 3px;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
            opacity: 0;
            z-index: 10;
        }
        .slide.active .slide-title {
            animation: slideInLeft 1s ease-out forwards;
        }

        @keyframes slideInLeft {
            0% {
                opacity: 0;
                transform: translate(-100px, -50%);
            }
            100% {
                opacity: 1;
                transform: translate(-50%, -50%);
            }
        }

        /* Navigation Arrows */
        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(255, 170, 0, 0.7);
            color: white;
            border: none;
            padding: 15px 20px;
            font-size: 24px;
            cursor: pointer;
            z-index: 20;
            transition: background-color 0.3s;
        }

        .slider-nav:hover {
            background-color: rgba(255, 170, 0, 1);
        }

        .prev {
            left: 20px;
        }

        .next {
            right: 20px;
        }

        /* Dots Navigation */
        .slider-dots {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 20;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .dot.active {
            background-color: #ffaa00;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .slider-container {
                height: 350px;
            }

            .slide-title {
                font-size: 18px;
                letter-spacing: 2px;
                left: 50%;
            }

            .slider-nav {
                padding: 10px 15px;
                font-size: 18px;
            }

            .prev {
                left: 10px;
            }

            .next {
                right: 10px;
            }

            .slider-dots {
                bottom: 10px;
            }

            .dot {
                width: 8px;
                height: 8px;
            }
        }

/*mission vision*/

.vmv-section {
            padding: 60px 20px;
            background-color: #f5f5f5;
        }

        .vmv-container {
            max-width: 1200px;
            /*height: 160px;*/
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .vmv-card {
            background-color: #0f2965;
            border-radius: 15px;
            padding: 20px 20px;
            text-align: justify;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid #e0e0e0;
            display: flex;
            flex-direction: column;
            /*justify-content: center;*/
            align-items: center;
            height: 100%;
        }

        .vmv-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .icon-wrapper {
            width: 50px;
            height: 50px;
            margin: 0 auto 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .icon-wrapper i {
            font-size: 35px;
            color: #2d4a9e;
        }

        .vmv-title {
             color: white;
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .vmv-description {
            color: white;
            font-size: 14px;
            line-height: 1.7;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .vmv-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
                height: auto;
            }
        }

        @media (max-width: 768px) {
            .vmv-section {
                padding: 40px 15px;
            }

            .vmv-container {
                grid-template-columns: 1fr;
                gap: 20px;
                height: auto;
            }

            .vmv-card {
                padding: 30px 20px;
            }

            .vmv-title {
                font-size: 24px;
            }

            .vmv-description {
                font-size: 15px;
            }

            .icon-wrapper {
                width: 70px;
                height: 70px;
            }

            .icon-wrapper i {
                font-size: 40px;
            }
        }
        
/*card carousel*/
.services-section {
            /*background: linear-gradient(135deg, #1a2850 0%, #2d4a9e 100%);*/
            background: #acc7f1;
            padding: 60px 20px;
            position: relative;
            overflow: hidden;
        }

        /* Diagonal pattern background */
        .services-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            /*background-image: */
            /*    repeating-linear-gradient(*/
            /*        45deg,*/
            /*        transparent,*/
            /*        transparent 10px,*/
            /*        rgba(0, 0, 0, 0.1) 10px,*/
            /*        rgba(0, 0, 0, 0.1) 20px*/
            /*    );*/
            pointer-events: none;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
            z-index: 1;
        }

        .section-title {
            color: var(--primary-color);
            font-size: 28px;
            font-weight: bold;
            margin-bottom: 10px;
            text-transform: capitalize;
            letter-spacing: 2px;
        }

        .section-subtitle {
            color: var(--primary-color);
            font-size: 18px;
            font-weight: 600;
            text-transform: capitalize;
            letter-spacing: 1px;
        }

        .services-slider-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            overflow: hidden;
        }

        .slider-wrapper {
            overflow: visible;
            position: relative;
        }

        .slider-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .service-card {
            width: 370px;
            height: 630px;
            background-color: white;
            border: 2px solid rgba(255, 170, 0, 0.3);
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            margin-right: 30px;
        }

        .card-image {
            width: 370px;
            height: 250px;
            /*overflow: hidden;*/
        }

        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .service-card:hover .card-image img {
            transform: scale(1.1);
        }

        /*.card-content {*/
        /*    padding: 30px 25px;*/
        /*    flex: 1;*/
        /*    display: flex;*/
        /*    flex-direction: column;*/
        /*}*/
        
        .card-content {
            padding: 10px 25px;
            flex: 1;
            display: flex;
            flex-direction: column;
            /* optional: keeps cards visually even on large screens */
            min-height: 260px; /* tweak as needed (desktop) */
        }
        
        .card-content p{
            color:var(--text-color);
            font-weight:bold;
        }

        .card-title {
            color: black;
            font-size: 22px;
            font-weight: bold;
            margin-bottom: 10px;
            min-height: 56px;
            display: flex;
            align-items: center;
            font-family: math;
        }

        .card-list {
            list-style: none;
            flex: 1;
        }

        .card-list li {
            color: var(--text-color);
            font-size: 14px;
            line-height: 1.4;
            margin-bottom: 12px;
            padding-left: 25px;
            position: relative;
        }

        .card-list li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 7px;
            width: 7px;
            height: 7px;
            background: #ffaa00;
            border-radius: 50%;
        }


        /*.read-more-btn {*/
        /*    background-color: #ffaa00;*/
        /*    color: #1a2850;*/
        /*    border: none;*/
        /*    padding: 15px 30px;*/
        /*    font-size: 15px;*/
        /*    font-weight: bold;*/
        /*    cursor: pointer;*/
        /*    display: flex;*/
        /*    align-items: center;*/
        /*    justify-content: space-between;*/
        /*    transition: background-color 0.3s;*/
        /*    margin-top: 20px;*/
        /*}*/
        
        .read-more-btn {
            /*background-color: #ffaa00;*/
            background-color: var(--btn-color);
            color: var(--text-color);
            border: none;
            padding: 15px 30px;
            font-size: 15px;
            font-weight: bold;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: background-color 0.3s;
            /* Replace fixed top margin with auto so it pushes to bottom */
            margin-top: auto;
            text-decoration:none;
        }

        .read-more-btn:hover {
            background-color: var(--primary-color);
            color:#ebdb9d;
        }

        .read-more-btn i {
            margin-left: 10px;
            font-size: 16px;
        }

        /* Navigation Arrows */
        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(255, 170, 0, 0.8);
            color: white;
            border: none;
            width: 45px;
            height: 45px;
            font-size: 20px;
            cursor: pointer;
            z-index: 10;
            transition: background-color 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slider-nav:hover {
            background-color: #ffaa00;
        }

        .prev {
            left: -60px;
        }

        .next {
            right: -60px;
        }

        /* Dots Navigation */
        .slider-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 40px;
        }

        .dot {
            width: 40px;
            height: 4px;
            background-color: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .dot.active {
            background-color: #ffaa00;
        }

        /* Responsive Design */
        @media (max-width: 1300px) {
            .prev {
                left: 10px;
            }

            .next {
                right: 10px;
            }
        }

        @media (max-width: 1024px) {
            .services-slider-container {
                max-width: 100%;
                padding: 0 20px;
            }

            .service-card {
                width: calc(50% - 15px);
                height: auto;
                margin-right: 30px;
            }

            .card-image {
                width: 100%;
                height: 230px;
            }
            
            .card-content {
                padding: 25px 20px;
            }
            
            .card-title {
                font-size: 20px;
                min-height: 50px;
            }
        }

        @media (max-width: 768px) {
            .services-section {
                padding: 40px 0;
            }

            .section-title {
                font-size: 28px;
            }

            .section-subtitle {
                font-size: 15px;
            }

            .services-slider-container {
                padding: 0 20px;
                margin: 0 auto;
            }
            
            .slider-wrapper {
                overflow: hidden;
                width: 100%;
            }

            .service-card {
                width: calc(100% - 40px);
                max-width: 100%;
                height: auto;
                margin: 0 20px;
            }

            .card-image {
                width: 100%;
                height: 220px;
            }

            .card-content {
                padding: 25px 20px;
            }

            .card-title {
                font-size: 20px;
                min-height: auto;
            }
            
            .card-list li {
                font-size: 14px;
                margin-bottom: 10px;
            }

            .prev, .next {
                display: none;
            }
            
            .slider-dots {
                display: none;
            }
        }
        
        @media (max-width: 480px) {
            .section-title {
                font-size: 24px;
            }

            .section-subtitle {
                font-size: 13px;
            }
            
            .services-slider-container {
                padding: 0 15px;
            }
            
            .service-card {
                width: calc(100% - 30px);
                margin: 0 15px;
            }
            
            .card-image {
                height: 200px;
            }
            
            .card-content {
                padding: 20px 15px;
            }
            
            .card-title {
                font-size: 18px;
            }
            
            .card-list li {
                font-size: 13px;
            }
            
            .read-more-btn {
                padding: 12px 20px;
                font-size: 14px;
            }
        }
        
    /*hide controls*/
    .prev, .next {
        display: none;
    }

/*content section*/

/* Wrapper */
.amp-sec-wrap {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  display: flex;
  gap: 40px;
  align-items: stretch;
}

/* Left block */
.amp-left-block {
  position: relative;
  flex: 0 0 520px;
  min-width: 240px;
}

/* Decorative frame */
.amp-decor-frame {
  position: absolute;
  left: -34px;
  top: 20px;
  width: 260px;
  height: 340px;
  z-index: 0;
  pointer-events: none;
  transform-origin: left top;
  transition: all .24s ease;
}

.amp-decor-frame::before,
.amp-decor-frame::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border-radius: 4px;
  transition: all .24s ease;
}

/* outer */
.amp-decor-frame::before {
  border: 14px solid #ffb84d;
}

/* inner */
.amp-decor-frame::after {
  border: 14px solid #ff9f1a;
  left: 22px;
  top: 22px;
  width: calc(100% - 44px);
  height: calc(100% - 44px);
}

.amp-img-card {
  width: 100%;
  aspect-ratio: 16 / 11;
  position: relative;
  border-radius: 4px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.24);
  overflow: hidden;
  z-index: 2;
  background: #000;              
}

/* IMAGE LAYER */
.amp-img-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
  transition: opacity 0.8s ease-in-out;
}

/* FADE EFFECT */
.amp-img-card.fade::before {
  opacity: 0;
}


@supports not (aspect-ratio: 16 / 11) {
  .amp-img-card {
    height: 260px;
  }
}


@media (max-width: 768px) {
  .amp-img-card {
    border-radius: 6px;
  }
}




.amp-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}

/* Card content */
.amp-card-inner {
  position: absolute;
  inset: 0;
  padding: 36px;
  z-index: 3;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.amp-card-title {
  font-size: 34px;
  font-weight: 700;
  margin: 0;
}

/* List */
.amp-prod-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.amp-prod-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 8px 0;
  font-size: 18px;
  line-height: 1.45;
}

.amp-prod-icon {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  border: 3px solid #ffd700 ;
  background: rgba(255,255,255,0.06);
}

/* Right side */
.amp-right-block {
  flex: 1;
  padding-right: 8px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.amp-main-heading {
  font-size: 25px;
  /*font-weight: 800; */
  color: var(--primary-color);
  margin: 6px 0 18px;
}

.amp-text-para {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text-color);
  margin-bottom: 14px;
  max-width: 820px;
  text-align:justify;
}

/*.contact-details a:hover{*/
/*    color:#ead99b;*/
/*}*/

.sec-title{
    color:var(--primary-color)!important;
    font-size: 25px!important;
}

/* --------------------
   Responsive
   -------------------- */

/* --------------------
   Responsive fixes (replace previous responsive rules)
   -------------------- */

/* Medium screens: scale down the frame so it doesn't stick out too far */
@media (max-width: 1000px) {
  .amp-sec-wrap { gap: 28px; padding:18px; }
  .amp-left-block { flex: 0 0 480px; }

  /* reduce padding + allow inner scrolling if necessary */
  .amp-img-card { aspect-ratio: 16/11; }
  .amp-card-inner {
    padding: 28px;
    max-height: 100%;
    overflow-y: auto;      /* safe scroll if content larger than visual area */
    -webkit-overflow-scrolling: touch;
  }

  .amp-decor-frame { left: -22px; top: 14px; transform: scale(.92); }
  .amp-decor-frame::before,
  .amp-decor-frame::after { border-width: 12px; }
  .amp-card-title { font-size: 30px; }
  .amp-prod-item { font-size: 17px; }
  .amp-main-heading { font-size: 25px; }
}

/* Tablet */
/*@media (max-width: 820px) {*/
/*  .amp-sec-wrap { gap: 18px; }*/
/*  .amp-left-block { flex: 0 0 420px; }*/

  /* trim padding and font-size on the image card so items fit */
/*  .amp-card-inner {*/
/*    padding: 22px;*/
/*    max-height: 100%;*/
/*    overflow-y: auto;*/
/*  }*/
/*  .amp-card-title { font-size: 28px; }*/
/*  .amp-prod-item { font-size: 16px; line-height: 1.35; }*/

/*  .amp-decor-frame { left: -14px; top: 10px; transform: scale(.86); }*/
/*  .amp-decor-frame::before,*/
/*  .amp-decor-frame::after { border-width: 10px; }*/
/*  .amp-card-inner { padding: 20px; }*/
/*}*/

/* Mobile (frame stays visible, smaller, behind card) */
@media (max-width: 840px) {
  .amp-sec-wrap {
    flex-direction: column;
    padding: 14px;
  }

  .amp-left-block {
    flex: none;
    width: 100%;
    min-width: auto;
    margin-bottom: 16px;
  }

  /* keep frame visible but smaller */
  .amp-decor-frame {
    left: -6px;
    top: 6px;
    width: 200px;
    height: 250px;
    transform: scale(.6);
    z-index: 0;
  }
  .amp-decor-frame::before { border-width: 6px; }
  .amp-decor-frame::after {
    border-width: 6px;
    left: 12px;
    top: 12px;
    width: calc(100% - 24px);
    height: calc(100% - 24px);
  }

  /* Allow the image-card to grow with content. If you prefer fixed height, remove 'height:auto' */
  /*.amp-img-card {*/
    /*aspect-ratio: auto;    */
  /*  height: auto;*/
  /*  min-height: 160px;*/
  /*}*/

  /* make inner content flow naturally (not clipped) and enable scrolling as fallback */
  .amp-card-inner {
    position: relative;     /* let content push height rather than strictly absolute */
    padding: 14px;
    max-height: none;
    overflow: visible;
  }

  /* slightly smaller type to help fit items */
  .amp-card-title { font-size: 22px; }
  .amp-prod-item { font-size: 15px; gap: 8px; }
  .amp-prod-icon { width: 18px; height: 18px; border-width:2px; }

  .amp-right-block { padding-right: 0; }
  .amp-main-heading { font-size: 26px; margin-top: 8px; }
  .amp-text-para { font-size: 15px; }
}

/* Extra-small phones */
@media (max-width: 420px) {
  .amp-card-inner { padding: 10px; }
  .amp-prod-item { font-size: 14px; gap: 6px; }
  .amp-main-heading { font-size: 22px; }

  .amp-decor-frame {
    left: -6px;
    top: 4px;
    width: 180px;
    height: 220px;
    transform: scale(.55);
  }
  .amp-decor-frame::before,
  .amp-decor-frame::after { border-width: 5px; }
  .amp-decor-frame::after { left: 10px; top: 10px; width: calc(100% - 20px); height: calc(100% - 20px); }
}

/* SECTION: Experience & Stats */
.amp-stats-section{
  background-image: url('../img/home-1.png');
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
  padding: 36px 12px;
  overflow: hidden;
}

/* subtle dark overlay */
.amp-stats-section::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.62);
  pointer-events: none;
}

/* inner constrained container */
.amp-stats-inner{
  position: relative; /* above overlay */
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 28px;
  align-items: center;
  padding: 18px 24px;
  box-sizing: border-box;
}

/* left column (framed big number + lines) */
.amp-years-col{
  position: relative;
  flex: 0 0 360px;
  min-width: 220px;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  padding-left: 8px;
  z-index: 2;
}

/* white stroked frame (two sides open like image) */
.amp-years-frame{
  position: absolute;
  left: 6px;
  top: -15%;
  width: 220px;
  height: 140px;
  border-left: 6px solid #ffffff;
  border-top: 6px solid #ffffff;
  border-bottom: 6px solid #ffffff;
  box-sizing: border-box;
  z-index: 1;
  pointer-events:none;
}

/* content sits on top of frame */
.amp-years-content{
  display:flex;
  gap:18px;
  align-items:center;
  z-index: 3;
  margin-left: 36px;
}

/* big number */
.amp-years-number{
  font-size: 54px;
  font-weight: 800;
  color: #ebdb9d ;             /* orange */
  line-height:1;
  font-family: sans-serif;
}

/* lines to the right of number */
.amp-years-lines{
  display:flex;
  flex-direction:column;
  gap:6px;
    /*background: #616161;*/
    /*background: #000;*/
    padding: 10px;
}
.amp-years-lines .amp-line{
  font-size: 18px;
  font-weight: 500;
  line-height:1.25;
  color: #ffffff;
}

/* center stats grid */
.amp-stats-col{
  display:grid;
  grid-template-columns: repeat(2, minmax(160px, 1fr));
  gap: 20px 40px;
  flex: 1 1 480px;
  align-items: center;
  justify-items: center;
  z-index: 3;
}

/* each stat */
.amp-stat{
  text-align: center;
}
.amp-stat-num{
  font-size: 44px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 8px;
}
.amp-stat-label{
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  max-width: 160px;
}

/* right badge/logo */
.amp-badge-col{
  flex: 0 0 180px;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:3;
}
.amp-badge-img{
  width:120px;
  height:auto;
  object-fit:contain;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,0.6));
}

/* Responsive tweaks */

/* medium screens */
@media (max-width: 1100px){
  .amp-years-number{ font-size: 72px; }
  .amp-years-frame{ width:190px; height:120px; left:6px; top:-8%; border-width:5px; }
  .amp-stats-col{ gap:18px 28px; }
  .amp-stat-num{ font-size:38px; }
}

/* tablets */
@media (max-width: 860px){
  .amp-stats-inner{ gap:0px; padding: 0px; }
  .amp-years-col{ flex: 0 0 300px; }
  .amp-years-number{ font-size:60px; }
  /*.amp-years-frame{ width:170px; height:110px; transform: translateX(-6px) scale(.95); top:12%; }*/
  .amp-badge-col{ flex:0 0 140px; }
}
@media (max-width: 860px) {
    .amp-years-frame {
        width: 170px;
        height: 180px;
        transform: translateX(-6px) scale(.95);
        top: -11%;
    }
}

/* narrow tablets & large phones: stack columns */
@media (max-width: 777px){
  .amp-stats-inner{
    flex-direction: column;
    align-items: stretch;
    padding: 0px;
  }

  .amp-years-col{
    order: 1;
    flex: none;
    width: 100%;
    display:flex;
    justify-content:center;
    margin-bottom: 14px;
    padding-left: 6px;
  }

  .amp-years-content{
    margin-left: 28px;
  }

  .amp-years-frame{
    left: 6px;
    top: -13%;
    width: 140px;
    height: 125px;
    border-width:5px;
    transform: scale(.9);
  }
  .amp-years-number{ font-size:48px; }

  .amp-stats-col{
    order: 2;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 12px;
    padding: 8px 6px;
    margin-bottom: 14px;
  }
  .amp-stat-num{ font-size:30px; }

  .amp-badge-col{
    order: 3;
    margin-top: 6px;
    justify-content:center;
    padding-left: 12px;
  }
  .amp-badge-img{ width:92px; }
}

/* small phones */
@media (max-width: 420px){
  .amp-years-number{ font-size:40px; }
  .amp-years-frame{ width:120px; height:115px; left:6px; top:-8%; border-width:4px; }
  .amp-stats-col{ grid-template-columns: repeat(1, 1fr); flex: none; gap: 32px 12px;}
  .amp-stat-num{ font-size:28px; }
  .amp-stat-label{ font-size:13px; max-width:220px; color: rgba(255,255,255,0.75); }
  .amp-badge-img{ width:78px; }
}
@media (max-width: 344px){
    .amp-years-number{ font-size:20px; }
  .amp-years-frame{ width:120px; height:115px; left:6px; top:-8%; border-width:4px; }
  .amp-line{font-size:15px; }
  }
}

/*logo scrolling */
/* Basic resets for the component */
.mz-marquee {
  background: #ffffff;
  padding: 18px 12px;
  overflow: hidden;
  box-sizing: border-box;
  width: 100%;
}

/* the moving track that we animate */
.mz-marquee-track {
  display: flex;
  align-items: center;
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* .mz-logos is a single row of logos. We'll duplicate it to create the seamless loop. */
.mz-logos {
  display: flex;
  gap: 20px;
  align-items: center;
  white-space: nowrap;
  /* the animation (duration set dynamically by JS via --marquee-duration) */
  animation: mz-marquee-linear linear infinite;
  will-change: transform;
  padding: 40px 0px;
}

/* Stop animation when user hovers or focuses inside the marquee */
.mz-marquee:hover .mz-logos,
.mz-marquee:focus-within .mz-logos {
  animation-play-state: paused;
}

/* each logo */
.mz-logos img {
  display: block;
  width: auto;
  object-fit: contain;
  filter: none;               /* keep original colors; change if you want grayscale */
  background: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

/* make the logos a bit smaller on small screens */
/*@media (max-width: 640px){*/
/*  .mz-logos img { height: 44px; padding: 6px 10px; }*/
/*  .mz-marquee { padding: 12px 8px; --gap: 20px; }*/
/*}*/

/* animation keyframes
   We translate the logos row left by 50% (we duplicate the content so 50% shift is exactly one full row).
   --marquee-duration is set by JS for a smooth consistent speed.
*/
@keyframes mz-marquee-linear {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50%)); }
}

/* Accessibility: hide the duplicated row from assistive tech */
.mz-marquee-track .mz-logos[aria-hidden="true"] { clip-path: inset(0); }

/* Optional: reduce motion respect */
@media (prefers-reduced-motion: reduce) {
  .mz-logos { animation: none; transform: none !important; }
}

/*footer */
.amp-footer {
  font-family:  sans-serif;
  color: #f0f0f0;
  position: relative;
  margin-top: 0px;
}

/* background image & overlay - change url(...) to your image */
.amp-footer-top {
  /*background-image: url('../img/energy.jpeg');*/
  background:#152030;
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 56px 0 40px;
  overflow: hidden;
}
.amp-footer-top::before{
  content:"";
  position:absolute;
  inset:0;
  /*background: rgba(0,0,0,0.72);*/
  pointer-events:none;
}

/* inner container */
.amp-container{
  position: relative;
  z-index: 2; /* above overlay */
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  align-items: start;
  box-sizing: border-box;
}

/* each column */
.amp-col {
  color: #ddd;
}
.amp-footer-head {
  font-size: 20px;
  color:  var(--links-color);
  margin: 0 0 12px;
  font-weight: 700;
}
/*.amp-footer-head img{*/
/*    height: 105px !important;*/
    /* width: 200px !important; */
/*    position: relative;*/
/*    left: 101px;*/
/*    transform: scale(2.4);*/
/*    top: -3px;*/
/*}*/
.amp-underline {
  width: 40px;
  height: 4px;
  background: #ebdb9d;
  margin-bottom: 14px;
  border-radius: 2px;
}

/* contact rows */
.amp-contact, .amp-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 10px;
}
.amp-contact-text {
  font-size: 14px;
  color: var(--links-color);
  line-height: 1.6;
}
.amp-contact-text a { color:  var(--links-color); text-decoration: none; }
.amp-contact-text a:hover { text-decoration: underline; color: #ffb84d; }

/* icons */
.amp-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  color:  var(--links-color); /* orange */
  margin-top: 2px;
}

/* footer bottom bar */
.amp-footer-bottom {
  background: #2b2a2a;
  padding: 14px 0;
  text-align: center;
}
.amp-footer-bottom .amp-copyright {
  color: #e6e6e6;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
  font-size: 14px;
}
.amp-footer-bottom a { color:  var(--links-color); text-decoration: none; }
.amp-footer-bottom a:hover { text-decoration: underline; }

/* back to top button */
.amp-backtop {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 44px;
  height: 44px;
  border-radius: 6px;
  background: white;
  border: none;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: #fff;
  z-index: 9999;
  box-shadow: 0 6px 20px rgba(0,0,0,0.5);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .22s ease, transform .22s ease;
}
.amp-backtop svg { width: 20px; height: 20px;color:black; }
.amp-backtop.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive: stack columns on small screens */
@media (max-width: 860px) {
  .amp-container { grid-template-columns: 1fr; padding: 0,18px; }
  .amp-col { padding: 6px 0; }
  .amp-footer-top { padding: 40px 0 30px; }
  .amp-contact-text { font-size: 15px; }
  .amp-icon { width: 36px; height: 36px; }
}

.secondary-tagline-index{
  margin:20px 0 18px;
  color:var(--text-color);
  font-size:14.5px;
   font-weight:600;
  text-align:center;
}

.amp-years-col{
    border:5px solid white;
}

.pm-image img {
  width: 100%;
  height: 100%;
  display:block;
  object-fit: contain;
}
.ctc-address-text *{
    margin-top:10px!important;
}



.header-main .header-content .logo img.site-logo {
  height: 74px !important;
  width: auto !important;
}

@media (max-width: 768px) {
  .header-main .header-content .logo img.site-logo {
    height: 50px !important;
    margin-left: 12px;
  }
}

/* Footer logo + text alignment */
.amp-footer .amp-col--reach {
  display: flex;
  flex-direction: column;
  align-items: flex-start;   /* left aligned */
  padding-left: 0 !important;
  margin-left: 0 !important;

}

/* Footer logo */
.amp-footer .amp-footer-head img.footer-logo {
  height: 60px !important;
  width: auto !important;
  margin-bottom: 16px;
  display: block;
}

/* Mobile */
@media (max-width: 768px) {
  .amp-footer .amp-footer-head img.footer-logo {
    height: 60px !important;
  }
}


