:root {
  --bg: #ffffff;
  --fg: #1b2839;
  --muted: #3a89a8;
  --brand: #3a89a8;
  --brand-hover: #1b2839;
  --brand-contrast: #ffffff;
  --section-alt: #aad4de;
  --shadow: rgba(0, 0, 0, 0.1);
  --header-h: 64px;
  --cta-primary: linear-gradient(90deg, var(--brand), var(--fg));
  /* layout + type scale (mobile-first) */
  --container-max: 1200px;
  --fs-xxs: 0.78rem; 
  --fs-xs: 0.9rem;
  --fs-sm: 1rem;
  --fs-md: 1.05rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.9rem;
  --btn-padding: 0.9rem 1.6rem;
  --radius: 8px;
}

/* GLOBAL RESET */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
scroll-behavior: smooth;
    position: sticky;
}
body {
  font-family: 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--fg);
   
}
body.lock-scroll {
  overflow: hidden;
  position: relative;
}
a {
  text-decoration: none;
  color: inherit;
}
/* Header & Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  background: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.css-logo__circle {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  background: #fff#1b2839;
  color: #00BCD4;
  border-radius: 50%;
  border: 3px solid #00BCD4;
  font-weight: 700;
  font-size: 22px;
  box-shadow: 0 4px 12px rgba(58, 137, 168, 0.18);
}
.name {
  margin-left: 15px;
  color: #00BCD4 ;
  font-weight: 700;
  font-size: 22px;
}
.nav-links { display: flex; gap: 20px;  flex-wrap: wrap;}
.nav-links a { color: black; transition: 0.3s;    font-weight: 500; text-decoration: none;  white-space: nowrap; }
.nav-links a:hover { color: #1e90ff; }
.nav-links { 
  display: none;
   gap: 1rem; 
   align-items: center; 
   margin-left: 300px; 
  }
.nav-links a {
  position: relative;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  color: black;
  text-decoration: none;  /
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;

  background-color: #00BCD4;
  transition: width 0.3s ease-in-out;
}

.nav-links a:hover {
  color: #00BCD4;
}
.nav-links a.active {
  color: #00BCD4;   
}

.nav-links a:hover::after {
  width: 100%;
}


.nav-links a.active::after {
  width: 100%;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;   
  }
}


.nav-buttons { display: flex; gap: 10px; }
.hamburger { display: none; font-size: 1.6em; cursor: pointer; color:black; }

@media (max-width: 768px) {
  .nav-links {
    position: absolute; top: 60px; right: 0; background: #ffffff;
    flex-direction: column; padding: 20px; width: 200px; display: none;
  }
  .nav-links.active { display: flex; }
  .nav-buttons { display: none; }
  .hamburger { display: block; }

}
@media (max-width: 900px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    background: white;
    width: 250px;
    padding: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
}


/* Sections (MOBILE FIRST) */
section {
  min-height: 100vh;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
section h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
section p {
  max-width: 90%;
  font-size: 1rem;
  line-height: 1.6;
}

/* ============= TABLET VIEW (≥768px) ============= */
@media (min-width: 768px) {
  .menu {
    display: flex;
  }
  .hamburger {
    display: none;
  }

  section {
    flex-direction: row;
    text-align: left;
    gap: 2rem;
  }
  section h2 {
    font-size: 2rem;
  }
  section p {
    max-width: 500px;
  }
}

/* ============= DESKTOP VIEW (≥1025px) ============= */
@media (min-width: 1025px) {
  .container {
    max-width: 1200px;
  }
  section {
    padding: 4rem 6rem;
    gap: 3rem;
  }
  section h2 {
    font-size: 2.5rem;
  }
  section p {
    max-width: 600px;
    font-size: 1.1rem;
  }
}

/* ============= WIDE DESKTOP (≥1440px) ============= */
@media (min-width: 1440px) {
  .container {
    max-width: 1400px;
  }
  section {
    padding: 5rem 8rem;
  }
}
/* ================================================================================================================================ */

/*  Home Section */
.home {
  position: relative;
  min-height: 100vh;  
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #ffffff;
  background-image: url("images/images.png");
  background-repeat: no-repeat;
  background-size: cover;   
  background-position: center;
  padding: 0;
  margin: 0; 
}

.hero-content {
  max-width: 800px;
  padding: 2rem;
  z-index: 1;
}

.hero-content h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.5;
  text-align: center;
  margin-left: 40px;
}

