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

.header {
  width: 100%;
  background: linear-gradient(135deg, #11cbc56b, #0042b2);
  display: flex;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  font-family: Arial, sans-serif;
  border-bottom: 2px solid #4CAF50;
  z-index: 1000;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-around;
  max-width: 1400px;
  width: 100%;
  padding: 10px 20px;
}

.logo-container .logo {
  height: 80px;
}

/* ======= Navigation Menu (Desktop) ======= */

.nav-link{
  display: flex;
  list-style: none;
  gap: 25px;
  padding: 0;
  margin: 0;
}
.nav-menu a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
}

.nav-menu a:hover {
  /* color: #ff0000; */
  border-bottom: 2px solid rgb(255, 255, 255);
}

/* Dropdown Base (Desktop) */
.dropdown {
  position: relative;
  list-style: none;
}

.dropdown-icon {
  margin-left: 6px;
  font-size: 12px;
}

.dropdown-menu {
  display: none; /* hidden by default */
  position: absolute;
  list-style: none;
  top: 100%;
  left: 0;
  background-color: white;
  min-width: 180px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  z-index: 999;
  padding: 10px 0;
}

/* Only show on hover - desktop only */
@media (min-width: 769px) {
  .dropdown:hover .dropdown-menu {
    display: block;
  }
}

.dropdown-menu li {
  padding: 10px 20px;
}

.dropdown-menu li a {
  color: black;
  text-decoration: none;
  display: block;
  transition: 0.2s;
}

.dropdown-menu li a:hover {
  background-color: #f4f4f4;
  color: #4CAF50;
}

/* ======= Contact Info ======= */
.contact-info {
  text-align: right;
  color: white;
  font-size: 14px;
}

.helpline {
  font-weight: bold;
}

/* ======= Toggle Button (Mobile) ======= */
.toggle-button {
  display: none;
  background-color: #0a4d74;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  border: none;
  padding: 10px;
  border-radius: 5px;
}

/* ======= Mobile Sidebar ======= */
.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 260px;
  height: 100%;
  background: linear-gradient(135deg, #ffffff, #fbfbfb, #2c5364);
  transition: right 0.4s ease;
  z-index: 1001;
  padding: 30px 20px;
}

.mobile-sidebar.open {
  right: 0;
}

.mobile-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu li {
  margin-bottom: 20px;
}

.mobile-menu a {
  text-decoration: none;
  font-size: 18px;
  color: black;
  font-weight: 600;
  padding: 10px 0;
  display: block;
  transition: color 0.3s;
}

.mobile-menu a:hover {
  border-bottom: 2px solid rgb(255, 255, 255);
}

.close-button {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  background: none;
  border: none;
  color: black;
  cursor: pointer;
}

/* ======= Mobile Dropdown ======= */
.mobile-dropdown {
  position: relative;
}

.mobile-dropdown a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  cursor: pointer;
}

.mobile-dropdown-menu {
  display: none;
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  background: #f4f4f4;
  border-radius: 4px;
}

.mobile-dropdown-menu.open {
  display: block;
}

.mobile-dropdown-menu li a {
  padding: 10px 15px;
  font-size: 16px;
  color: black;
  display: block;
  text-decoration: none;
}

.mobile-dropdown-menu li a:hover {
  background-color: #ddd;
  border-bottom: 2px solid rgb(255, 255, 255);
}

/* ======= Responsive (Mobile View) ======= */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .toggle-button {
    display: block;
  }

  .dropdown-menu {
    display: none !important; /* Fully block desktop dropdown in mobile */
  }
}

/* navbar end   */
.services-container-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    backdrop-filter: blur(15px);
   width: 1400px ;
   margin: 0 auto;

}
.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 20px;
    background: linear-gradient(70deg, #02486f, #3498db);
    /* border-radius: 20px; */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);


}
.service-card {
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    width: 180px;  /* Adjusted size */
    height: 180px; /* Adjusted size */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: bold;
    color: #fff;
    font-size: 20px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    flex-direction: column;  /* Align icon and text vertically */
}

.icon-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;  /* Space between icon and text */
}

.icon {
    font-size: 40px;  /* Larger icon size */
}

