/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background-color: #f4f7f9;
  overflow-x: hidden;
}


/* Header Section */
.header {
  position:sticky;
  top: 0;
  left: 0;
  z-index: 1000;
  height: 90px;
  width: 100%;
  background-color: #143463;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
  padding-left: 0;
  
}

/* Make header auto-resize to logo */
.header .brand img {
  height: auto;
  width: 180px; /* adjust based on your logo aspect ratio */
  display: block;
  object-fit: contain;
}


/* Menu Toggle for Mobile */
.menu-toggle {
  font-size: 24px;
  cursor: pointer;
  color: #fff;
  display: none;
  z-index: 1101;
}

/* Desktop Navigation */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.desktop-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.desktop-nav ul li {
  margin-left: 20px;
}

.desktop-nav ul li a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  transition: color 0.3s ease;
}

.desktop-nav .contact-btn {
  margin-left: 20px;
}

/* Contact Button */
.contact-btn {
  display: flex;
  align-items: center;
  background-color: #2ecc71;
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px; /* Increased for rounded shape */
  text-decoration: none;
  transition: background-color 0.3s ease;
  overflow: hidden; /* Ensure content fits within rounded edges */
  min-width: 200px; /* Minimum width to maintain shape with content */
}



.contact-info {
  margin-right: 10px;
  flex-grow: 1; /* Allow text to expand within the button */
}

.contact-info .phone {
  font-size: 16px;
  font-weight: 600;
}

.contact-info .tag {
  font-size: 15px;
}

.contact-btn img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
  margin-left: 1px; /* Space between text and image */
}

/* Mobile Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  left: -250px;
  width: 250px;
  height: 100%;
  background-color: #131a16;
  padding-top: 60px;
  transition: left 0.3s ease;
  z-index: 1000;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.sidebar.open {
  left: 0;
}

.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar ul li {
  padding: 15px 20px;
}

.sidebar ul li a {
  text-decoration: none;
  color: #ecf0f1;
  font-weight: 500;
  transition: color 0.3s ease;
}

.sidebar ul li a:hover {
  color: #e74c3c;
}

.sidebar .contact-btn {
  border-radius: 25px; /* Consistent rounding for mobile */
  min-width: 180px; /* Adjusted for mobile width */
  padding: 8px 15px; /* Adjusted padding for mobile */
}

/* Overlay for Mobile */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 900;
}

.overlay.active {
  display: block;
}

/* Responsive Design */
@media (max-width: 900px) {
  .header {
    padding: padding: 0 20px 10px;

  }

  .brand img {
    height: 45px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .sidebar ul li {
    padding: 12px 15px;
  }

  .contact-btn {
    padding: 8px 15px; /* Adjusted for mobile */
  }
}

/* Hero Section */
.hero {
  height: 70vh;
  background: url('images/hero.png') no-repeat center center/cover;
  
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

/* Overlay for better text visibility */
.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.8);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.hero p {

  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* Button */
.hero-btn {
  background: #ffc107;
  color: #000;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}

.hero-btn:hover {
  background: #e0a800;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.3rem;
  }

  .hero p {
    font-size: 1rem;
  }
}


/* our speciality */

.why-us-section {
    padding: 50px 20px;
    background-color: #f8f8ff;
    text-align: center;
}

.why-us-section h2 {
    color: #3498db; 
    font-size: 2.5em;
    margin-bottom: 10px;
}

.why-us-section .subtitle {
    color: #666;
    font-size: 1.1em;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Container for the cards */
.benefits-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* Individual Benefit Card Styling */
.benefit-card {
    background-color: white;
    padding: 40px 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08); /* Soft shadow */
    width: 300px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px); /* Card lifts up on hover */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); /* Shadow deepens */
}

/* Special styling for the middle (standout) card */
.benefit-card.standout {
    /* Use a slight background tint or border to make it pop */
    border: 3px solid #3498db; 
    /* Slightly more pronounced initial shadow */
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.2); 
}

.benefit-icon {
    font-size: 48px; /* Large, striking icon size */
    display: block;
    margin-bottom: 15px;
}

.benefit-card h3 {
    color: #333;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.benefit-card p {
    color: #777;
    font-size: 0.95em;
    line-height: 1.5;
}

/* Secondary CTA Button (at the bottom) */
.secondary-cta {
    display: inline-block;
    background-color: transparent;
    border: 2px solid #5b5bfa;
    color: #5b5bfa;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
}