.hero-buttons {
  display: flex;
  flex-wrap:wrap ;
  justify-content: center;
  gap: 1rem;
}

.btn-primary,
.btn-secondary {
  padding: 0.9rem 2rem;
  border-radius: 8px;
  border: none;
  background: #3a89a8;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
 display: flex;
 flex-wrap:wrap ;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-primary a,
.btn-secondary a {
  text-decoration: none;
  color: inherit;
}

.btn-primary:hover,
.btn-secondary:hover {
  background: #ffffff;
  color: #1b2839;
}


/* About section */
#about {
  padding: 4rem 2rem;
  background: #FFFFFF;
  text-align: center;
}

.about-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: bold;
  color: #222;
  position: relative;
}

.about-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  margin: 0.5rem auto 0;
  background-color: #3a89a8;
  border-radius: 2px;
}


.about-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}


.about-card {
  flex: 1;
  min-width: 300px;
  max-width: 350px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden; 
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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


.about-content {
  padding: 1.5rem;
}

.about-content h2 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #3a89a8;
}

.about-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

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


/* Blogs Section */

#blogs {
  padding: 4rem 2rem;
  background: #f9f9f9;
  text-align: center;
}

.blog-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: bold;
  color: #222;
  position: relative;
}
.blog-title h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 22px;
}
.blog-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  margin: 0.5rem auto 0;
  background-color: #3a89a8;
  border-radius: 2px;
}


.blog-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}


.blog-card {
  flex: 1;
  min-width: 300px;
  max-width: 350px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}


.blog-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}


.blog-content {
  padding: 1.5rem;
  text-align: left;
}

.blog-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: #3a89a8;
}

.blog-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

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

.blog-link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: bold;
  color: #3a89a8;
  text-decoration: none;
  transition: color 0.3s;
}
.blog-link:hover {
  color: #1b2839;
}



/* Team Section */


#team {
  padding: 4rem 2rem;
  background: #f9f9f9;
  text-align: center;
}

.team-title {
  font-size: 2rem;   
  font-weight: bold;
  color: #222;
  position: relative;
}

.team-underline {
  width: 80px;
  height: 4px;
  margin: 0.8rem auto 2rem;
  background-color: #3a89a8;
  border-radius: 2px;
}

.team-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 2.5rem; 
  flex-wrap: wrap;
  max-width: 1400px;   
  margin: 0 auto;
  padding: 0 2rem;     
}


.team-card {
  flex: 1;
  min-width: 300px;   
  max-width: 400px;  
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;  
}


.team-img {
  width: 180px;   
  height: 180px;  
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.2rem;
}

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

.team-img {
  width: 180px;   
  height: 180px;  
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.2rem;
}

.team-info h3 {
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
  color: #333;
}

.team-role {
  font-size: 1rem;
  color: #3A89A8;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.team-info a {
  color: #00BCD4;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s;
}

.team-info a:hover {
  color: #1b2839;
}



/* Contact Section */


#contact {
  background: #FFFFFF;
}

.contact-title {
  font-size: 2rem;
  margin-top: 2rem;
  font-weight: bold;
  color: #222;
  position: relative;
}

.contact-underline {
  width: 80px;
  height: 4px;
  margin: 0.8rem auto 2rem;
  background-color: #3a89a8;
  border-radius: 2px;
}
.contact-grid {
  display: flex;
  flex-wrap: wrap;       
  gap: 30px;
  justify-content: center;
  align-items: flex-start;
}