.text {
    font-size: 18px;  /* Text size */
    margin: 0;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    background: rgba(255, 255, 255, 0.3);
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    border-radius: 15px;
    border: 2px solid #ffffff;
}

.service-card:hover::before {
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 600px) {
    .service-card {
        width: 90%;
        height: 180px;
        padding: 20px;
        font-size: 20px;
    }
}


/* ###################################### */
/* Container for the Slider */
.slider-container {
    position: relative;
    width: 100%;
    max-width: 1200px; /* Restrict the width to 1400px */
    margin: 0 auto; /* Center the container horizontally */
    overflow: hidden;
    margin-bottom: 20px;
}

/* The Slider */
.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
   /* height: 100%; */ /* Ensure the slider takes the full height of the container */
}

.slide {
    min-width: 100%;
    height: 100%; /* Ensure each slide takes the full height of the container */
}

.slide img {
    width: 100%;
    height: 100%; /* Make images fill the entire slide */
    object-fit: cover; /* Maintain aspect ratio while covering the area */
}

/* Buttons */
.prev, .next {
    position: absolute;
    top: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    z-index: 1;
    font-size: 20px;
    transform: translateY(-50%);
    transition: background-color 0.3s ease;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .slider-container {
        width: 100%;
    }

  /*  .slide img {
        height: 291px;
    } */
}

/* Slabs Section */
.slab-section {
    margin-top: 30px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 90%; /* Increase the width of the section */
    max-width: 1200px; /* Maximum width to prevent it from becoming too wide on larger screens */
    margin: 0 auto; /* Centers the section */
}

/* Section Title */
.slab-section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

/* 3D Table Design */
.table-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

.slab-table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1), 0 10px 20px rgba(0, 0, 0, 0.05);
    border-radius: 15px;
    background-color: #ffffff;
    transform-style: preserve-3d;
    transition: all 0.3s ease-in-out;
}