.secondary-cta:hover {
    background: linear-gradient(to right, #3498db, #5b5bfa);
    color: white;
    border-color: transparent;
}

/* --- Responsiveness --- */
@media (max-width: 1024px) {
    .benefit-card {
        width: 45%; /* Two cards per row on tablets */
    }
}

@media (max-width: 650px) {
    .benefit-card {
        width: 100%; /* Stack cards vertically on phones */
        margin-bottom: 20px;
    }
}


/* --- Specialists Section Structure (Revised) --- */
.specialists-section {
    padding: 20px 20px;
    background-color: #ecf0f1;
}

.specialists-section .container {
    max-width: 100%;
    margin: 0 auto;
}

/* Use Grid for the main two-column layout */
.specialists-content {
    display: flex;
    /* Adjust columns: 30% for the single image, 70% for text/cards */
    grid-template-columns: 30% 70%; 
    gap: 40px;
    align-items: center; 
}

/* --- Image Gallery Styling (Simplified for one image) --- */
.image-gallery {
    /* Only need one column for the single image */
    grid-column: 1 / 2;
    /* Ensure no unnecessary margin/padding */
    padding: 0;
    margin: 0;
    width:1340px;
}

.img-wrapper img {
    width: 200%;
    min-height: 380px; 
    object-fit: cover;
    border-radius: 12px;
    /* Remove any default browser margin */
    display: flex;
}

.image-gallery .small-img {
    display: none; 
}


/* --- Right Side: Text and Features Container --- */
.text-and-features {
    grid-column: 2 / 3;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Helps distribute vertical space */
    padding-top: 10px; /* Align content with the top of the image */
}

/* --- Text Block Styling --- */
.text-block {
    margin-bottom: 30px;
    /* Ensure the text block doesn't take up excessive top space */
    padding-top: 0; 
}

.pre-heading {
    font-size: 1.5em;
    font-weight: 500;
    color: #079527; /* Green*/
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.main-heading {
    font-size: 1.6em;
    font-weight: 600;
    color: #333;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 20px;
}

.description {
    font-size: 1.05em;
    color: #000;
    line-height: 1.6;
}

/* --- Feature Cards Layout --- */
.feature-cards-container {
    
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    /* Adjusted top padding to match the gap in the image */
    padding-top: 20px; 
}

/* --- Individual Feature Card Styling --- */
.feature-card {
    background-color: #178380;
    border-radius: 10px;
    padding: 20px 15px; /* Slightly adjusted padding */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    /* Set equal width for the three cards */
    flex: 1 1 30%; 
    max-width: 33.33%;
    text-align: center; /* Center the text and icons */
}

/* Icon Styling and Colors (as per previous examples) */
.icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 10px auto; /* Center the icon circle */
}

.icon-emoji {
    font-size: 30px;
}
/* ... (Include your existing icon color classes like .icon-blue, .icon-yellow, .icon-purple) ... */

/* --- Mobile Responsiveness --- */
@media (max-width: 992px) {
    /* Stack content vertically on tablets/phones */
    .specialists-content {
        grid-template-columns: 1fr;
    }
    
    .img-wrapper img {
        min-height: 300px; /* Reduce image height on smaller screens */
    }

    .feature-cards-container {
        flex-direction: column; /* Stack cards vertically */
    }
    
    .feature-card {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center; /* Switch back to left alignment */
    }
    
    .icon-circle {

        margin: 0 10px 10px 0; /* Align icon to the left */
    }
}


/* our services */
/* ===== SECTION ===== */
#services {
  background: linear-gradient(53deg, #3091e5, #a30f2a);
  padding: 30px 20px;
  text-align: center;
  color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== TITLES ===== */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #e0f2ff;
  margin-bottom: 15px;
}



.section-subtitle {
  color: #f0f0f0;
  font-size: 1.1rem;
  margin-bottom: 50px;
}

/* ===== GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  justify-content: center;
  align-items: stretch;
  margin-bottom: 50px;
  padding: 0 20px;
}

/* ===== SERVICE CARD ===== */
.service-card {
  background: #1e1e2f;
  padding: 35px 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(46, 204, 113, 0.3);
}

/* ===== TICK ICON ===== */
.tick {
  width: 40px;
  height: 40px;
  margin: 0 auto 15px;
  position: relative;
}

.tick::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  width: 10px;
  height: 20px;
  border-right: 4px solid #2ecc71;
  border-bottom: 4px solid #2ecc71;
  transform: rotate(45deg);
}

/* ===== CARD CONTENT ===== */
.service-card h3 {
  color: #ffffff;
  font-size: 1.3rem;
  margin-bottom: 10px;
  position: relative;
}



.service-card p {
  color: #cccccc;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== BUTTON ===== */
.cta {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.btn-primary {
  background: #2ecc71;
  color: #fff;
  border: none;
  padding: 14px 35px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #27ae60;
  box-shadow: 0 6px 20px rgba(39, 174, 96, 0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .service-card {
    padding: 25px 20px;
  }

  .btn-primary {
    width: 200px;
  }
}



/* why choose us*/
/* ===== SECTION ===== */
#why-choose-us {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  text-align: center;
}

/* ===== TITLES ===== */
.section-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: #2ecc71;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}



.section-subtitle {
  font-size: 1rem;
  color: black;
  margin-bottom: 50px;
  max-width: 650px;
  line-height: 1.6;
  margin-inline: auto;
}

/* ===== GRID ===== */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* ===== CARDS ===== */
.reason-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  position: relative;
  cursor: pointer;
}

.reason-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.reason-icon {
  font-size: 2.8rem;
  color: #00bcd4;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.reason-card:hover .reason-icon {
  transform: scale(1.15);
}

.reason-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #002b5b;
  margin-bottom: 10px;
}