.contact-container {
 display: grid;
  flex-wrap: wrap;  
  grid-template-columns: 1fr; 
  gap: 20px;
 
 justify-content: center;
  align-items: flex-start;
 

}

.form-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #222;
  text-align: center;
}

.contact-info {
   background: #F0F0F0;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-info h2 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.contact-info h3 {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: bold;
  text-align:start ;
  color: black;
}
.contact-info a{
  color: rgb(41, 40, 40);
  font-weight: 500;
  font-size: 17px;
}
.contact-info p {
  color: #444;
  margin-bottom: 1rem;
}

.contact-form {
  background: #F0F0F0;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form .form-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: bold;
  color: #222;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 500px;   
  margin: 0 auto;
}

.contact-form label {
  font-weight: 600;
  font-size: 0.95rem;

   text-align: center;

}

.contact-form input,
.contact-form textarea {
  width: 100%;
  max-width: 400px;   
  margin: 0 auto;     
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 0.9rem;
  display: block;
}

.contact-form small {
  color: #777;
  font-size: 0.8rem;
  text-align: center;
  display: block;
}

.contact-form button {
  background: #3A89A8;
  color: #fff;
  border: none;
  padding: 0.9rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  max-width: 200px;   
  margin: 0 auto;     
}

.contact-form button:hover {
  background: #07d49a;
}


/*Tablet / Small Desktop */
@media (min-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr 1fr; 
  }
}

/* Large Desktop */
@media (min-width: 1200px) {
  .contact-container {
    grid-template-columns: 1fr 1fr; 
  }
}


/* Demo Section */

#demo {
  background: #F0F0F0;
}
.demo-title {
  font-size: 2rem;
  margin-top: 2rem;
  font-weight: bold;
  color: #222;
  position: relative;
}
.demo-underline {
  width: 80px;
  height: 4px;
  margin: 0.8rem auto 2rem;
  background-color: #3a89a8;
  border-radius: 2px;
}
.demo-grid {
  display: flex;
  flex-wrap: wrap;        
  gap: 30px;
  
  justify-content: center;
  align-items: flex-start;
}