.slab-table thead {
    background: linear-gradient(90deg, rgba(255, 0, 0, 0.1), #5361eb);
    color: rgb(0, 0, 0);
}

.slab-table th,
.slab-table td {
    padding: 18px;
    text-align: left;
    font-size: 1.2rem;
    font-weight: bold;
    color: #000000;
}

.slab-table tr {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.slab-table tr:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Styling Table Rows */
.slab-row {
    background-color: #f9f9f9;
    border-bottom: 2px solid #eee;
    transition: background-color 0.3s ease;
}

.slab-row:hover {
    background-color: #f1f8ff;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
    .slab-table {
        width: 100%;
    }
    .slab-table th,
    .slab-table td {
        font-size: 1rem;
    }
}

/* File Section Styles */
.file-section {
    background-color: #ff0000; /* Set your desired background color */
    padding: 20px 0;
    text-align: center;
    width: 100%;
  }

  .file-text {
    font-size: 24px;
    font-weight: bold;
    color: white;
    font-family: 'Arial', sans-serif;
    line-height: 1.5;
  }

/* footer */

/* Footer Section Styling */
.footer-container {
    background-color: #02486f;
    color: white;
    padding: 30px 0px;
    font-family: 'Arial', sans-serif;
    box-shadow: 0px -5px 15px rgba(0, 0, 0, 0.2);
    width: 100%;
}

/* Content Area */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 20px;
    border-bottom: 1px solid #34495e;
}

/* Left Section */
.footer-left {
    max-width: 50%;
}

.footer-heading {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.footer-description {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-contact-info p {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.footer-phone, .footer-email {
    color: #f39c12;
    font-weight: bold;
}

.footer-phone-link, .footer-email-link {
    color: #f39c12;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-phone-link:hover, .footer-email-link:hover {
    color: #e67e22;
}

/* Right Section */
.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
}

.footer-terms {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.footer-terms-link, .footer-privacy-link {
    color: #ecf0f1;
    text-decoration: none;
    margin-right: 10px;
    transition: color 0.3s ease;
}

.footer-terms-link:hover, .footer-privacy-link:hover {
    color: #f39c12;
}

/* Bottom Section */
.footer-bottom {
    text-align: center;
    margin-top: 20px;
}

.footer-copyright {
    font-size: 1rem;
    color: #ecf0f1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-left {
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-right {
        text-align: center;
    }

    .footer-terms {
        font-size: 1rem;
    }
}



/* form page  */

/* Form Wrapper */
.form-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
 margin: 0px auto; 
    max-width: 1400px;
    padding: 20px;
    /* background-color: #ffffff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); */
    border-radius: 8px;
}

/* Image Section */
.image-section {
    flex: 1;
    padding-right: 20px;
}

.form-image {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

/* Form Container */
.form-container {
    flex: 2;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    background-color: #ffffff;
}

/* Form Header */
.form-container h3 {
    text-align: center;
    color: #3498db;
    margin-bottom: 30px;
    font-size: 1.8rem;
    font-weight: bold;
}

/* Form Group */
.form-group {
    margin-bottom: 25px;
}

/* Label Styling */
label {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    display: block;
    margin-top: 15px;
}

/* Input Styles */
input[type="text"],
input[type="email"],
select,
input[type="file"], textarea {
    width: 90%;
    padding: 14px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s ease-in-out;
    background-color: #f9f9f9;
}

/* Input focus effect */
input[type="text"]:focus,
input[type="email"]:focus,
select:focus,
input[type="file"]:focus {
    border-color: #3498db;
    outline: none;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.3);
}

/* Submit Button */
button[type="submit"] {
    background-color: #3498db;
    color: white;
    padding: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 18px;
    width: 100%;
    margin-top: 30px;
    transition: background-color 0.3s ease;
}

/* Submit Button Hover Effect */
button[type="submit"]:hover {
    background-color: #2980b9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-wrapper {
        flex-direction: column;
        padding: 10px;
    }

    .image-section {
        margin-bottom: 20px;
        width: 100%;
    }

    .form-container {
        width: 100%;
        padding: 20px;
    }

    .form-group-row {
        flex-direction: column;
    }

    .form-group-half {
        min-width: 100%;
    }
}

/* Flexbox Layout for Form Inputs */
.form-group-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.form-group-half {
    flex: 1;
    min-width: 48%;  /* Ensures equal width for each input */
}

.form-group-half input,
.form-group-half select {
    width: 100%;
}

/* Add space between form rows */
.form-group-row .form-group {
    margin-bottom: 25px;
}




/* Service Banner Section */
.service-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0028d5; /* Banner Background Color */
    color: white;
    padding: 0px 10%;
    margin-bottom: 0px;

}
.explore-content{
    font-size: 26px;
    font-weight: bold;
    text-align:center ;

}
.service-banner-content h1 {
    font-size: 36px;
    font-weight: bold;
}

.service-banner-content p {
    font-size: 18px;
}

.service-banner-image img {
    max-width: 100%;
    height: 100%;
    border-radius: 8px;
}

/* Back Button Styles */
.service-back-btn {
    background: #6a11cb;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    margin: 20px;
    transition: background 0.3s ease;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.service-back-btn:hover {
    background: #ff7e5f;
}

/* Sub-Services Container */
.service-sub-services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 30px ;
}

/* Sub-Service Card Styles */
.service-sub-service {
    background: #fff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); /* Larger shadow for depth */
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
    width: 280px; /* Increased width for more space */
    text-align: center;
    font-weight: bold;
    color: #333;
    font-size: 20px; /* Slightly larger font for readability */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; /* Center content */
    border: 2px solid #1255b9; /* Default border */
    transition: box-shadow 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
}

/* Hover Effect for Sub-Service Cards */
.service-sub-service:hover {
    transform: translateY(-12px); /* Slightly more movement */
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.2); /* Deeper shadow on hover */
    border: 2px solid #4CAF50; /* Green border on hover */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .service-sub-service {
        width: 100%; /* Full width on smaller screens */
        margin-bottom: 20px;
        padding: 20px;
    }
}

/* Extra Styling for Text Inside the Card */
.service-sub-service p {
    font-size: 16px;
    color: #777;
    margin-top: 10px;
}

/* Optional: Add an Icon or Image inside the cards */
.service-sub-service .icon {
    font-size: 30px;
    margin-bottom: 10px;
    color: #4CAF50; /* Green icon color */
}


.service-sub-service:hover {
    transform: translateY(-10px);
    /* background: #ff9a9e; */
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.4);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .service-banner {
        flex-direction: column;
        padding: 20px 10px;
    }

    .service-banner-content h1 {
        font-size: 28px;
    }

    .service-banner-content p {
        font-size: 16px;
    }

    .service-sub-service {
        width: 100%; /* Full width on mobile */
        margin-bottom: 20px;
    }
}




