
    :root {
      --primary-color: #1a4f8b;
      --secondary-color: #4b8bbe;
      --accent-color: #ff6b35;
      --light-color: #f8f9fa;
      --dark-color: #212529;
      --success-color: #28a745;
      --vh: 1vh;
    }
    
    body {
      font-family: 'Poppins', sans-serif;
      color: var(--dark-color);
      overflow-x: hidden;
      background-color: #ffffff;
      -webkit-text-size-adjust: 100%;
      -webkit-font-smoothing: antialiased;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
    }

    /* Preloader */
    #preloader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--primary-color);
      z-index: 9999;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    
    .loader {
      width: 50px;
      height: 50px;
      position: relative;
    }
    
    .loader:before {
      content: '';
      width: 50px;
      height: 5px;
      background: #f3f3f3;
      position: absolute;
      top: 60px;
      left: 0;
      border-radius: 50%;
      animation: shadow324 0.5s linear infinite;
    }
    
    .loader:after {
      content: '';
      width: 100%;
      height: 100%;
      background: var(--accent-color);
      position: absolute;
      top: 0;
      left: 0;
      border-radius: 4px;
      animation: jump7456 0.5s linear infinite;
    }
    
    @keyframes jump7456 {
      15% {
        border-bottom-right-radius: 3px;
      }
      
      25% {
        transform: translateY(9px) rotate(22.5deg);
      }
      
      50% {
        transform: translateY(18px) scale(1, .9) rotate(45deg);
        border-bottom-right-radius: 40px;
      }
      
      75% {
        transform: translateY(9px) rotate(67.5deg);
      }
      
      100% {
        transform: translateY(0) rotate(90deg);
      }
    }
    
    @keyframes shadow324 {
      0%,
      100% {
        transform: scale(1, 1);
      }
      
      50% {
        transform: scale(1.2, 1);
      }
    }

    /* Custom Scrollbar */
    ::-webkit-scrollbar {
      width: 10px;
    }
    
    ::-webkit-scrollbar-track {
      background: #f1f1f1;
    }
    
    ::-webkit-scrollbar-thumb {
      background: var(--primary-color);
      border-radius: 10px;
    }
    
    ::-webkit-scrollbar-thumb:hover {
      background: var(--secondary-color);
    }
    
    /* Navbar */
    .navbar {
      transition: all 0.4s ease;
      padding: 15px 0;
      /* background: rgba(255, 255, 255, 0.95) !important; */
      background: rgb(255, 255, 255) !important;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .navbar.scrolled {
      padding: 8px 0;
      /* background: rgba(255, 255, 255, 0.98) !important; */
      background: rgb(255, 255, 255) !important;
      backdrop-filter: blur(10px);
    }
    
    .navbar-brand {
      font-weight: 700;
      font-size: 1.8rem;
      color: var(--primary-color) !important;
    }
    
    .navbar-brand span {
      color: var(--accent-color);
    }
    
    .nav-link {
      font-weight: 600;
      padding: 8px 15px !important;
      color: var(--dark-color) !important;
      position: relative;
      transition: all 0.3s ease;
      min-height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }
    
    .nav-link:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 2px;
      background: var(--accent-color);
      transition: all 0.3s ease;
    }
    
    .nav-link:hover:after,
    .nav-link.active:after {
      width: 70%;
    }
    
    .nav-link:hover,
    .nav-link.active {
      color: var(--primary-color) !important;
    }
    
    .navbar-toggler {
      border: none;
      padding: 0;
      width: 30px;
      height: 30px;
      position: relative;
      margin-left: auto;
    }
    
    .navbar-toggler:focus {
      box-shadow: none;
    }
    
    .navbar-toggler span {
      display: block;
      width: 25px;
      height: 2px;
      background: var(--primary-color);
      margin: 5px 0;
      transition: all 0.3s ease;
    }
    
    .navbar-toggler[aria-expanded="true"] span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }
    
    .navbar-toggler[aria-expanded="true"] span:nth-child(2) {
      opacity: 0;
    }
    
    .navbar-toggler[aria-expanded="true"] span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Hero Section */
    .hero {
      position: relative;
      min-height: calc(var(--vh, 1vh) * 100);
      display: flex;
      align-items: center;
      background: linear-gradient(135deg, rgba(26, 79, 139, 0.85) 0%, rgba(75, 139, 190, 0.85) 100%), url('/images/home_hero.jpg');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      color: white;
      overflow: hidden;
      -webkit-overflow-scrolling: touch;
    }
    
    .hero-content {
      position: relative;
      z-index: 2;
    }
    
    .hero-title {
      font-size: 3.5rem;
      font-weight: 800;
      margin-bottom: 1.5rem;
      text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
      line-height: 1.2;
    }
    
    .hero-subtitle {
      font-size: 1.5rem;
      margin-bottom: 2rem;
      font-weight: 300;
    }
    
    .typed-cursor {
      font-size: 2.5rem;
      color: var(--accent-color);
    }
    
    .hero-buttons .btn {
      margin-right: 15px;
      margin-bottom: 15px;
      padding: 12px 30px;
      border-radius: 50px;
      font-weight: 600;
      transition: all 0.3s ease;
      min-height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }
    
    .btn-primary {
      background-color: var(--accent-color);
      border-color: var(--accent-color);
    }
    
    .btn-primary:hover {
      background-color: #e55a2b;
      border-color: #e55a2b;
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    .btn-outline-light:hover {
      background-color: transparent;
      color: var(--accent-color);
      border-color: var(--accent-color);
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    .hero-shape {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100px;
      background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M985.66,92.83C906.67,72,823.78,31,743.84,14.19c-82.26-17.34-168.06-16.33-250.45.39-57.84,11.73-114,31.07-172,41.86A600.21,600.21,0,0,1,0,27.35V120H1200V95.8C1132.19,118.92,1055.71,111.31,985.66,92.83Z" fill="%23ffffff"></path></svg>');
      background-size: cover;
      background-repeat: no-repeat;
    }
    
    /* Particles Background */
    #particles-js {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
    }
    
    /* Section Titles */
    .section-title {
      position: relative;
      margin-bottom: 50px;
      text-align: center;
      color: var(--primary-color);
    }
    
    .section-title:after {
      content: "";
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--accent-color);
      border-radius: 2px;
    }
    
    /* Services Section */
    .services {
      padding: 100px 0;
      background-color: var(--light-color);
    }
    
    .service-card {
      background: white;
      border-radius: 15px;
      overflow: hidden;
      transition: all 0.4s ease;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      height: 100%;
      position: relative;
      z-index: 1;
      margin-bottom: 20px;
    }
    
    .service-card:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 0;
      background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
      opacity: 0;
      transition: all 0.5s ease;
      z-index: -1;
    }
    
    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }
    
    .service-card:hover:before {
      height: 100%;
      opacity: 1;
    }
    
    .service-card:hover .service-icon,
    .service-card:hover .service-title,
    .service-card:hover .service-text,
    .service-card:hover .service-link {
      color: white;
    }
    
    .service-icon {
      font-size: 3rem;
      color: var(--primary-color);
      margin-bottom: 20px;
      transition: all 0.4s ease;
    }
    
    .service-title {
      font-size: 1.5rem;
      margin-bottom: 15px;
      transition: all 0.4s ease;
    }
    
    .service-text {
      margin-bottom: 20px;
      transition: all 0.4s ease;
    }
    
    .service-link {
      color: var(--primary-color);
      font-weight: 600;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      transition: all 0.4s ease;
    }
    
    .service-link i {
      margin-left: 5px;
      transition: transform 0.3s ease;
    }
    
    .service-link:hover i {
      transform: translateX(5px);
    }
    
    /* Stats Section */
    .stats {
      padding: 80px 0;
      background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
      color: white;
      position: relative;
    }
    
    .stat-box {
      text-align: center;
      padding: 30px;
    }
    
    .stat-icon {
      font-size: 2.5rem;
      margin-bottom: 15px;
      color: rgba(255, 255, 255, 0.9);
    }
    
    .stat-number {
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 10px;
    }
    
    .stat-text {
      font-size: 1.1rem;
      font-weight: 500;
    }
    
    /* Process Section */
    .process {
      padding: 100px 0;
    }
    
    .process-step {
      position: relative;
      padding: 30px;
      text-align: center;
      margin-bottom: 30px;
    }
    
    .process-step:after {
      content: '';
      position: absolute;
      top: 80px;
      right: -30px;
      width: 60px;
      height: 2px;
      background: var(--accent-color);
      z-index: 1;
    }
    
    .process-step:last-child:after {
      display: none;
    }
    
    .step-number {
      width: 60px;
      height: 60px;
      background: var(--primary-color);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      font-weight: 700;
      margin: 0 auto 20px;
      position: relative;
      z-index: 2;
    }
    
    .step-title {
      font-size: 1.3rem;
      margin-bottom: 15px;
      color: var(--primary-color);
    }
    
    /* Industries Section */
    .industries {
      padding: 100px 0;
      background-color: var(--light-color);
    }
    
    .industry-tabs {
      margin-bottom: 40px;
      display: flex;
      flex-wrap: nowrap;
      overflow-x: auto;
      padding-bottom: 10px;
      -webkit-overflow-scrolling: touch;
    }
    
    .industry-tab {
      padding: 15px 25px;
      background: white;
      border: none;
      border-radius: 50px;
      margin: 0 10px 15px;
      font-weight: 600;
      color: var(--dark-color);
      transition: all 0.3s ease;
      cursor: pointer;
      min-height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      white-space: nowrap;
      flex: 0 0 auto;
    }
    
    .industry-tab.active,
    .industry-tab:hover {
      background: var(--primary-color);
      color: white;
    }
    
    .industry-content {
      display: none;
    }
    
    .industry-content.active {
      display: block;
      animation: fadeIn 0.5s ease;
    }
    
    .industry-image {
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }
    
    /* Testimonials */
    .testimonials {
      padding: 100px 0;
      background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
      color: white;
      position: relative;
    }
    
    .testimonial-card {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border-radius: 15px;
      padding: 30px;
      margin: 20px;
      position: relative;
      overflow: hidden;
    }
    
    .testimonial-card:before {
      content: '\201C';
      position: absolute;
      top: 20px;
      left: 20px;
      font-size: 5rem;
      color: rgba(255, 255, 255, 0.1);
      font-family: Arial, sans-serif;
    }
    
    .testimonial-text {
      font-style: italic;
      margin-bottom: 20px;
      position: relative;
      z-index: 2;
    }
    
    .testimonial-author {
      display: flex;
      align-items: center;
    }
    
    .testimonial-avatar {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      overflow: hidden;
      margin-right: 15px;
      border: 3px solid rgba(255, 255, 255, 0.3);
    }
    
    .testimonial-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .testimonial-name {
      font-weight: 700;
      margin-bottom: 5px;
    }
    
    .testimonial-position {
      font-size: 0.9rem;
      opacity: 0.8;
    }
    
    .testimonial-rating {
      color: var(--accent-color);
      margin-top: 5px;
    }
    
    /* Jobs Section */
    .jobs {
      padding: 100px 0;
    }
    
    .job-card {
      border: 1px solid #e9ecef;
      border-radius: 10px;
      padding: 25px;
      margin-bottom: 25px;
      transition: all 0.3s ease;
      background: white;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
    
    .job-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
      border-color: var(--primary-color);
    }
    
    .job-type {
      display: inline-block;
      padding: 5px 15px;
      background: var(--light-color);
      color: var(--primary-color);
      border-radius: 50px;
      font-size: 0.8rem;
      font-weight: 600;
      margin-bottom: 15px;
    }
    
    .job-title {
      font-size: 1.3rem;
      margin-bottom: 10px;
      color: var(--primary-color);
    }
    
    .job-company {
      font-size: 1rem;
      color: var(--dark-color);
      margin-bottom: 15px;
    }
    
    .job-details {
      display: flex;
      flex-wrap: wrap;
      margin-bottom: 20px;
    }
    
    .job-detail {
      display: flex;
      align-items: center;
      margin-right: 20px;
      margin-bottom: 10px;
      font-size: 0.9rem;
    }
    
    .job-detail i {
      margin-right: 5px;
      color: var(--primary-color);
    }
    
    .job-actions {
      display: flex;
      justify-content: space-between;
    }
    
    /* CTA Section */
    .cta {
      padding: 100px 0;
      background: linear-gradient(rgba(26, 79, 139, 0.9), rgba(26, 79, 139, 0.9)), url('/images/industry_middle.jpg');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      color: white;
      text-align: center;
      -webkit-overflow-scrolling: touch;
    }
    
    .cta-title {
      font-size: 2.5rem;
      margin-bottom: 20px;
    }
    
    .cta-text {
      font-size: 1.2rem;
      margin-bottom: 40px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }
    
    /* Contact Section */
    .contact {
      padding: 100px 0;
      background-color: var(--light-color);
    }
    
    .contact-info {
      margin-bottom: 40px;
    }
    
    .contact-method {
      display: flex;
      align-items: flex-start;
      margin-bottom: 25px;
    }
    
    .contact-icon {
      width: 50px;
      height: 50px;
      background: var(--primary-color);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      margin-right: 15px;
      flex-shrink: 0;
    }
    
    .contact-details h4 {
      margin-bottom: 5px;
      font-size: 1.2rem;
    }
    
    .contact-form {
      background: white;
      padding: 40px;
      border-radius: 15px;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }
    
    .form-control {
      padding: 15px;
      border-radius: 10px;
      border: 1px solid #e9ecef;
      margin-bottom: 20px;
      transition: all 0.3s ease;
      min-height: 50px;
      -webkit-appearance: none;
      border-radius: 0;
    }
    
    .form-control:focus {
      border-color: var(--primary-color);
      box-shadow: 0 0 0 0.2rem rgba(26, 79, 139, 0.25);
    }
    
    /* Footer */
    footer {
      background: var(--dark-color);
      color: white;
      padding: 80px 0 0;
    }
    
    .footer-logo {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 20px;
      color: white;
    }
    
    .footer-logo span {
      color: var(--accent-color);
    }
    
    .footer-text {
      margin-bottom: 20px;
      opacity: 0.8;
    }
    
    .footer-title {
      font-size: 1.2rem;
      margin-bottom: 25px;
      position: relative;
      padding-bottom: 10px;
    }
    
    .footer-title:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 40px;
      height: 2px;
      background: var(--accent-color);
    }
    
    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    
    .footer-links li {
      margin-bottom: 12px;
    }
    
    .footer-links a {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
    }
    
    .footer-links a i {
      margin-right: 8px;
      font-size: 0.8rem;
    }
    
    .footer-links a:hover {
      color: var(--accent-color);
      transform: translateX(5px);
    }
    
    .footer-newsletter {
      position: relative;
    }
    
    .footer-newsletter input {
      width: 100%;
      padding: 12px 20px;
      border-radius: 50px;
      border: none;
      background: rgba(255, 255, 255, 0.1);
      color: white;
    }
    
    .footer-newsletter button {
      position: absolute;
      top: 5px;
      right: 5px;
      border: none;
      background: var(--accent-color);
      color: white;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }
    
    .footer-newsletter button:hover {
      background: #e55a2b;
    }
    
    .social-icons {
      display: flex;
      margin-top: 20px;
    }
    
    .social-icons a {
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 10px;
      transition: all 0.3s ease;
    }
    
    .social-icons a:hover {
      background: var(--accent-color);
      transform: translateY(-3px);
    }
    
    .copyright {
      text-align: center;
      padding: 20px 0;
      margin-top: 60px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      opacity: 0.7;
    }
    
    /* Back to Top */
    #scrollToTop {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: var(--accent-color);
      color: white;
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: all 0.4s ease;
      z-index: 99;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    #scrollToTop.active {
      opacity: 1;
      visibility: visible;
    }
    
    #scrollToTop:hover {
      background: #e55a2b;
      transform: translateY(-3px);
    }
    
    /* Animations */
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    
    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }
    
    .pulse {
      animation: pulse 2s infinite;
    }
    
    /* Media Queries */
    @media (max-width: 1199.98px) {
      .hero-title {
        font-size: 3rem;
      }
    }
    
    @media (max-width: 991.98px) {
      .hero-title {
        font-size: 2.8rem;
      }
      
      .hero-subtitle {
        font-size: 1.2rem;
      }
      
      .process-step:after {
        display: none;
      }
      
      .testimonial-card {
        margin: 10px;
      }
      
      .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        padding: 20px;
        border-radius: 0 0 10px 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      }
      
      .navbar-nav {
        padding-top: 20px;
      }
      
      .nav-item {
        margin-bottom: 10px;
      }
      
      .nav-link {
        padding: 12px 15px !important;
      }
      
      .navbar-nav .btn {
        margin-left: 15px;
        margin-top: 10px;
      }
    }
    
    @media (max-width: 767.98px) {
      .hero-title {
        font-size: 2.2rem;
      }
      
      .section-title {
        font-size: 1.8rem;
      }
      
      .stat-number {
        font-size: 2.5rem;
      }
      
      .contact-form {
        padding: 25px;
      }
      
      .footer {
        text-align: center;
      }
      
      .footer-title:after {
        left: 50%;
        transform: translateX(-50%);
      }
      
      .social-icons {
        justify-content: center;
      }
      
      .testimonial-slider .owl-stage-outer {
        padding: 10px 0;
      }
    }

    @media (max-width: 575.98px) {
      .navbar .container {
        padding-left: max(15px, env(safe-area-inset-left));
        padding-right: max(15px, env(safe-area-inset-right));
      }
      
      .hero-title {
        font-size: 2rem !important;
        line-height: 1.2;
      }
      
      .hero-subtitle {
        font-size: 1rem !important;
      }
      
      .hero-buttons .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        margin-right: 10px;
        margin-bottom: 10px;
      }
      
      .section-title {
        font-size: 1.8rem;
      }
      
      .service-card {
        margin-bottom: 20px;
      }
      
      .stat-box {
        padding: 20px 15px;
      }
      
      .stat-number {
        font-size: 2rem;
      }
      
      .process-step {
        padding: 20px 15px;
      }
      
      .industry-tab {
        padding: 10px 15px;
        font-size: 0.9rem;
        margin: 0 5px 10px;
      }
      
      .job-card {
        padding: 20px;
      }
      
      .job-title {
        font-size: 1.2rem;
      }
      
      .job-detail {
        margin-right: 15px;
        font-size: 0.85rem;
      }
      
      .cta-title {
        font-size: 1.8rem;
      }
      
      .cta-text {
        font-size: 1rem;
      }
      
      .contact-form {
        padding: 25px 20px;
      }
      
      .footer-logo {
        font-size: 1.8rem;
      }
      
      .testimonial-card {
        padding: 20px;
        margin: 10px 0;
      }
      
      .testimonial-text {
        font-size: 0.95rem;
      }
    }

    @media (max-width: 400px) {
      .hero-title {
        font-size: 1.8rem !important;
      }
      
      .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
      }
      
      .job-actions {
        flex-direction: column;
        gap: 10px;
      }
      
      .job-actions .btn {
        width: 100%;
        text-align: center;
      }
      
      .stat-box {
        padding: 15px 10px;
      }
      
      .stat-number {
        font-size: 1.8rem;
      }
      
      .stat-text {
        font-size: 0.9rem;
      }
    }

    /* Fix for iPhone notch areas */
    @supports(padding: max(0px)) {
      .navbar .container,
      .hero .container,
      .services .container,
      .stats .container,
      .process .container,
      .industries .container,
      .testimonials .container,
      .jobs .container,
      .cta .container,
      .contact .container,
      footer .container {
        padding-left: max(15px, env(safe-area-inset-left));
        padding-right: max(15px, env(safe-area-inset-right));
      }
    }

    /* Prevent horizontal scrolling */
    html, body {
      overflow-x: hidden;
      width: 100%;
    }

    /* Ensure images are responsive */
    img {
      max-width: 100%;
      height: auto;
    }

    /* Ensure proper spacing on all devices */
    .container, .container-fluid {
      padding-left: 15px;
      padding-right: 15px;
    }

    /* Preloader full screen */
      #preloader {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #fff; /* or any background */
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 9999; /* Stay above all content */
      }

      /* Logo styling */
      .preloader-logo {
        width: 120px; /* adjust size */
        animation: pulse 1.5s infinite;
      }

      /* Simple animation */
      @keyframes pulse {
        0% { transform: scale(1); opacity: 0.7; }
        50% { transform: scale(1.1); opacity: 1; }
        100% { transform: scale(1); opacity: 0.7; }
      }


      /* Map Section */
    .map-section {
      padding: 60px 0;
    }
    
    .map-container {
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
      height: 400px;
    }
    
    .map-container iframe {
      width: 100%;
      height: 100%;
      border: none;
    }
    