   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
            background: #000000;
            color: #fff;
            overflow-x: hidden;
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 20px 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: transparent;
            transition: all 0.4s ease;
        }

        .header.scrolled {
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(10px);
            padding: 15px 60px;
        }

        .header-left {
            display: flex;
            gap: 40px;
            align-items: center;
            flex: 1;
        }

        .header-right {
            display: flex;
            gap: 40px;
            align-items: center;
            flex: 1;
            justify-content: flex-end;
        }

        .logo {
            font-size: 28px;
            font-weight: 700;
            letter-spacing: -1px;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            transition: all 0.4s ease;
            opacity: 0;
        }

        .header.scrolled .logo {
            opacity: 1;
        }

        nav {
            display: flex;
            gap: 40px;
            align-items: center;
        }

        nav a {
            color: #fff;
            text-decoration: none;
            font-size: 14px;
            transition: opacity 0.3s;
        }

        nav a:hover {
            color:#fff;
            font-weight:600;
                transition: all 0.6s;

        }

        .contact-btn {
            background: #B67A1E;
            padding: 10px 24px;
            border-radius: 4px;
            transition: background 0.3s;
        }

        .contact-btn:hover {
            background: #e29829;
        }

.navbar-li-effect::before {
    width: 0%;
    bottom: 0;
}
.navbar-li-effect:hover::before {
    width: 0%;
    bottom: 0;
}
.navbar-li-effect::before {
    transition: 300ms;
    height: 3px;
    content: "";
    position: absolute;
    background-color: #a67e0d;
}

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            flex-direction: column;
            overflow: hidden;
        }

        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.8;
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
          /*  background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.8) 100%); */
            z-index: 1;
        }

        .hero-content {
            text-align: center;
            z-index: 2;
            max-width: 900px;
            padding: 0 20px;
        }

        .hero-logo {
      
            font-weight: 700;
            letter-spacing: -2px;
            margin-bottom: 20px;
            opacity: 1;
            animation: fadeInDown 1s ease;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
               }
        }

        .hero h1 {
            font-size: 62px;
            font-weight: 300;
            line-height: 1.2;
            margin-bottom: 30px;
            letter-spacing: -2px;
        }

        .hero-cta {
            display: inline-block;
            background: #B67A1E;
            padding: 16px 40px;
            border-radius: 4px;
            text-decoration: none;
            color: #fff;
            font-size: 16px;
            transition: all 0.3s;
        }

        .hero-cta:hover {
            background: #efa330;
            transform: translateY(-2px);
        }

        /* Services Grid */
         .services {
            padding: 100px 60px;
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 30px;
            max-width: 100%;
            background-color: rgba(255, 255, 255, 0.15);
            margin: 0 auto;
        }
         .services-container {
            max-width: 100%;
            width: 100%;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }

        .service-card {
                position: relative;
                height: auto;
                border-radius: 16px;
                overflow: hidden;
                cursor: pointer;
                transition: transform 0.3s 
ease;
        }

        .service-card:hover {
            transform: translateY(-5px);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,0.8) 100%);
            z-index: 1;
            transition: background 0.3s ease;
        }

        .service-card:hover::before {
            background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0.9) 100%);
        }

        .service-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .service-card:hover .service-image {
            transform: scale(1.05);
        }

        .service-content {
           position: absolute;
           bottom: 0;
           left: 0;
           right: 0;
           padding: 20px;
           z-index: 2;
           color: white;
           display: flex;
           align-content: space-around;
           justify-content: space-between;
           align-items: center;
           flex-wrap: wrap;
        }

        .service-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 25px;
            letter-spacing: 1px;
        }

        .service-description {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 24px;
            line-height: 1.5;
        }

        .service-arrow {
            width: 48px;
            height: 48px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .service-card:hover .service-arrow {
            background: #B67A1E;
            transform: translateX(5px);
        }
  .service-card:hover .blue-back {
            background: #0073B6;
            transform: translateX(5px);
        }

        .service-arrow svg {
            width: 24px;
            height: 24px;
            stroke: white;
            stroke-width: 2;
            fill: none;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .services-container {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .service-card {
                height: 450px;
            }

            .service-content {
                padding: 30px;
            }

            .service-title {
                font-size: 1.75rem;
            }

            .service-description {
                font-size: 0.95rem;
            }

            .service-arrow {
                width: 44px;
                height: 44px;
            }
        }

        @media (max-width: 480px) {
            body {
                /* padding: 20px 12px; */
            }

            .service-card {
                height: 290px;
            }
.hero h1 {
    font-size: 54px !important;
    }
            .service-content {
                padding: 24px;
            }

            .service-title {
                font-size: 1.5rem;
            }

            .service-description {
                font-size: 0.9rem;
            }
        }

        /* Framework Section */
        .framework {
            padding: 80px 60px;
            background: rgba(255, 255, 255, 0.15);
            position: relative;
        }

        .framework-grid {
            max-width: 100%;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .framework-image {
           width: 100%;
           height: 100%;
           background: linear-gradient(135deg, #cb9c3e 0%, #cabc20 100%);
           border-radius: 8px;
           position: relative;
           overflow: hidden;
           background-image: url(https://storage.googleapis.com/giffycms-ambicahind.appspot.com/Executive_Saurav%20Bubna.webp);
           background-size: cover;
           background-position: top;
        }

        .framework-content h3 {
                position: relative;
            font-size: 48px;
            font-weight: 300;
            line-height: 1.2;
            margin-bottom: 30px;
            letter-spacing: -1px;
        }
 .framework-content h3::after{
 content: "";
    position: absolute;
    width: 52px;
    height: 3.5px;
    background: #B67A1E;
    bottom: -10px;
    left: 0;
    border-radius: 2px;

 }
         

        .framework-content p {
            color: #999;
            line-height: 1.8;
            margin-bottom: 15px;
            font-style: italic;
        }

        .learn-more {
            display: inline-block;
            color: #fff;
            text-decoration: none;
            font-size: 14px;
            padding: 12px 30px;
            border: 1px solid #B67A1E;
            border-radius: 4px;
            transition: all 0.3s;
            background-color: #B67A1E;
        }

        .learn-more:hover {
            background: #d99733;
            color: #fff;
        }

        /* Technology Showcase */
        .tech-showcase {
            padding: 100px 60px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .tech-item {
               display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    margin-bottom: 0px;
    align-items: center;
        }

        .tech-item:nth-child(even) {
            direction: rtl;
        }

        .tech-item:nth-child(even) > * {
            direction: ltr;
        }

        .tech-image {
            width: 100%;
    height: 350px;
    background: #111;
    border-radius: 8px;
    opacity: .8;
        }

        .tech-content h3 {
            position: relative;
    font-size: 48px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: -1px;
        }

       .tech-content h3::after {
    content: "";
    position: absolute;
    width: 52px;
    height: 3.5px;
    background: #B67A1E;
    bottom: -10px;
    left: 0;
    border-radius: 2px;
       }
        .tech-content p {
            color: #999;
            line-height: 1.8;
            margin-bottom: 16px;
        }

        /* Proof Section */
        .proof {
            padding: 120px 60px;
    background: #0a0a0a;
    text-align: center;
    background-image: url("https://storage.googleapis.com/giffycms-ambicahind.appspot.com/Screenshot%20(36).png");
    background-position: 50% 20px;
    position: static;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: transparent;
    /* background-position: center 0; */
    background-attachment: fixed;
    overflow: hidden;
    opacity: .9;
        }

        .proof h2 {
            font-size: 48px;
            font-weight: 500;
            margin-bottom: 60px;
        }

        .proof-content {
            max-width: 800px;
            margin: 0 auto;
            color: #ffffff;
            line-height: 1.8;
        }

        /* Research Cards */
        .research {
            padding: 120px 60px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .research-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 60px;
        }

        .research-header h2 {
            font-size: 48px;
            font-weight: 300;
        }

        .view-all {
            color: #ff3333;
            text-decoration: none;
            font-size: 14px;
        }

        .research-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .research-card {
            background: #111;
            border-radius: 8px;
            overflow: hidden;
            transition: transform 0.3s;
        }

        .research-card:hover {
            transform: translateY(-8px);
        }

        .research-image {
            width: 100%;
            height: 250px;
            background: #222;
        }

        .research-content {
            padding: 30px;
        }

        .research-meta {
            color: #666;
            font-size: 12px;
            margin-bottom: 12px;
        }

        .research-content h4 {
            font-size: 18px;
            font-weight: 500;
            line-height: 1.4;
        }

        /* Footer CTA */
        .footer-cta {
            padding: 120px 60px;
            text-align: center;
            background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
        }

        .footer-cta h2 {
            font-size: 56px;
            font-weight: 300;
            margin-bottom: 40px;
            letter-spacing: -1px;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
        }

        .cta-btn {
            padding: 16px 40px;
            border-radius: 4px;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s;
        }

        .cta-primary {
            background: #B67A1E;
            color: #fff;
        }

        .cta-primary:hover {
            background: #e49012;
        }

        .cta-secondary {
            border: 1px solid #333;
            color: #fff;
        }

        .cta-secondary:hover {
            background: #111;
        }

        /* Footer */
        .footer {
            padding: 50px 60px;
            background: #000;
            border-top: 1px solid #222;
            padding-bottom: 25px;
        }

        .footer-content {
            max-width: 100%;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 60px;
        }

        .footer-col h4 {
            margin-bottom: 20px;
            font-size: 14px;
            font-weight: 600;
        }

        .footer-col a {
            display: block;
            color: #a9a9a9;
            text-decoration: none;
            margin-bottom: 12px;
            font-size: 14px;
            transition: color 0.3s;
        }

        .footer-col a:hover {
            color: #fff;
        }
        .icons-line a{
            display: inline;
        }

        .footer-bottom {
            max-width: 100%;
            margin: 40px auto 0;
            padding-top: 15px;
            border-top: 1px solid #222;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #a9a9a9;
            font-size: 14px;
            text-align: right;
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 42px !important;
            }

            .hero-logo {
                /* font-size: 36px; */
            }

            .services,
            .research-grid,
            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .services{
                   padding: 70px 10%;
            }

            .framework-grid,
            .tech-item {
                grid-template-columns: 1fr;
            }

            .header {
                padding: 20px 30px;
            }
.header.scrolled {
    
    padding:20px 30px;
}
            .header-left,
            .header-right {
                flex-direction: column;
                gap: 15px;
                /* float: right; */
                align-items: end;
            }

            nav {
                gap: 20px;
            }
        }

        .iso-img{
                width: 100%;
                max-width: 100px;
            }
        .banner-comp-logo{
             width: 100%;
             max-width: 20em;
        }
        .factory-img{
            max-width: 100%;
        }
        .service-head{
                margin-top: 0px;
        }

          .marquee-section {
            width: 100%;
            padding: 40px 0 80px;
        }

        .section-header {
            margin-bottom: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }

        .red-dot {
            width: 8px;
            height: 8px;
            background: #B67A1E;
            border-radius: 50%;
        }

        .section-title {
            font-size: 1.85rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #999;
            font-weight: 400;
            margin-bottom: 20px;
        }

        .marquee-container {
               overflow: hidden;
    position: relative;
    width: 70%;
    margin: 0 15%;
        }

        .marquee-content {
            display: flex;
            animation: marquee 30s linear infinite;
            width: fit-content;
        }

        .marquee-content:hover {
            animation-play-state: paused;
        }

        .logo-item {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 60px;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .logo-text {
               font-size: 3rem;
               font-weight: 400;
               color: #9b9b9b;
               letter-spacing: 1px;
               transition: color 0.3s ease;
        }

        .logo-item:hover .logo-text {
            color: #fff;
        }

        .logo-text sup {
            font-size: 1rem;
            margin-left: 2px;
        }

        /* Duplicate the content for seamless loop */
        .marquee-content::after {
            content: '';
        }

        @keyframes marquee {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        /* Fade effect on edges */
        .marquee-container::before,
        .marquee-container::after {
            content: '';
            position: absolute;
            top: 0;
            width: 150px;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }

        .marquee-container::before {
            left: 0;
            background: linear-gradient(to right, #0a0a0a 0%, transparent 100%);
        }

        .marquee-container::after {
            right: 0;
            background: linear-gradient(to left, #0a0a0a 0%, transparent 100%);
        }

        /* Responsive Design */


    
        @media (max-width: 768px) {
            .section-title {
                font-size: 1.85rem;
                letter-spacing: 2px;
            }

            .logo-item {
                padding: 0 40px;
            }

            .logo-text {
                font-size: 2rem;
            }

            .marquee-content {
                animation-duration: 25s;
            }
                      
           
        }

        @media (max-width: 480px) {
            .section-header {
                margin-bottom: 40px;
            }

            .section-title {
                font-size: 1.2rem;
            }

            .logo-item {
                padding: 0 30px;
            }

            .logo-text {
                font-size: 1.5rem;
            }
              .footer-icon-img {
    width: 9% !important;
    }

            .marquee-container::before,
            .marquee-container::after {
                width: 80px;
            }
             .proof {
    padding: 90px 15%;
}
            .proof h2 {
    font-size: 38px;
                margin-bottom:20px;
            }
                    .framework-image {
   height: 28vh !important;
   }
            
            .badge {
    font-size: 1.2rem !important;
    }
            .framework {
    padding: 80px 10%;
            }
            .framework-grid {
   
    gap: 10px;
            }
            .framework-content h3 {
 
    font-size: 38px;
            }
            .section-header .title-wrapper h3 {
    font-size: 20px !important;
    }
            .footer {
    padding: 50px 10%;
            }
            .footer-bottom {
    text-align: right;
    font-size: 12px;
    /* justify-content: revert-layer; */
}
        }
    
/********************mission****************/
  .mission-section {
            padding: 80px 60px;
            max-width: 100%;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.15);
        }

        .mission-section .section-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 20px;
            flex-wrap: wrap;
            gap: 20px;
            text-align: left;
        }

        .badge {
            background: transparent;
            padding: 8px 0px;
            border-radius: 6px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 1.85rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #999;
            font-weight: 400;
            margin-bottom: -10px;
        }

        .badge::before {
            content: '';
            width: 8px;
            height: 8px;
            background: #B67A1E;
            border-radius: 50%;
        }

        .title-wrapper {
            flex: 1;
            min-width: 300px;
        }

       .section-header .title-wrapper h3 {
            font-size: 25px;
            font-weight: 400;
            line-height: 1.2;
            color: #fff;
            margin-top: 20px;
        }

        .slider-controls {
            display: flex;
            gap: 12px;
            align-items: center;
            margin-top: 40px;
        }

        .control-btn {
            width: 48px;
            height: 48px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            position: relative;
        }

        .control-btn:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .control-btn:active {
            transform: scale(0.95);
        }

        .control-btn::after {
            content: '';
            width: 12px;
            height: 12px;
            border-right: 2px solid #B67A1E;
            border-top: 2px solid #B67A1E;
        }

        .control-btn.prev::after {
            transform: rotate(-135deg);
        }

        .control-btn.next::after {
            transform: rotate(45deg);
        }

        .slider-container {
            position: relative;
            overflow: hidden;
        }

        .slider-wrapper {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            gap: 24px;
        }

        .slide {
            /* position: absolute; */
            display: grid;
            min-width: calc(50% - 12px);
            background: #1a1a1a;
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: transform 0.3s ease, border-color 0.3s ease;
        }

        .slide:hover {
            transform: translateY(-8px);
            border-color: rgba(255, 59, 48, 0.3);
        }

        .slide-image {
                width: 100%;
    height: 290px;
    background-size: cover;
    background-position: top;
    position: relative;
        }

        .slide-icon {
            position: absolute;
            top: 24px;
            left: 24px;
            width: 48px;
            height: 48px;
            /* background: rgba(0, 0, 0, 0.6); */
            backdrop-filter: blur(10px);
            border-radius: 12px;
            /* border: 1px solid rgba(255, 255, 255, 0.1); */
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slide-icon::after {
            /* content: ''; */
            width: 6px;
            height: 6px;
            background: #ff3b30;
            border-radius: 50%;
            box-shadow: 0 0 10px #ff3b30;
        }

        .slide-content {
            padding: 10px 20px;
        }

        .slide-title {
            font-size: 24px;
            font-weight: 500;
            margin-bottom: 16px;
            color: #fff;
        }

        .slide-description {
            font-size: 15px;
            line-height: 1.6;
            color: #a9a9a9;
        }

        @media (max-width: 767px) {
            .slide {
                min-width: calc(100% - 0px);
            }
            .footer-icon-img {
    width: 8% !important;
    }
        }

        @media (max-width: 768px) {
            .mission-section {
                padding: 60px 10%;
            }

            .section-header {
                margin-bottom: 40px;
            }

            .slider-controls {
                width: 100%;
                justify-content: flex-end;
                margin-top: 10px;
            }

            .slide-image {
                height: 200px;
            }

            .slide-content {
                padding: 24px;
            }

            .slide-title {
                font-size: 20px;
            }

            .framework-image {
   height: 50vh;
   }
}

        .giffy-logo {
    width: 10%;
}
.footer-bottom a{
        font-size: 14px;
        color: #a9a9a9;
        text-align: right;
}
.footer-bottom a:hover{
        font-size: 14px;
    color: #666;
}
.btn-ambica {
  border-radius: 4px;
  /* text-transform: uppercase; */
  position: relative;
  text-decoration: none;
  /* display: flex; */
  align-items: center;
  /* justify-content: center; */
  /* border: 1.5px solid black; */
  padding: 1rem 2rem;
  font-size: 1.5rem;
  background-size: 300%;
  transition: all 0.6s;
  /* background-color:red; */
  /* width: 61%; */
}


.theme-org {
    color: #fff;
    background-image: linear-gradient(120deg, #B67A1E 50%, #0073B6 50%);
}


.btn-ambica:hover {
  color: #fff;
  background-position: 100%;
  transform: translateX(0.5rem);
}

.btn-ambica:active {
  transform: translate(0.5rem, 0.5rem);
  box-shadow: 0px 10px 20px -15px rgba(0, 0, 0, 0.75);
}


.newsletter-section {
    margin-bottom: 1rem;
    /* width: 73%; */
}



.newsletter {
        display: flex;

    padding: 0rem;
    border-radius: 0px;
}

.newsletter input {
       flex: 1;
       padding: 10px 15px;
       border: none;
       font-size: 10px;
       outline: 0;
       color:#000;
       background-color: #fff;
}

.footer-links,.right {
    flex-direction: column
}

.newsletter input::placeholder {
    font-size: 14px;
    color: #00000086
}

.newsletter button {
        background-color: #B67A1E;
        color: #fff;
        border: none;
        padding: 10px 25px;
        font-size: 10px;
        cursor: pointer;
        border-radius: 0;
}

.newsletter button:hover {
    
    color: #fff;
    box-shadow: 0 0 12px rgb(0 0 0 / 21%)
}
.icon-social{
  text-align: left;
  margin-top: 2em;
}
.footer-icon-img{
   width: 9%;
    MARGIN-TOP: 0px;
    margin-left: 5px;
}
.footer-icon-img:hover{
background-color:rgba(255, 255, 255, 0.15);
border-radius: 15px;
}

   @media (min-width: 1440px) and (max-width: 1800px) {
       .slide-image {
    height: 80vh;
       }
.framework-image {
  
    height: 80vh;
}
       
   }

 @media (min-width: 1800px) and (max-width: 2200px) {
       .slide-image {
    height: 80vh;
       }
.framework-image {
  
    height: 90vh;
}
       
   }
 @media (min-width: 2200px) and (max-width: 2500px) {
       .slide-image {
    height: 100vh;
       }
.framework-image {
  
    height: 100vh;
}
       
.framework-content p {
    font-size:18px
}
     .footer-col a {
    
    font-size: 16px;
     }
     .footer-col h4 {
    font-size: 16px;
}
     .newsletter button {
  
    font-size: 16px;
     }
     .newsletter input {
color:#000;
    font-size: 16px;
     }
     .newsletter input::placeholder {
    font-size: 16px;
     }
     .framework-content h3 {

    font-size: 50px;
     }
     .section-title {
    font-size: 2.85rem;
     }
     .slide-description {
    font-size: 18px;
     }
     .proof-content {
    max-width: 1000px;
     }
     .proof-content p{
    font-size: 20px;
     }
     .proof h2 {
    font-size: 50px;
     }
     .service-title {
    font-size: 3.5rem;
   }
     .btn-ambica {
  
    font-size: 2.2rem;
     }
     nav a {
   
    font-size: 16px;
     }
     .badge {
   
    font-size: 2.85rem;
     }
 }

  @media (min-width: 2500px){
       .slide-image {
    height: 100vh;
       }
.framework-image {
  
    height: 100vh;
}
       
.framework-content p {
    font-size:18px
}
     .footer-col a {
    
    font-size: 16px;
     }
     .footer-col h4 {
    font-size: 16px;
}
     .newsletter button {
  
    font-size: 16px;
     }
     .newsletter input {
color:#000;
    font-size: 16px;
     }
     .newsletter input::placeholder {
    font-size: 16px;
     }
     .framework-content h3 {

    font-size: 50px;
     }
     .section-title {
    font-size: 2.85rem;
     }
     .slide-description {
    font-size: 18px;
     }
     .proof-content {
    max-width: 1000px;
     }
     .proof-content p{
    font-size: 20px;
     }
     .proof h2 {
    font-size: 50px;
     }
     .service-title {
    font-size: 3.5rem;
   }
     .btn-ambica {
  
    font-size: 2.2rem;
     }
     nav a {
   
    font-size: 16px;
     }
     .badge {
   
    font-size: 2.85rem;
     }
 }
.bottom-copyright{
    text-align: left;
}
/* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            z-index: 1001;
        }

        .hamburger span {
            width: 25px;
            height: 2px;
            background: #fff;
            margin: 4px 0;
            transition: all 0.3s ease;
        }

        .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 {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.98);
            backdrop-filter: blur(20px);
            z-index: 1000;
            transition: right 0.4s ease;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 80px 40px 40px;
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu nav {
            display: flex;
            flex-direction: column;
            gap: 30px;
            align-items: center;
            width: 100%;
        }

        .mobile-menu nav a {
            color: #fff;
            text-decoration: none;
            font-size: 28px;
            font-weight: 300;
            transition: all 0.3s;
            opacity: 0;
            transform: translateY(20px);
        }

        .mobile-menu.active nav a {
            opacity: 1;
            transform: translateY(0);
        }

        .mobile-menu.active nav a:nth-child(1) {
            transition-delay: 0.1s;
        }

        .mobile-menu.active nav a:nth-child(2) {
            transition-delay: 0.2s;
        }

        .mobile-menu.active nav a:nth-child(3) {
            transition-delay: 0.3s;
        }

        .mobile-menu.active nav a:nth-child(4) {
            transition-delay: 0.4s;
        }

        .mobile-menu nav a:hover {
            color: #ff3333;
            transform: translateX(10px);
        }

        .mobile-menu .contact-btn {
            margin-top: 20px;
            font-size: 18px;
        }
 @media (max-width: 768px) {
          
            .header-left nav,
            .header-right nav {
                display: none;
      
            }

            .hamburger {
                display: flex;
            }
        }

 @media (max-width: 880px) {
          
          nav a {
    font-size: 12px;

}
     .btn-ambica {
    font-size: 1.3rem;
     }
     .hero h1 {
    font-size: 54px;
    }
     .banner-comp-logo {
   
    max-width: 16em;
}
     .service-title {
    font-size: 2.5rem;
     }
     .framework-content h3 {
    font-size: 42px;
     }
     .footer-col a {
    font-size: 12px;
     }
     .newsletter input {
    font-size: 10px;
     }
     .newsletter button {
    background-color: #B67A1E;   
    padding: 10px 20px;
    font-size: 10px;
     }
        }

nav a,
nav a:after,
nav a:before {
  transition: all .5s;
}
nav.stroke a {
  position: relative;
}
nav.stroke a:after{
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 0%;
  content: '.';
  color: transparent;
  background: #B67A1E;
  height: 1.5px;
  

}
nav.stroke a:hover:after {
  width: 100%;
    
}

 .construction-modal-backdrop {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            backdrop-filter: blur(5px);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .construction-modal-backdrop.modal-active {
            display: flex;
            animation: fadeIn 0.3s ease forwards;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes fadeOut {
            from {
                opacity: 1;
            }
            to {
                opacity: 0;
            }
        }

        .construction-modal-card {
            background: rgb(0 0 0 / 80%);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            max-width: 500px;
            width: 100%;
            padding: 40px;
            position: relative;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.15);
            animation: slideUp 0.4s ease;
            opacity: 1;
        }

        @keyframes slideUp {
            from {
                transform: translateY(50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .modal-close-button {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.1);
            border: none;
            color: #fff;
            font-size: 24px;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            font-weight: 300;
        }

        .modal-close-button:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: rotate(90deg);
        }

        .modal-icon-wrapper {
            text-align: center;
            margin-bottom: 30px;
        }

        .modal-construction-icon {
            font-size: 60px;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        .modal-content-wrapper {
            text-align: center;
        }

        .modal-content-wrapper h2 {
            color: #ffffff;
            font-size: 28px;
            font-weight: 600;
            margin-bottom: 15px;
            letter-spacing: -0.5px;
        }

       .modal-content-wrapper p {
            color: #b8b8c7;
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .modal-progress-wrapper {
            width: 100%;
            height: 4px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 30px;
        }

        .modal-progress-bar {
            height: 100%;
            background: linear-gradient(90deg, #d4af37 0%, #B67A1E 100%);
            width: 65%;
            border-radius: 10px;
            animation: progress 2s ease-in-out infinite;
        }

        @keyframes progress {
            0%, 100% {
                width: 65%;
            }
            50% {
                width: 75%;
            }
        }

        .modal-contact-section {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 20px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            margin-bottom: 20px;
        }

        .modal-contact-section p {
            margin-bottom: 10px;
            font-size: 14px;
        }

        .modal-contact-section a {
            color: #B67A1E;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .modal-contact-section a:hover {
            color: #f4d03f;
        }

        @media (max-width: 600px) {
            .construction-modal-card {
                padding: 30px 20px;
            }

           .modal-content-wrapper h2 {
                font-size: 24px;
            }

            .modal-content-wrapper p {
                font-size: 14px;
            }

            .modal-construction-icon {
                font-size: 50px;
            }
        }

        .modal-action-button {
            margin-top: 20px;
            padding: 12px 30px;
            background: linear-gradient(90deg, #d4af37 0%, #f4d03f 100%);
            color: #1a1a2e;
            border: none;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .modal-action-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
        }

        /* Demo trigger button */
        .trigger-button {
            padding: 15px 40px;
            background: linear-gradient(90deg, #d4af37 0%, #f4d03f 100%);
            color: #1a1a2e;
            border: none;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
        }

        .trigger-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
        }

        .demo-content {
            text-align: center;
        }

        .demo-content h1 {
            color: #ffffff;
            margin-bottom: 20px;
            font-size: 32px;
        }

        .demo-content p {
            color: #b8b8c7;
            margin-bottom: 30px;
        }


/***********new added 18***********/
  header {

    left: 0px;
   }
p{
font-size: 16px;
}
.slide-image{
background-position: top;
}
.mission-icon-img{    
width: 100%;
    padding: 5px;
}
.marquee-content .logo-item img{
max-width:135px;
}

.modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(5px);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 9999;
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .modal-container {
            background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
            border-radius: 20px;
            max-width: 1100px;
            width: 100%;
            max-height: 90vh;
            overflow: hidden;
            position: relative;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(212, 175, 55, 0.2);
            transform: scale(0.9);
            transition: all 0.3s ease;
        }

        .modal-overlay.active .modal-container {
            transform: scale(1);
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(212, 175, 55, 0.1);
            border: 1px solid rgba(212, 175, 55, 0.3);
            color: #B67A1E;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            font-size: 24px;
            font-weight: 300;
        }

        .modal-close:hover {
            background: rgba(212, 175, 55, 0.2);
            transform: rotate(90deg);
        }

        .modal-content {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 0;
            height: 100%;
            background-color: #000;
        }

        .modal-image {
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #2a2a2a 0%, #1e1e1e 100%);
        }

        .modal-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .modal-image:hover img {
            transform: scale(1.05);
        }

        .modal-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(30, 30, 30, 0.3) 100%);
            pointer-events: none;
        }

        .modal-text {
            padding: 50px;
            overflow-y: auto;
            max-height: 90vh;
        }

        .modal-text::-webkit-scrollbar {
            width: 8px;
        }

        .modal-text::-webkit-scrollbar-track {
            background: rgba(212, 175, 55, 0.05);
            border-radius: 4px;
        }

        .modal-text::-webkit-scrollbar-thumb {
            background: rgba(212, 175, 55, 0.3);
            border-radius: 4px;
        }

        .modal-text::-webkit-scrollbar-thumb:hover {
            background: rgba(212, 175, 55, 0.5);
        }

        .modal-header {
            margin-bottom: 30px;
        }

        .modal-title {
            font-size: 36px;
            font-weight: 700;
            color:#B67A1E;
            margin-bottom: 15px;
            letter-spacing: -0.5px;
        }

        .modal-subtitle {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.6);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 500;
        }

        .modal-body {
            color: rgba(255, 255, 255, 0.85);
            font-size: 16px;
            line-height: 1.8;
        }

        .modal-body p {
            margin-bottom: 20px;
        }

        .modal-body strong {
            color: #B67A1E;
            font-weight: 600;
        }

        .modal-body ul {
            margin: 25px 0;
            padding-left: 0;
            list-style: none;
        }

        .modal-body li {
            position: relative;
            padding-left: 30px;
            margin-bottom: 15px;
        }

        .modal-body li::before {
            content: '▪';
            position: absolute;
            left: 0;
            color: #B67A1E;
            font-size: 20px;
            line-height: 1.8;
        }

        .modal-signature {
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid rgba(212, 175, 55, 0.2);
        }

        .signature-name {
            font-size: 22px;
            font-weight: 600;
            color: #B67A1E;
            font-style: italic;
        }

        .short-preview {
            display: block;
        }

        .full-content {
            display: none;
        }

        .full-content.active {
            display: block;
        }

        .read-more-btn {
            margin-top: 20px;
            background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
            color: #1a1a1a;
            border: none;
            padding: 12px 30px;
            font-size: 15px;
            font-weight: 600;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .read-more-btn:hover {
            transform: translateX(5px);
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
        }

        .read-more-btn::after {
            content: '→';
            transition: transform 0.3s ease;
        }

        .read-more-btn:hover::after {
            transform: translateX(3px);
        }

        .read-more-btn.expanded::after {
            content: '↑';
        }

        @media (max-width: 968px) {
            .modal-content {
                grid-template-columns: 1fr;
            }

            .modal-image {
                height: 300px;
            }

            .modal-text {
                padding: 30px;
            }

            .modal-title {
                font-size: 28px;
            }
        }

        @media (max-width: 640px) {
            .modal-text {
                padding: 25px;
            }

            .modal-title {
                font-size: 24px;
            }

            .modal-body {
                font-size: 15px;
            }

            .modal-close {
                top: 15px;
                right: 15px;
                width: 36px;
                height: 36px;
            }

            .modal-image {
                height: 250px;
            }
        }

        /**********alert box***************/
                .demo-container {
            text-align: center;
        }

        .demo-btn {
            padding: 15px 40px;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: #ffffff;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .demo-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
        }

        .alert-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(8px);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .alert-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .alert-box {
            background: rgba(15, 15, 15, 0.95);
            border-radius: 16px;
            padding: 0;
            max-width: 400px;
            width: 90%;
            box-shadow: 0 25px 70px rgba(0, 0, 0, 0.7);
            transform: scale(0.8) translateY(-40px);
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            border: 1px solid rgba(16, 185, 129, 0.2);
            position: relative;
            overflow: hidden;
        }

        .alert-overlay.active .alert-box {
            transform: scale(1) translateY(0);
        }

        .alert-icon-wrapper {
            padding: 40px 20px 20px;
            text-align: center;
            position: relative;
        }

        .icon-background {
            width: 90px;
            height: 90px;
            margin: 0 auto;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.15) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% {
                box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
            }
            50% {
                box-shadow: 0 0 0 20px rgba(16, 185, 129, 0);
            }
        }

        .checkmark-wrapper {
            width: 50px;
            height: 50px;
            position: relative;
        }

        .checkmark-svg {
            width: 100%;
            height: 100%;
        }

        .checkmark-circle {
            stroke-dasharray: 166;
            stroke-dashoffset: 166;
            stroke-width: 2.5;
            stroke: #10b981;
            fill: none;
            animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) 0.3s forwards;
        }

        .checkmark-check {
            transform-origin: 50% 50%;
            stroke-dasharray: 48;
            stroke-dashoffset: 48;
            stroke: #10b981;
            stroke-width: 2.5;
            fill: none;
            animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.7s forwards;
        }

        @keyframes stroke {
            100% {
                stroke-dashoffset: 0;
            }
        }

        .alert-content {
            padding: 0 30px 35px;
            text-align: center;
        }

        .alert-title {
            font-size: 22px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 12px;
            letter-spacing: 0.3px;
        }

        .alert-message {
            font-size: 15px;
            color: #9ca3af;
            line-height: 1.6;
            margin-bottom: 28px;
        }

        .alert-btn {
            width: 100%;
            padding: 14px;
            border: none;
            border-radius: 10px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: #ffffff;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 4px 15px rgba(16, 185, 129, 0.25);
        }

        .alert-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
        }

        .alert-btn:active {
            transform: translateY(0);
        }

        .code-info {
            color: #6b7280;
            font-size: 14px;
            margin-top: 20px;
        }

        /* Glow effect */
        .alert-box::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, #10b981, #059669, #10b981);
            border-radius: 16px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .alert-overlay.active .alert-box::before {
            opacity: 0.1;
        }



/* Dropdown Container */
.dropdown {
    position: relative;
}

/* Business link with arrow */
.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-toggle::after {
    content: '▼';
    font-size: 10px;
    transition: transform 0.3s;
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Main Dropdown Menu */
.dropdown-menu-ambica {
    position: absolute;
    top: 109%;
    left: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    min-width: 250px;
    padding: 20px 0;
    margin-top: 15px;
    border-radius: 8px;
    opacity: 12;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.dropdown:hover .dropdown-menu-ambica{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu-ambica a {
    display: block;
    padding: 12px 25px;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.dropdown-menu-ambica a:hover {
    background: rgba(182, 122, 30, 0.1);
    border-left-color: #B67A1E;
    padding-left: 30px;
}
/* Nested Submenu Container */
.submenu-item {
    position: relative;
}

.submenu-item > a::after {
    content: '→';
    position: absolute;
    right: 20px;
    font-size: 12px;
}

/* Nested Submenu */
.nested-submenu {
    position: absolute;
    left: 100%;
    top: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    min-width: 220px;
    padding: 15px 0;
    margin-left: 10px;
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.submenu-item:hover .nested-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.nested-submenu a {
    padding: 10px 25px;
}

/* Mobile Dropdown */
.mobile-menu .dropdown-menu-ambica {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin-top: 10px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-menu .dropdown.active .dropdown-menu-ambica {
    max-height: 500px;
}

.mobile-menu .nested-submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin-left: 20px;
    margin-top: 5px;
    max-height: 0;
    overflow: hidden;
}

.mobile-menu .submenu-item.active .nested-submenu {
    max-height: 300px;
}