/* Container */
.seo-package-container {
    position: relative;
   /* background: linear-gradient(135deg, #e0f7ff, #e6ecff); */
    padding: 60px 20px;
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 16px;
   /* box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); */
    overflow: hidden;
    
    
  }

/* Top Left Icon */
.top-left-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 30px;
    height: 30px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    background: rgb(235, 235, 235);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    padding: 10px;
  }

  .top-left-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }

  /* Header */
  .seo-package-header {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #0b3d91;
    margin-bottom: 20px;
  }

  /* Toggle Buttons */
  .seo-package-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
  }

  .seo-package-toggle button {
    font-size: 18px;
    font-weight: 600;
    background: transparent;
    border: 2px solid #0b3d91;
    color: #0b3d91;
    margin: 0 10px;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .seo-package-toggle button.active,
  .seo-package-toggle button:hover {
    background-color: #0b3d91;
    color: #fff;
  }

  /* Card Row */
  .seo-package-cards-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }

  /* Card */
  .seo-package-card {
    background: white;
    width: 100%;
    max-width: 340px;
    border-radius: 18px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .seo-package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
  }

  /* Plan Header */
  .seo-package-card-header {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    text-align: left;
  }

  /* Price */
  .seo-package-card-price {
    font-size: 36px;
    font-weight: 700;
    color: #0b3d91;
    margin: 15px 0;
    text-align: left;
  }

  .seo-package-card-price span {
    font-size: 16px;
    font-weight: 400;
    color: #777;
  }

  /* Description */
  .seo-package-card-description {
    color: #555;
    font-size: 15px;
    margin-bottom: 25px;
    min-height: 50px;
    text-align: left;
  }

  /* Features List */
  .seo-package-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
  }

  .seo-package-card ul li {
    margin: 10px 0;
    display: flex;
    align-items: center;
    color: #0b3d91;
    font-size: 16px;
  }

  .seo-package-card ul li i {
    margin-right: 10px;
    font-size: 18px;
    color: #22c55e;
  }

  .seo-package-card ul li.disabled i {
    color: #aaa;
  }

  .seo-package-card ul li.disabled {
    color: #aaa;
  }

  /* CTA Button */
  .seo-package-btn-get-started {
    display: inline-block;
    background-color: #ffffff;
    color: #0b3d91;
    border: 2px solid #0b3d91;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 0 0 transparent;
  }

  .seo-package-btn-get-started:hover {
    background-color: #0b3d91;
    color: #ffffff;
  }

  /* Floating image animation */
  @keyframes floatImage {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-6px);
    }
  }

  /* Responsive */
  @media screen and (max-width: 768px) {
    .seo-package-header {
      font-size: 30px;
    }

    .seo-package-toggle button {
      font-size: 16px;
      padding: 8px 16px;
    }

    .seo-package-card {
      padding: 20px;
    }

    .seo-package-card-price {
      font-size: 28px;
    }

    .seo-package-card-description {
      font-size: 14px;
    }

    .seo-package-btn-get-started {
      font-size: 15px;
      padding: 10px 20px;
    }
  }



  /*  fixes icons  */
   /* Fixed WhatsApp and Enquiry Icons */
