* {
  font-family: "Montserrat", sans-serif;
}




/* Navbar Styling */
        .navbar {
            background-color: white !important;
            min-height: 80px;  
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            padding: 10px 20px;
        }

        
        .logo {
            width: 180px;   
            height: 60px;   
            background-image: url('./images/logo.webp'); 
            background-size: contain;
            background-repeat: no-repeat;
            background-position: left center;
        }

        
        #nav-btns {
            background: transparent;
            color: rgb(17, 17, 58);
            border: none;
            font-size: 14px;
            font-weight: 600;
            white-space: nowrap;
            padding: 8px 16px;
            transition: all 0.3s ease;
            position: relative;
        }

        /* Hover effect for menu buttons */
        #nav-btns::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 5px;
            left: 50%;
            background-color: rgb(17, 17, 58);
            transition: all 0.3s;
            transform: translateX(-50%);
        }

        #nav-btns:hover::after {
            width: 80%;
        }

        #nav-btns:hover {
            color: #4da6ff;
        }

        
        #nav-career { 
            background-color: rgb(17, 17, 58);
            color: white;
            border-radius: 50px;
            border: 1px solid rgb(17, 17, 58);
            font-size: 10px;
            font-weight: 600;
            height: 40px;
            padding: 0 20px;
            transition: all 0.3s;
        }

        #nav-career:hover{
            background-color: white;
            color: rgb(17, 17, 58); 
        }

        #nav-talk{ 
            background-color: white;
            color: rgb(17, 17, 58);
            border: 1px solid rgb(17, 17, 58);
            border-radius: 50px;
            font-size: 11px;
            font-weight: 600;
            height: 40px;
            padding: 0 20px;
            transition: all 0.3s;
        }
        #nav-talk:hover{
            background-color: rgb(17, 17, 58);
            color: white; 
        }

        
        .custom-offcanvas {
            height: auto !important;  
            min-height: 40vh;
            max-height: 80vh;
            background-color: #fff;
            border-bottom: 4px solid rgb(17, 17, 58);
        }

        .offcanvas-header {
            border-bottom: 1px solid #eee;
            padding: 20px 30px;
        }

        .offcanvas-title {
            font-weight: 700;
            color: rgb(17, 17, 58);
            letter-spacing: 1px;
        }

        .offcanvas-body {
            padding: 30px 50px;
        }

        .offcanvas-content h4 {
            color: rgb(17, 17, 58);
            font-size: 18px;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .offcanvas-content ul {
            list-style: none;
            padding: 0;
        }
        
        .offcanvas-content ul li {
            margin-bottom: 8px;
            color: #555;
            font-size: 15px;
            padding-left: 15px;
            border-left: 2px solid #eee;
        }

         
        @media (max-width: 992px) {
            .navbar {
                padding: 10px 15px; 
            }
             
            .center-nav-container {
                display: flex;
                justify-content: center;
                flex-wrap: wrap;
                gap: 5px;
            }
        }

        
        @media (max-width: 768px) {
            .navbar {
                min-height: auto;
                padding: 15px 10px;
            }

            .navbar .container-fluid {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }

          
            .logo {
                width: 150px;
                height: 50px;
                background-position: center;
            }

            
            .center-nav-container {
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                gap: 10px;  
                width: 100%;
            }

            #nav-btns {
                font-size: 12px;
                padding: 8px 12px;
                background-color: #ffffff; 
                border-radius: 6px;
                flex: 1 1 40%;  
                text-align: center;
            }
            
            #nav-btns:hover::after {
                width: 0;  
            }

            
            .right-nav-container {
                width: 100%;
                justify-content: center;
                margin-top: 5px;
            }

            #nav-career, #nav-talk {
                font-size: 11px;
                height: 36px;
                padding: 0 15px;
                width: 45%;  
                display: flex;
                align-items: center;
                justify-content: center;
            }
        }
     

 /*heroooooooooooooooooooooooooooo*/
 
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;               
  overflow: hidden;
  background: none;
}
 
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;            
  z-index: 1;
}
 
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);  
  z-index: 2;
}