.form-container {
  flex: 1 1 400px;
  max-width: 600px;       
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

h1 {
  font-size: 20px;
  margin-bottom: 10px;
  text-align: center;
}

.subheadline {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
  text-align: center;
}

.demo-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.form-row.full {
  grid-template-columns: 1fr;
}

label {
  font-size: 14px;
  color: #333;
  margin-bottom: 5px;
  display: block;
  font-weight: bold;
}

input, textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

textarea {
  resize: vertical;
  min-height: 80px;
}

.btn {
  background: #3A89A8;
  color: #fff;
  font-size: 16px;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.btn:hover {
  background: #07d49a;
}

.privacy {
  font-size: 12px;
  color: #666;
  margin-top: 5px;
}
.success-message {
    display: none;              
    margin-top: 20px;
    padding: 15px;
    background: #e6ffed;
    border: 1px solid #34d399;
    border-radius: 6px;
    color: #065f46;
    font-size: 14px;
  }


.video-container {
  flex: 1 1 400px;        
  max-width: 600px;       
  width: 100%;           
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  box-sizing: border-box; 
}

.video-container iframe {
  width: 100%;            
  aspect-ratio: 16 / 9;   
  border-radius: 10px;
  border: none;
}

/* Responsive */
@media (max-width: 992px) {
  .form-row {
    grid-template-columns: 1fr; 
  }
}

@media (max-width: 768px) {
  .demo-grid {
    flex-direction: column; 
  }
  .video-container iframe {
    height: 300px; 
  }
}

/* 🖥️ Desktop View */
@media (min-width: 1200px) {
  .demo-grid {
    flex-direction: row;   
    align-items: stretch;  
  }

  .form-container,
  .video-container {
    flex: 1 1 50%;        
    max-width: 600px;      
  }

  .video-container iframe {
    height: 100%;          
    min-height: 400px;    
    border-radius: 10px;
  }
}


/* 📱 Mobile (default) */
.demo-grid {
  display: flex;
  flex-direction: column;  
  gap: 20px;
}

.form-container,
.video-container {
  width: 100%;             
  max-width: 100%;
}

/* 📟 Tablet (768px–1199px) */
@media (min-width: 768px) and (max-width: 1199px) {
  .demo-grid {
    flex-direction: row;   
    flex-wrap: wrap;
    gap: 20px;
  }

  .form-container,
  .video-container {
    flex: 1 1 48%;         
    max-width: 550px;
  }

  .video-container iframe {
    aspect-ratio: 16 / 9;  
    width: 100%;
    height: auto;
  }
}

/* 🖥️ Desktop (≥1200px) */
@media (min-width: 1200px) {
  .demo-grid {
    flex-direction: row;   
    align-items: stretch;  
    gap: 30px;
  }

  .form-container,
  .video-container {
    flex: 1 1 50%;         
    max-width: 600px;
  }

  .video-container iframe {
    width: 100%;
    height: 100%;         
    min-height: 500px;     
    border-radius: 10px;
  }
}


/* Whatspp popups */


.whatsapp-chat {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

.chat-btn {
  display: flex;
  align-items: center;
  background: #25d366;
  color: white;
  padding: 1px 8px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  position: relative;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.chat-btn:hover {
  transform: scale(1.05);
}

.chat-btn img {
  width: 28px;
  
  height: 28px;
  margin-left: 10px;
}

.notification {
  position: absolute;
  top: -5px;
  right: -5px;
  background: red;
  color: white;
  font-size: 12px;
  font-weight: bold;
  border-radius: 50%;
  padding: 4px 7px;
}



/* Service section */

 
body {
  font-family: Arial, sans-serif;
  margin:0;
  background:#f5f5f5;
  color:#222;
    }

.services {
  background:#fff;
  padding:4rem 1.5rem;
  text-align:center;
    }

.services-title {
  font-size: 2rem;
  margin-top: 2rem;
  font-weight: bold;
  color: #222;
  position: relative;
}

.services-underline {
  width: 80px;
  height: 4px;
  margin: 0.8rem auto 2rem;
  background-color: #3a89a8;
  border-radius: 2px;
}
.services h2 {
  font-size:clamp(1.6rem,4vw,2.2rem);
  margin-bottom:0.5rem;
  color:#222;
      
}

.head{
  text-align: center;
}
    
.services-subtitle {
  font-size:1rem;
  font-weight: 200;
  padding-top: 15px;
  color:#555;
  margin-bottom:2rem;
  text-align: center;
 }
 
.services-wrapper {
  display:flex;
  flex-direction:column;
  gap:2rem;
}

.services-grid {
  display:grid;
  grid-template-columns:1fr;
  gap:1.5rem;
}

.service-card {
  background:#fff;
  border-radius:12px;
  padding:2rem 1.5rem;
  box-shadow:0 4px 12px rgba(0,0,0,.06);
  transition:transform .25s ease, box-shadow .25s ease;
    }
.service-card:hover {
  transform:translateY(-6px);
  box-shadow:0 8px 24px rgba(0,0,0,.08);
}
.service-card .icon {
  font-size:2.5rem;
  margin-bottom:1rem;
}
.service-card h3 {
  font-size:1.25rem;
  font-weight:700;
  color:var(--brand);
  margin-bottom:.5rem;
}
.service-card p {
  font-size:1rem;
  margin-bottom:1rem;
  color:#333;
}
.btn.secondary {
  border:1px solid var(--brand);
  background:transparent;
  color:var(--brand);
  padding:.6rem 1.2rem;
  font-size:.95rem;
  border-radius:8px;
  cursor:pointer;
  transition:.3s;
}
.btn.secondary:hover {
  background:var(--brand);
  color:#fff;
}

.video iframe {
  width:100%;
  height:180px;
  object-fit:cover;
  border-radius:10px;
  margin-bottom:1rem;
  overflow-clip-margin: content-box;
  overflow: clip;
}

/* Responsive grid for cards */
@media (min-width:600px){
  .services-grid { grid-template-columns:repeat(2,1fr); }
}
@media (min-width:768px){
  .services-grid { grid-template-columns:repeat(3,1fr); }
}

/* Desktop Split Layout */
@media (min-width:992px){
  .services {
  text-align:left;
}
  .services-wrapper {
  flex-direction:row;
  align-items:center;
}
  .services-grid {
  flex:1;
  grid-template-columns:1fr; 
}
   video {
        flex:1;
}
}
@media (min-width:1200px){
      .services { padding:6rem 2rem; }
      .service-card { padding:2.5rem 2rem; }
    }
    
.service-card .card-img {
  width:100%;
  height:180px;
  object-fit:cover;
  border-radius:10px;
  margin-bottom:1rem;
}

.services-grid {
  display:grid;
  grid-template-columns:1fr;
  gap:1.5rem;
}

/* Tablet: 2 cards per row */
@media (min-width:600px){
  .services-grid { grid-template-columns:repeat(2,1fr); }
}

/* Desktop: 3 cards per row */
@media (min-width:992px){
  .services-grid { grid-template-columns:repeat(3,1fr); }
  .video {
    max-width: 500px;        
    margin: 2rem auto;
    padding: 0;
  }

  .video iframe {
    width: 500px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
  }
}

/* ===== FOOTER ===== */
.footer {
  background: #1b1b1b;
  color: #f5f5f5;
  font-family: Arial, sans-serif;
  padding-top: 3rem;
}


.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  padding: 0 2rem 2rem;
}

.footer-column h3 {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #ffffff;
}


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

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column a {
  text-decoration: none;
  color: #bbbbbb;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #3a89a8; 
}

.footer-logo {
  width: 150px;
  
  margin-bottom: 0.8rem;
}

.footer-tagline {
  font-size: 0.9rem;
  color: #ccc;
  text-align: center;
  line-height: 1.4;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #bbbbbb;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #3a89a8;
}

.social-icon {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem;
  font-size: 0.85rem;
  color: #888;
  margin-top: 1rem;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    text-align: center;
  }

  .footer-social a {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #bbbbbb; 
  transition: color 0.3s ease;
}

.social-icon {
  width: 20px;
  height: 20px;
  transition: fill 0.3s ease;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #bbbbbb;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.social-icon {
  width: 20px;
  height: 20px;
  transition: fill 0.3s ease;
  fill: currentColor;
}


/* Brand Colors on Hover */
.footer-social a:nth-child(1):hover { 
  color: #0A66C2;
 } 
.footer-social a:nth-child(2):hover { 
  color: #FF0000; 
} 


/* why choose us */
.value-proposition {
  background: #f7f7f7;
  padding: 60px 20px;
}

.value-proposition .container {
  display: flex;
  align-items: center;
  justify-content: space-between; 
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap; 
}

.vp-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.vp-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 10px;
}

.vp-text {
  flex: 1;
}

.vp-text h1 {
  font-size: 2rem;
  margin-bottom: 25px;
  font-weight: bold;
}

.highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.highlights p {
  font-size: 1.2rem;
  padding: 15px 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  margin: 0;
  text-align: left;
}

/* 📱 Mobile stacked */
@media (max-width: 768px) {
  .value-proposition .container {
    flex-direction: column;
    text-align: center;
  }

  .vp-text h1 {
    text-align: center;
  }

  .highlights p {
    text-align: center;
  }
}