.fixed-icons {
    position: fixed;
    bottom: 0px;
    right: 0px;
    z-index: 999;
  }

  .fixed-icons a {
    margin: 10px;
    font-size: 25px;
    background-color: #25d366;
    color: white;
     padding: 10px;
    border-radius: 50%;
    text-align: center;
    transition: background-color 0.3s ease;
   /* width: 50px;
    height: 50px; */
    display: inline-block;
   /* line-height: 50px; */
  }

  .fixed-icons a:hover {
    background-color: #128c7e; /* Darker Green */
  }


  /* autopopup  */
    /* Popup Overlay */
    .popup-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2000;
        animation: fadeIn 0.3s ease;
    }

    /* Popup Box */
    .popup-content {
        position: relative;
        background-color: rgb(255, 255, 255);
        padding: 30px 20px 40px;
        width: 90%;
        max-width: 600px;
        border-radius: 16px;
        text-align: center;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
        animation: slideDown 0.4s ease;
    }

    /* Image at Top */
    .popup-image img {
        width: 100%;
        border-radius: 10px;
        margin-bottom: 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    /* Close Button */
    .popup-close {
        position: absolute;
        top: 10px;
        right: 15px;
        background: transparent;
        border: none;
        font-size: 28px;
        cursor: pointer;
        color: #333;
    }

    /* Call to Action Button */
    .popup-action-btn {
        background-color: #0b3d91;
        color: white;
        border: none;
        padding: 12px 25px;
        border-radius: 30px;
        font-size: 16px;
        margin-top: 20px;
        cursor: pointer;
        transition: background 0.3s ease;
    }

    .popup-action-btn:hover {
        background-color: #003366;
    }

    /* Animations */
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

  /* faq */
  .accordion-section {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  .accordion-item {
    border: 1px solid #ddd;
    margin-bottom: 15px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .question-block, .answer-block {
    display: flex;
    align-items: center;
    padding: 10px;
  }

  .question-block {
    background-color: #f8f9fa;
    border-bottom: 1px solid #ddd;
    position: relative;
  }

  .answer-block {
    background-color: #ffffff;
    position: relative;
  }
  .answer-label{
      display: flex;
      justify-content: center;
      align-items: center;
      width: 40px;
      height: 40px;
      color: #999999;
      font-weight: bold;
      font-size: 24px;
      margin-right: 10px;
      border-radius: 50%;
      border: 2px solid #fff;
    }

  .question-label {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    color: #f5a623;
    font-weight: bold;
    font-size: 24px;
    margin-right: 10px;
    border-radius: 50%;
    border: 2px solid #fff;
  }

  .content {
    flex: 1;
    padding: 5px 10px;
    color: #333;
    line-height: 1.6;
  }

  .question-block .content {
    font-weight: 600;
    color: #444;
  }

  .answer-block .content {
    color: #666;
  }

  .question-block::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0px;
    bottom: 0px;
    width: 2px;
    background-color: #f5a623;
  }

  .answer-block::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0px;
    bottom: 0px;
    width: 2px;
    background-color: #999;
  }
  @media (max-width: 768px) {
    .accordion-section {
      max-width: 100%;
      padding: 0 5px;
    }
  }






  /* about page  */


  .about-banner {
    background-color: #c3e9ee;
    color: rgb(0, 0, 0);
  }
  .about-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 40px;
    flex-wrap: wrap;
  }
  .about-content {
    max-width: 900px;
  }
  .about-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
  }
  .about-content p {
    font-size: 18px;
    line-height: 1.6;
  }
  .about-image img {
    max-width: 400px;
    width: 100%;
    border-radius: 10px;
  }
  @media (max-width: 768px) {
    .about-banner {
      flex-direction: column-reverse;
      text-align: center;
    }
    .about-content {
      margin-top: 30px;
    }
  }
  /* ##############  */
  /* filing section  */
  .filing-services {
    /* background: #e8e6e6; */
    color: rgb(0, 0, 0);
    padding: 80px 10%;
    text-align: center;
    border-radius: 0 0 40px 40px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); */
  }
  .filing-services h2 {
    font-size: 38px;
    margin-bottom: 25px;
    text-align: justify;
    font-weight: bold;
    text-align: center;
    margin: 0 auto;
    letter-spacing: 0.5px;
  }
  .filing-services p {
    font-size: 18px;
    text-align: justify;
    line-height: 1.7;
    margin-bottom: 15px;
    max-width: 1400px;
    margin: 0 auto;
  }
  @media (max-width: 768px) {
    .filing-services {
      padding: 60px 6%;
      text-align: center;
    }
    .filing-services p {
      margin: 0 auto 15px;
    }
  }
  /* vison  */
  .vision-container-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
  }

  .vision-section {
    background-color: #f0f8ff;
    padding: 80px 10%;
    text-align: center;
  }

  .vision-heading {
    font-size: 36px;
    font-weight: bold;
    color: #003366;
    margin-bottom: 50px;
  }

  .vision-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    text-align: left;
  }

  .vision-box {
    flex: 1;
    min-width: 300px;
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .vision-box h3 {
    font-size: 24px;
    color: #003366;
    margin-bottom: 15px;
    transition: color 0.3s ease;
  }

  .vision-box p {
    font-size: 17px;
    color: #333;
    line-height: 1.6;
    transition: color 0.3s ease;
  }

  /* HOVER EFFECT */
  .vision-box:hover {
    background-color: #003366;
  }

  .vision-box:hover h3,
  .vision-box:hover p {
    color: #fff;
  }

  @media (max-width: 768px) {
    .vision-container {
      flex-direction: column;
      text-align: center;
    }

    .vision-box {
      margin-bottom: 30px;
    }
  }

  /* .offer-section */

  /* .offer-section { */
  /* padding: 80px 10%;
    text-align: center;
  } */

  .offer-heading {
    font-size: 36px;
    font-weight: bold;
    color: #003366;
  }

  .offer-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 800px;
    margin: 0 auto;
  }

  .offer-item {
    background-color: #f0f8ff;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-left: 5px solid #007bff;
    border-radius: 8px;
    font-size: 18px;
    color: #333;
    position: relative;
    transition: all 0.3s ease;
  }

  .offer-item::before {
    content: "⬛";
    color: #007bff;
    font-size: 18px;
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
  }

  .offer-item:hover {
    background-color: #007bff;
    color: #fff;
    border-left-color: #0056b3;
  }

  .offer-item:hover::before {
    color: #fff;
  }

  @media (max-width: 768px) {
    .offer-list {
      align-items: center;
      padding: 0 10px;
    }

    .offer-item {
      width: 100%;
      text-align: left;
    }
  }

  /* why-tjb-section */
  .why-container-wrapper {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
  }

  #why-tjb-section {
    background-color: #324158;
    padding: 80px 10%;
    text-align: center;
  }

  .why-heading {
    font-size: 36px;
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 50px;
  }

  .why-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }

  .why-box {
    flex: 1;
    min-width: 230px;
    background-color: white;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
  }

  .why-box i {
    font-size: 36px;
    margin-bottom: 15px;
    color: #007bff;
    transition: color 0.3s ease;
  }

  .why-box:hover i {
    color: #324158;
  }

  .why-box h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
  }

  .why-box p {
    font-size: 16px;
    line-height: 1.6;
  }

  @media (max-width: 992px) {
    .why-row {
      flex-direction: column;
      align-items: center;
    }

    .why-box {
      width: 100%;
      max-width: 500px;
    }
  }
  /* .partner-section  */

  .partner-section {
    background-color: #f0f8ff;
    padding: 60px 10%;
    text-align: center;
  }

  .partner-heading {
    font-size: 32px;
    font-weight: bold;
    color: #003366;
    margin-bottom: 40px;
  }

  .partner-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
  }

  .partner-item {
    font-size: 18px;
    color: #007bff;
    font-weight: 600;
    position: relative;
    padding: 0 20px;
  }

  .partner-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 20px;
    width: 1px;
    background-color: #ccc;
  }

  .partner-tagline {
    margin-top: 30px;
    font-size: 16px;
    color: #333;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
  }

  @media (max-width: 768px) {
    .partner-row {
      flex-direction: column;
      gap: 20px;
    }

    .partner-item::after {
      display: none;
    }
  }

  /* # get in touch  */
  .contact-sec {
    /* background: linear-gradient(to right, #e6f2ff, #f8fbff); */
    padding: 80px 5%;
    font-family: "Segoe UI", sans-serif;
  }

  .contact-wrap {
    max-width: 1400px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 50px;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }

  .contact-left,
  .contact-right {
    flex: 1;
    min-width: 300px;
  }

  .contact-left h2 {
    font-size: 32px;
    color: #003366;
    margin-bottom: 20px;
  }

  .contact-left p,
  .contact-right p {
    font-size: 17px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 10px;
  }

  .contact-left a {
    color: #007bff;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .contact-left a:hover {
    color: #0056b3;
    text-decoration: underline;
  }

  .contact-right h3 {
    font-size: 20px;
    color: #007bff;
    font-weight: 600;
    margin-bottom: 15px;
  }

  @media (max-width: 768px) {
    .contact-wrap {
      flex-direction: column;
      text-align: center;
      padding: 30px 20px;
    }

    .contact-left,
    .contact-right {
      text-align: center;
    }
  }