.hero-content {
  position: relative;
  z-index: 3;
  color: #fff;
  padding-left: 50px;
  padding-top: 120px;
  max-width: 600px;
  background: none;
}

.hero-content h1 {
  background: none;
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: bolder;
}

.hero-content p {
  background: none;
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.hero-content .btn {
  padding: 10px 25px;
  font-size: 1.2rem;
}

#get-in-touch {
  background-color: rgb(17, 17, 58);
  color: white;
  border-radius: 50px;
  border: none;
  font-size: 17px;
  font-weight: bold;
  letter-spacing: 0.1px;
  height: 50px;
  width: 170px;
}

#get-in-touch:hover {
  background-color: rgb(255, 255, 255);
  color: rgba(0, 0, 0, 0.689);
  border: 0.5px rgb(17, 17, 58) solid;
}

 
@media (max-width: 992px) {
  .hero-section {
    height: 90vh;
  }

  .hero-content {
    padding-left: 30px;
    padding-top: 130px;
    max-width: 500px;
  }

  .hero-content h1 {
    font-size: 2.4rem;
  }

  .hero-content p {
    font-size: 1.2rem;
  }

  #get-in-touch {
    font-size: 15px;
    height: 46px;
    width: 150px;
  }
}

 
@media (max-width: 768px) {
  .hero-section {
    height: 320px;         
  }

  .hero-content {
    padding-top: 80px;
    padding-left: 20px;
    padding-right: 20px;
    max-width: 100%;
    text-align: left;
  }

  .hero-content h1 {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 12px;
  }

  .hero-content p {
    font-size: 0.95rem;
    margin-bottom: 18px;
  }

  #get-in-touch {
    font-size: 13px;
    height: 38px;
    width: 135px; 
  }
}

 
@media (max-width: 480px) {
  .hero-section {
    height: 300px;       
  }

  .hero-content {
    padding-top: 70px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-content p {
    font-size: 0.85rem;
  }

  #get-in-touch {
    font-size: 11px;
    height: 34px;
    width: 125px; 
  }
}


 /*moviingggggggggg logoo*/
 .logo-strip {
  background: #ffffff;          
  padding: 30px 0;
  overflow: hidden;
}
 
.logo-row {
  overflow: hidden;
  white-space: nowrap;
  margin-bottom: 15px;
  position: relative;
}
 
.logo-track {
  display: inline-flex;
  align-items: center;
  gap: 40px;
}
 
.logo-track img {
  height: 40px;            
  width: auto; 
  opacity: 0.9;
}
 
.logo-row-left .logo-track {
  animation: marquee-left 8s linear infinite;
}
 
.logo-row-right .logo-track {
  animation: marquee-right 8s linear infinite;
}
 
@keyframes marquee-right {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
 
@keyframes marquee-left {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
    
/* serviceee *//* ========================
   SERVICES SECTION (GRID FIX)
   ======================== */
.services-section {
    background: #ffffff;
    padding: 80px 20px;
    color: #111;
    text-align: center;
}

.services-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 40px;
    color: var(--dark); /* Using theme color */
}

/* --- GRID SYSTEM --- */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- CARD STYLING --- */
.service-card {
    position: relative;
    width: 260px;  /* Fixed Width for Desktop */
    height: 350px; /* Fixed Height */
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    background: #000; /* Fallback */
    transition: transform 0.3s ease;
}

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

/* Background Images */
.service-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
    z-index: 1;
}

/* Image URLs (Apni images yahan lagana) */
.card-1 .service-bg { background-image: url("./images/web.webp"); }
.card-2 .service-bg { background-image: url("./images/app.webp"); }
.card-3 .service-bg { background-image: url("./images/PMS.webp"); }
.card-4 .service-bg { background-image: url("./images/marketing.webp"); }
.card-5 .service-bg { background-image: url("./images/crm.webp"); }
.card-6 .service-bg { background-image: url("./images/6a327a49c84f482a9fd9ba0451a31765.webp"); }
.card-7 .service-bg { background-image: url("./images/5c77ba78b22044d5ba75652b75559eec.webp"); }