.reason-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* ===== ANIMATION ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .reason-card {
    padding: 25px 20px;
  }
}


/* FAQ Section */
.faq {
  padding: 10px 20px;
  background: #fff;
  text-align: center;
}

.faq h2 {
  font-size: 2.5rem;
  color: #0d6efd
  margin-bottom: 40px;
}

.faq-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

.faq-column {
  flex: 1;
  text-align: left;
}

/* FAQ Section */
.faq {
  padding: 40px 20px;
  background: linear-gradient(135deg, #f0f8ff, #e6f0ff);
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.faq h2 {
  font-size: 2.8rem;
  color: #0d6efd;
  margin-bottom: 50px;
  font-weight: 700;
  letter-spacing: 1px;
}

.faq-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

.faq-column {
  flex: 1;
  text-align: left;
}

/* FAQ Card Style */
.faq-item {
  margin-bottom: 18px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.3s;
}

.faq-item:hover {
  transform: translateY(-4px);
}

.faq-question {
  width: 100%;
  background: #fff;
  padding: 18px 20px;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #f8faff;
}

/* Plus/Minus icons using pseudo-element */
.faq-question::after {
  content: "+";
  font-size: 1.3rem;
  color: #0d6efd;
  transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
  content: "−"; /* minus sign */
  transform: rotate(180deg);
}

/* Answer Styling */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  background: #fafbff;
  transition: max-height 0.5s ease, padding 0.3s ease;
}

.faq-answer p {
  padding: 15px 0;
  color: #444;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Open state */
.faq-item.active .faq-answer {
  max-height: 700px;
  padding: 0 20px 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-container {
    flex-direction: column;
  }
}


/* --- Main Footer Section --- */
.main-footer {
    background-color: #003040; /* Dark background for the footer */
    color: #ecf0f1; /* Light text color */
    padding: 40px 20px 20px 5px; /* Top, right, bottom, left padding */
    font-family: Arial, sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* Allow columns to wrap on smaller screens */
    gap: 30px; /* Space between columns */
}

.footer-col {
    flex: 1; /* Each column takes equal space initially */
    min-width: 200px; /* Minimum width for columns before wrapping */
}

.company-tagline {
    font-size: 0.9em;
    color: #bdc3c7;
    margin-top: 0;
}

/* --- Navigation Column --- */
.nav-col h4, .contact-col h4, .social-col h4 {
    font-size: 1.2em;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
}

.nav-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-col ul li {
    margin-bottom: 8px;
}

.nav-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.95em;
    transition: color 0.3s ease;
}

.nav-col ul li a:hover {
    color: #3498db;
}

/* --- Contact Column --- */
.contact-col p {
    font-size: 0.95em;
    margin-bottom: 10px;
    color: #bdc3c7;
}

.contact-col p i {
    margin-right: 10px;
    color: #3498db; /* Icon color */
}

/* --- Social Media Column --- */
.social-icons {
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #ecf0f1;
    font-size: 1.5em;
    width: 40px;
    height: 40px;
    background-color: #34495e; /* Slightly lighter dark background */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
    background-color: #3498db; /* Blue on hover */
    color: white;
}



/* --- Footer Bottom (Copyright) --- */
.footer-bottom {
    border-top: 1px solid #34495e; /* Separator line */
    padding-top: 10px;
    margin-top: 1px;
    text-align: center;
    font-size: 0.85em;
    color: #bdc3c7;
}

/* --- Responsive Adjustments for Footer --- */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column; /* Stack columns vertically */
        align-items: center; /* Center items when stacked */
        text-align: center;
    }

    .footer-col {
        min-width: auto; /* Remove min-width to allow full width */
        width: 100%; /* Take full width */
        margin-bottom: 30px; /* Add space between stacked columns */
    }

    .nav-col ul, .contact-col p, .social-icons {
        justify-content: center; /* Center these elements for stacked layout */
        padding-left: 0;
    }
    
    .footer-bottom {
        margin-top: 20px; /* Reduce top margin for bottom part */
    }
}

/* Hide image on mobile devices */
@media (max-width: 768px) {
  .image-gallery {
    display: none;
  }
  .desktop-hero{
    display: none;
  }
}

@media (min-width: 769px) {
  
  .mobile-hero{
    display: none;
  }
  .mobile-image{
    display: none;
  }
}
.mobile-image{

  /* Only need one column for the single image */
    grid-column: 1 / 2;
    /* Ensure no unnecessary margin/padding */
    padding: 10px;
    margin: 0;
    width:100%;
    text-align: center;

}