.service-card:hover .service-bg {
    transform: scale(1.1); /* Zoom effect */
}

/* Overlay */
.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.1));
    z-index: 2;
}

/* Text */
.service-name {
    position: absolute;
    bottom: 30px;
    left: 0; 
    right: 0;
    z-index: 3;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

/* Buttons Container */
.services-actions {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

#viewMoreBtn, #viewLessBtn {
    padding: 12px 30px;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
}

/* ========================
   MOBILE RESPONSIVE
   ======================== */
@media (max-width: 991px) {
    /* Tablet: 3 cards row */
    .service-card {
        width: 30%; 
    }
}

@media (max-width: 768px) {
    /* Mobile: 2 Cards Side-by-Side (Important) */
    .services-grid {
        gap: 15px;
        padding: 0 10px;
    }

    .service-card {
        width: 47%; /* Almost half width minus gap */
        height: 220px; /* Thora chota card */
    }

    .service-name {
        font-size: 0.9rem;
        bottom: 15px;
    }
    
    .services-section {
        padding: 50px 0;
    }
}
 
.industries-section {
  padding: 70px 20px 90px;
  background:none;        
  color:  rgb(17, 17, 58);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
}

 
.industries-preview {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
  opacity: 0.08;        
}
.industries-preview img {
  max-width: 900px;
  width: 100%;
  height: auto;
  border-radius: 6px;
}
 
.industries-title {
  font-size: 38px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: center;
  margin: 12px auto 48px;
  max-width: 1100px;
}
 
.industries-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 60px;   
  align-items: start;
}
 
.industry-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  position: relative;
  min-height: 48px;
}
 
.industry-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: rgba(0,0,0,0.12);
}
 
.industry-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  object-fit: contain;
  filter: hue-rotate(140deg) saturate(.9) brightness(1.05); 
}
 
.industry-text {
  font-size: 18px;
  font-weight: normal;
  color: rgb(17, 17, 58);
}
 
.industries-grid > .industry-item:nth-child(2n) .industry-icon {
  margin-left: 6px;
}
 
@media (max-width: 900px) {
  .industries-title { font-size: 36px; margin-bottom: 24px; }
  .industries-grid { grid-template-columns: 1fr; gap: 18px; padding: 0 12px; }
  .industries-preview { display: none; } 
}

#viewMoreBtn{
background-color:  rgb(17, 17, 58);
    color: white;
    border-radius: 50px;
    border: none;
    font-size: 17px;
    font-weight: bold;
    letter-spacing: 0.1px;
height: 50px;
width: 170px;

}

 
#viewMoreBtn:hover{
    background-color: rgb(255, 255, 255);
    color: rgba(0, 0, 0, 0.689); 
    border: 0.5px  rgb(17, 17, 58) solid;
 }

 #viewLessBtn{
background-color:  rgb(17, 17, 58);
    color: white;
    border-radius: 50px;
    border: none;
    font-size: 17px;
    font-weight: bold;
    letter-spacing: 0.1px;
height: 50px;
width: 170px;

}

 
#viewLessBtn:hover{
    background-color: rgb(255, 255, 255);
    color: rgba(0, 0, 0, 0.689); 
    border: 0.5px  rgb(17, 17, 58) solid;
 }

 .btn{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 100%;
 }

 #industry-btn{
   background-color:  rgb(17, 17, 58);
    color: white;
    border-radius: 50px;
    border: none;
    font-size: 17px; 
    letter-spacing: 0.1px;
height: 50px;
width: 170px;
 }
 #industry-btn:hover{
    background-color: rgb(255, 255, 255);
    color: rgba(0, 0, 0, 0.689); 
    border: 0.5px  rgb(17, 17, 58) solid;
 }

.section {
  background: none;
  display: flex;
  padding: 50px;
  color: #fff;
  position: relative;
  gap: 30px;
}
 
.left-text {
  flex: 1;
  padding-right: 20px;
}

.left-text h1 {
  font-size: 48px;
  margin-bottom: 20px;
  color: rgb(17, 17, 58);
  font-weight: bold;
}

.left-text p {
  font-size: 22px;
  line-height: 1.5;
  background: linear-gradient(90deg, rgb(8, 37, 37), rgb(17, 17, 58));
  -webkit-background-clip : text;
  -webkit-text-fill-color: transparent;
}

 
.right-cards {
  flex: 2;
  display: grid;
  grid-template-areas:
    "a a a"
    "b c d"
    "e f f";
  grid-gap: 20px;
}
 
.card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 15px rgba(0,0,0,0.3);
  transition: transform 0.3s;
  width: 100%;
  min-height: 120px;
  display: flex;
  align-items: flex-start;
  padding: 15px;
  background-size: cover;
  background-position: center;
}
 
.card:nth-child(1) { background-image: url('./images/89ae8d0a3f114581ae738349a314cd06.webp'); }
.card:nth-child(2) { background-image: url('./images/team.webp'); }
.card:nth-child(3) { background-image: url('./images/network.webp'); }
.card:nth-child(4) { background-image: url('./images/sat.webp'); }
.card:nth-child(5) { background-image: url('./images/app.webp'); }
.card:nth-child(6) { background-image: url('./images/web.webp'); }
 
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 1;
}
 
.card h3 {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.card:hover { transform: translateY(-8px); }
 
.card:nth-child(1) { grid-area: a; }
.card:nth-child(2) { grid-area: b; }
.card:nth-child(3) { grid-area: c; }
.card:nth-child(4) { grid-area: d; }
.card:nth-child(5) { grid-area: e; }
.card:nth-child(6) { grid-area: f; }
 
@media (max-width: 768px) {
  .section {
    padding: 30px 20px;
    flex-direction: column;
    gap: 20px;
  }

  .left-text h1 { font-size: 32px; }
  .left-text p { font-size: 16px; }
 
  .right-cards {
    display: grid;
    grid-template-areas:
      "a"
      "b c"
      "d e f";
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(90px, auto);
    grid-gap: 12px;
  }
 
  .card {
    min-height: 90px;
    padding: 10px;
  }

  .card h3 { font-size: 14px; }
}
 
@media (max-width: 480px) {
  .section { padding: 25px 15px; }

  .right-cards {
    grid-template-areas:
      "a"
      "b c"
      "d e f";
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
  }

  .card { min-height: 80px; padding: 8px; }
  .card h3 { font-size: 13px; }
}

/*achievement*/

/* ========================
   ACHIEVEMENTS SECTION
   ======================== */
.achievements-section {
  display: flex;
  align-items: center; /* Vertically center align */
  justify-content: space-between;
  padding: 80px 10%; /* Side padding percentage mein taake responsive ho */
  background-color: #ffffff;
  color: #333;
  gap: 60px;
  flex-wrap: wrap; /* Mobile par stack ho jaye */
}

/* --- LEFT SIDE (TEXT) --- */
.achievements-left {
  flex: 1;
  min-width: 300px; /* Taake text squish na ho */
}

.achievements-left h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
}

.achievements-left h2 {
  font-size: 24px;
  color: var(--primary); /* Green Theme use karo agar hai, warna #0a870e */
  margin-bottom: 20px;
  font-weight: 600;
}

.achievements-left p {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
}

/* --- RIGHT SIDE (STATS GRID) --- */
.achievements-right {
  flex: 1;
  min-width: 300px;
  
  /* IMPORTANT: Flex ki jagah Grid use kiya hai perfect alignment k liye */
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2 Equal Columns */
  gap: 40px; /* Beech ka fasla */
}

/* Individual Stat Box */
.stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Left align */
  justify-content: center;
}

.stat .number {
  font-size: 42px; /* Size thora bara kiya */
  font-weight: 800;
  color: rgb(17, 17, 58);
  line-height: 1;
  margin-bottom: 8px;
}

.stat .desc {
  font-size: 15px;
  color: #555;
  font-weight: 500;
}

/* ========================
   MOBILE RESPONSIVE
   ======================== */
@media (max-width: 991px) {
  .achievements-section {
    flex-direction: column; /* Upar Neeche */
    padding: 60px 20px;
    gap: 40px;
  }

  .achievements-left {
    width: 100%;
    text-align: center; /* Mobile par text center acha lagta hai */
  }
  
  .achievements-left h1 { font-size: 28px; }
  .achievements-left h2 { font-size: 20px; }

  /* Right Side Mobile */
  .achievements-right {
    width: 100%;
    gap: 30px;
    /* Mobile par bhi 2 columns rahenge jo neat lagenge */
    grid-template-columns: 1fr 1fr; 
  }

  .stat {
    align-items: center; /* Stats center align */
    text-align: center;
  }
  
  .stat .number { font-size: 32px; }
}

/**/
.careers-section {
  display: flex;
  flex-wrap: wrap;
  padding: 30px 20px;
  gap: 50px;
  background-color: #ffffff;  
  align-items: center;
}

.careers-left {
    background: none;
  flex: 1;
  min-width: 300px;
}

.careers-left video {
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.careers-right {
    background: none;
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.careers-right h1 {
    background: none;
  font-size: 36px;
  margin-bottom: 15px;
}

.careers-right p {
    background: none;
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 25px;
}

.join-btn {
  background-color:  rgb(17, 17, 58);
    color: white;
    border-radius: 50px;
    border: none;
    font-size: 17px;
    font-weight: bold;
    letter-spacing: 0.1px;
height: 50px;
width: 170px;

}

.join-btn:hover {
  background: rgb(17, 17, 58);
  transform: translateY(-3px);
}
/*CEOOOOOOOOOOOOOooo*/
/* ========================
   CEO MESSAGE SECTION (Fixed: White & Center)
   ======================== */
.ceo-message-section {
    padding: 80px 20px;
    background-color: #ffffff; /* Ab ye Pure White hai */
    
    /* Centering Logic */
    display: flex;
    justify-content: center; /* Horizontally Center */
    align-items: center; /* Vertically Center */
    text-align: center;
    width: 100%;
}

/* Content Wrapper */
.ceo-content-wrapper {
    max-width: 900px; /* Thora chora kiya taake congested na lage */
    width: 100%;
    margin: 0 auto; /* Ye ensure karega ke ye beech mein rahe */
    display: flex;
    flex-direction: column;
    align-items: center; /* Text aur elements ko center karta hai */
}

/* Title Style */
.section-heading {
    font-size: 36px; /* Font thora bara kiya */
    font-weight: 800;
    color: #11113a;
    margin-bottom: 30px;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

/* Title k neechay choti si line */
.section-heading::after {
    content: '';
    width: 80px;
    height: 4px;
    background-color: var(--primary, #0a870e); 
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Message/Quote Style */
.quote-box {
    position: relative;
    margin-bottom: 40px;
    padding: 0 20px; /* Side se thora gap */
}

.ceo-statement {
    font-size: 22px; /* Text thora bara kiya */
    line-height: 1.6;
    color: #333; /* Thora dark kiya taake white pe saaf dikhe */
    font-weight: 500;
    font-style: italic;
    position: relative;
    z-index: 1;
}

/* Signature Block */
.ceo-signature {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.ceo-name {
    font-size: 26px;
    font-weight: 800;
    color: #11113a;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* LinkedIn Button Style */
.linkedin-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 50px;
    background-color: #fff;
    border: 1px solid #eee; /* Halka border */
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.linkedin-btn img {
    width: 24px;
    height: 24px;
}

.linkedin-btn span {
    font-size: 15px;
    font-weight: 600;
    color: #0077b5; 
}

.linkedin-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    background-color: #f0f7ff; /* Hover pr halka blue tint */
}

/* ========================
   MOBILE RESPONSIVE
   ======================== */
@media (max-width: 768px) {
    .ceo-message-section {
        padding: 60px 20px;
    }

    .section-heading {
        font-size: 28px;
    }

    .ceo-statement {
        font-size: 18px;
        line-height: 1.5;
    }

    .ceo-name {
        font-size: 22px;
    }
}
  /*ontactttttttttttttttt*/

     
        #unique-contact-section input:focus,
        #unique-contact-section select:focus,
        #unique-contact-section textarea:focus {
            border-color: rgb(17, 17, 58) !important;
            background: #ffffff !important;
            box-shadow: 0 0 0 2px rgba(17, 17, 58, 0.1) !important;
        }
        
        #unique-contact-section .checkbox-item:hover {
            background-color: #eef2f6 !important;
        }
        
        #unique-contact-section button:hover {
            background-color: rgb(30, 30, 90) !important;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(17, 17, 58, 0.2);
        }

        #unique-contact-section a.learn-btn:hover {
            gap: 12px !important;
        }
 
        @media (max-width: 900px) {
            #unique-contact-section {
                padding: 40px 20px !important;
            }
            .contact-right-col {
                position: static !important;
            }
        }

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

.site-footer {
  background-color: #ffffff;
  color: #333;
  font-family: Arial, sans-serif;
  border-top: 4px solid  rgb(17, 17, 58); 
  width: 100%;
  padding: 60px 40px 30px 40px;
  box-sizing: border-box;
  margin: 0;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
}

.footer-block {
  flex: 1;
  min-width: 220px;
}

.footer-block h3 {
  font-size: 20px;
  color:  rgb(17, 17, 58); 
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-block p,
.footer-block ul,
.footer-block a {
  font-size: 16px;
  color: #333;
  text-decoration: none;
  margin-bottom: 8px;
  display: block;
}

.footer-block ul {
  list-style: none;
  padding: 0;
}

.footer-block ul li a:hover {
  color: rgb(17, 17, 58);
  text-decoration: underline;
  transition: 0.3s;
}

.social-icons a {
  display: inline-block;
  margin-right: 15px;
  transition: transform 0.3s ease;
}

.social-icons a img {
  width: 32px;
  height: 32px;
}

.social-icons a:hover {
  transform: scale(1.3);
}

.footer-bottom {
  margin-top: 40px;
  text-align: center;
  color: #666;
  font-size: 14px;
  border-top: 1px solid #e0e0e0;
  padding-top: 15px;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-block {
    min-width: 100%;
    margin-bottom: 20px;
  }

  .social-icons a {
    margin-right: 10px;
    margin-bottom: 10px;
  }
}


/*whatsappppppp*/
 .whatsapp-btn {
            position: fixed;
            bottom: 40px;   
            right: 40px;    
            width: 60px;
            height: 60px;
            background-color: #25d366; 
            color: white;
            border-radius: 50%;
            text-align: center;
            box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
            z-index: 9999;  
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            text-decoration: none;
             
            animation: pulse-animation 2s infinite;
        }

        .whatsapp-btn:hover {
            background-color: #1ebe57;  
            transform: scale(1.1);  
            box-shadow: 2px 2px 15px rgba(37, 211, 102, 0.6);
        }
 
        .whatsapp-icon {
            width: 35px;
            height: 35px;
            fill: white;
        }
 
        @keyframes pulse-animation {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }
 
        @media (max-width: 768px) {
            .whatsapp-btn {
                width: 50px;
                height: 50px;
                bottom: 20px;
                right: 20px;
            }
            .whatsapp-icon {
                width: 28px;
                height: 28px;
            }
        }



        

        /*storyyyyyyyyyy*/

        /* --- OFFCANVAS CONTAINER --- */
.custom-offcanvas {
    height: 90vh !important; /* Screen ka 90% cover karega */
    background-color: #fff;
    font-family: 'Poppins', sans-serif; /* Clean Font */
}

.offcanvas-header {
    padding: 20px 40px;
    border-bottom: 1px solid #eee;
}

.offcanvas-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
}

.offcanvas-body {
    padding: 60px 40px;
    overflow-y: auto;
}

/* --- TEXT STYLING --- */
.main-heading {
    font-size: 38px;
    font-weight: 800;
    color: #111;
    margin-bottom: 30px;
    line-height: 1.2;
}

.story-paragraphs p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
    text-align: justify; /* Text neat lagega */
}

.story-paragraphs strong {
    color: #201c4a;
    font-weight: 700;
}

.highlight-text {
    margin-top: 30px;
    font-size: 18px !important;
    font-weight: 600;
    color: #335ea4 !important; /* Green Color for Final Line */
    border-left: 4px solid #335ea4 ;
    padding-left: 15px;
}

/* --- IMAGE GRID STYLING --- */
.images-grid {
    position: relative;
    padding-left: 20px;
}

.img-box img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.img-box:hover img {
    transform: scale(1.02); /* Thora zoom hover par */
}

/* Bari Image Size */
.main-pic img {
    height: 320px;
    width: 100%;
}

/* Choti Images Size */
.sub-pic {
    flex: 1;
}

.sub-pic img {
    height: 180px; /* Choti height */
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 991px) {
    .custom-offcanvas {
        height: 100vh !important;
    }

    .offcanvas-body {
        padding: 30px 20px;
    }

    .main-heading {
        font-size: 32px;
    }

    .images-grid {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .main-pic img {
        height: 250px;
    }
    
    .sub-pic img {
        height: 140px;
    }
}
























/* ========================
   SCROLL VIDEO ANIMATION
   ======================== */
.video-scroll-section {
    /* Section ki height bohot lambi rakhi hai taake scroll karne ka time mile */
    height: 300vh; 
    position: relative;
    background-color: var(--light); /* Cream BG */
}

/* Sticky Container (Jo screen par ruka rahega) */
.sticky-wrapper {
    position: sticky;
    top: 0;
    height: 100vh; /* Full screen height */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Main Content Container */
.content-container {
    width: 90%;
    max-width: 1200px;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.8s ease-in-out; /* Smooth Movement */
}

/* --- VIDEO BOX --- */
.video-box {
    width: 100%; /* Shuru mein Full Width */
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    position: relative;
    z-index: 2;
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1); /* Smooth Animation */
}

.main-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- TEXT BOX (Hidden Initially) --- */
.text-box {
    width: 0%; /* Shuru mein gayab */
    opacity: 0;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    transition: all 0.8s ease-in-out;
    white-space: nowrap; /* Text tootay na jab chupa ho */
}

.sub-heading {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.text-box h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
}

.text-box p {
    color: #555;
    margin-bottom: 20px;
    white-space: normal; /* Wapis normal */
    line-height: 1.6;
}

.features-list .f-item {
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--dark);
}

.features-list i {
    color: var(--primary);
    margin-right: 10px;
}


/* --- ANIMATION ACTIVE STATE (JS add karega) --- */
.video-scroll-section.active .video-box {
    width: 50%; /* Video आधी ho jaye */
    transform: translateX(0);
}

.video-scroll-section.active .text-box {
    width: 50%; /* Text aadha hissa le le */
    opacity: 1;
    padding-left: 50px; /* Gap */
}


/* ========================
   MOBILE RESPONSIVE (Disable Animation)
   ======================== */
@media (max-width: 991px) {
    .video-scroll-section {
        height: auto; /* Scroll khatam */
        padding: 50px 0;
    }

    .sticky-wrapper {
        position: relative;
        height: auto;
        top: auto;
    }

    .content-container {
        flex-direction: column;
        height: auto;
        width: 100%;
        padding: 0 20px;
    }

    /* Mobile pe seedha dikhao */
    .video-box {
        width: 100% !important;
        height: 300px;
        margin-bottom: 30px;
    }

    .text-box {
        width: 100% !important;
        opacity: 1 !important;
        padding-left: 0 !important;
        white-space: normal;
    }
}


