 /* Base styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
             font-family: "Futura", "Futura-Medium", "Futura Medium", "Century Gothic", CenturyGothic, "Apple Gothic", Arial, sans-serif;
            line-height: 1.6;
        }

        /* Navbar container */
        .navbar {
            padding: 1% 2% 1% 2%!important;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: transparent;
            backdrop-filter: none;
            -webkit-backdrop-filter: none;
            color: white;
            /* padding: 1rem 2rem; */
          
            top: 0;
            z-index: 1000;
            /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
        }

        /* Logo section */
        .logo {
            
            display: flex;
            align-items: center;
        }


        /* Navigation links - desktop view */
        .nav-links {
            display: flex;
            list-style: none;
            transition: all 0.3s ease-in-out;
        }

        .nav-links li {
            margin-left: 2rem;
        }

        .nav-links a {
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 1.3), -1px -1px 1px rgba(255, 255, 255, 0.8);   
             
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            transition: color 0.3s ease;
            position: relative;
            padding-bottom: 5px;
        }

        .nav-links a:hover {
            font-weight: 600;
            color: #f39423;
            text-shadow: none;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #f39423;
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Hamburger menu - hidden by default */
        .hamburger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
        }

        .hamburger .line {
            height: 3px;
            width: 100%;
            background-color: #f39423;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        /* Mobile menu styles */
        @media (max-width: 768px) {
            .navbar {
                position: relative;
                padding: 1rem;
            }

            .hamburger {
                display: flex;
                z-index: 100;
            }

            .nav-links {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: rgba(179, 75, 7, 0.342);
                backdrop-filter: blur(10px);
                -webkit-backdrop-filter: blur(10px);
                flex-direction: column;
                align-items: center;
                padding: 1rem 0;
                clip-path: circle(0px at 90% -10%);
                -webkit-clip-path: circle(0px at 90% -10%);
                transition: all 0.5s ease-out;
                pointer-events: none;
            }

            .nav-links li {
                margin: 1rem 0;
                opacity: 0;
                transform: translateX(30px);
                transition: all 0.4s ease;
            }

            .nav-active {
                clip-path: circle(1000px at 90% -10%);
                -webkit-clip-path: circle(1000px at 90% -10%);
                pointer-events: all;
            }

            .nav-active li {
                opacity: 1;
                transform: translateX(0);
                transition: opacity 0.5s ease 0.3s, transform 0.5s ease 0.3s;
            }

            /* Animate hamburger to X */
            .hamburger-active .line:nth-child(1) {
                transform: translateY(9px) rotate(45deg);
            }

            .hamburger-active .line:nth-child(2) {
                opacity: 0;
            }

            .hamburger-active .line:nth-child(3) {
                transform: translateY(-9px) rotate(-45deg);
            }
        }

        /* Demo content to show scroll behavior */
        .content {
            padding: 2rem;
            height: 200vh;
            background: linear-gradient(135deg, #3498db, #9b59b6);
        }

        .content h1 {
            margin-bottom: 1rem;
            color: #2c3e50;
        }

        /* this is for carosuel */

         
         .slider-container {
            margin-top: -5rem;
            position: relative;
            width: 100vw;
            height: 99.95vh;
        }

        .slider {
            width: 100%;
            height: 100%;
            position: relative;
            overflow: hidden;
            touch-action: pan-y;
        }

        .slide {
            position: absolute;
            transition: transform 0.5s ease-in-out, opacity 1.5s ease-in-out;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 2rem;
            color: white;
            background-size: cover;
            background-position: center;
        }

        .slide.active {
            opacity: 1;
        }

        .slide-content {
            background-color: rgba(0, 0, 0, 0.6);
            padding: 2rem;
            border-radius: 10px;
            max-width: 800px;
            animation: fadeInUp 1s ease-out;
        }

        .slide h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .slide p {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .btn {
            display: inline-block;
            padding: 12px 24px;
            background-color: #ff6b6b;
            color: white;
            text-decoration: none;
            border-radius: 30px;
            transition: all 0.3s ease;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn:hover {
            background-color: #ff5252;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .nav-controls {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            display: none
        }

        .nav-controls button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: none;
            margin: 0 5px;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .nav-controls button.active {
            background-color: white;
            transform: scale(1.2);
        }

        .arrow-controls {
            position: absolute;
            top: 50%;
            width: 100%;
            display: none;
            justify-content: space-between;
            padding: 0 20px;
            z-index: 10;
            pointer-events: none;
        }

        .arrow-controls button {
            background: rgba(0, 0, 0, 0.5);
            border: none;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.5rem;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.3s ease;
            pointer-events: all;
        }

        .arrow-controls button:hover {
            background: rgba(0, 0, 0, 0.8);
            transform: scale(1.1);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive styles */
        @media (max-width: 768px) {
            .slide h2 {
                font-size: 2rem;
            }
            .slide p {
                font-size: 1rem;
            }
            .slide-content {
                padding: 1rem;
            }
        }













          .content {
            flex: 1;
            padding: 2rem;
            display: flex;
            justify-content: center;
            align-items: center;
            background-image: 
                radial-gradient(circle at 25% 60%, rgba(75, 45, 180, 0.1) 0%, transparent 40%),
                radial-gradient(circle at 75% 30%, rgba(210, 90, 120, 0.1) 0%, transparent 50%);
        }
        
        /* Footer styles */
        .footer {
            
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            /* background-color: rgba(30, 30, 30, 0.45); */
            /* backdrop-filter: blur(10px); */
            /* -webkit-backdrop-filter: blur(10px); */
            padding: 1.5rem 0;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 100;
            /* border-top: 1px solid rgba(255, 255, 255, 0.05); */
            opacity: 0;
            animation: fadeIn 1.2s forwards 0.5s;
        }
        
        .footer-content {
            width: 90%;
            max-width: 1200px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2.5rem;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
        }
        
        .footer-link {
            color: rgba(255, 255, 255, 0.75);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .footer-link:hover {
            color: #ffffff;
        }
        
        .footer-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, rgba(100, 180, 245, 0.8), rgba(180, 100, 245, 0.8));
            transition: width 0.3s ease;
        }
        
        .footer-link:hover::after {
            width: 100%;
        }
        
        .social-icons {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }
        
        .social-icon {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: rgba(255, 255, 255, 0.7);
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            transform: translateY(0);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        }
        
        .social-icon:hover {
            transform: translateY(-5px) scale(1.1);
            color: #ffffff;
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
        }
        
        .social-icon.facebook:hover {
            background-color: rgba(59, 89, 152, 0.5);
        }
        
        .social-icon.twitter:hover {
            background-color: rgba(29, 161, 242, 0.5);
        }
        
        .social-icon.instagram:hover {
            background: linear-gradient(45deg, rgba(225, 48, 108, 0.5), rgba(253, 228, 0, 0.5));
        }
        
        .social-icon.linkedin:hover {
            background-color: rgba(0, 119, 181, 0.5);
        }
        
        .footer-text {
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
            color: rgba(255, 255, 255, 0.5);
            font-size: 1rem;
            text-align: center;
        }
        
        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .footer-links {
                gap: 1.5rem;
            }
            
            .social-icons {
                gap: 1rem;
            }
            
            .social-icon {
                width: 36px;
                height: 36px;
                font-size: 0.9rem;
            }
        }


        /* service section */


       
        
        /* for service page */

       
        .gallery-container {
            max-width: 1200px;
            margin: 0 20px;
            padding: 2rem;
        }
        
        .gallery-title {
            text-align: center;
            margin-bottom: 3rem;
            font-size: 2.5rem;
            font-weight: 700;
            color: #2d3748;
            position: relative;
        }
        
        .gallery-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: #4f46e5;
            margin: 1rem auto 0;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
            margin-top:-75px;
        
        .service-card {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            aspect-ratio: 1/1;
            background-color: #f8fafc;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }
        
        .service-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .service-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
            color: white;
            padding: 1.5rem;
            transform: translateY(100px);
            opacity: 0;
            transition: all 0.3s ease;
        }
        
        .service-card:hover .service-overlay {
            transform: translateY(0);
            opacity: 1;
        }
        
        .service-name {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .service-desc {
            font-size: 0.9rem;
            margin-bottom: 1rem;
            line-height: 1.5;
        }
        
        .service-btn {
            font-weight: 500;
            display: inline-block;
            padding: 0.5rem 1rem;
            background-color: #f39423;
            color: white;
            border-radius: 6px;
            text-decoration: none;
            transition: all 0.2s ease;
        }
        
        .service-btn:hover {
            background-color: #eb8203;
        }


      
        }

          /* this is for subservice page */
         .gallery {
            position: relative;
            width: 100%;
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }

        .gallery__photo {
            height: 100vh;
            width: 80%;
            border-radius:20px;
            margin: 0 auto;
        }

        .gallery__photo img {
            border-radius: 20px;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .gallery__description {
            padding: 40px;
            max-width: 1200px;
            margin: 0 7%;
        }

          .gallery__description h2{
            font-size: 24px;
            font-weight: bold;
          }

        @media (max-width: 768px) {
            .gallery__description {
                padding: 20px;
            }
        }

        .description h2 {
            font-size: 24px;
            margin-bottom: 10px;
        
        }

        .description p {
            font-size: 16px;
            line-height: 1.5;
        }

        @media (max-width: 768px) {
            .description h2 {
                font-size: 20px;

            }

            .description p {
                font-size: 14px;
            }
        }
  /* this is for product page */
     :root {
            --primary-color: #4a6fa5;
            --secondary-color: #ff7e5f;
            --light-color: #f8f9fa;
            --dark-color: #343a40;
            --transition: all 0.3s ease;
        }
        
  
        
        .product-section {
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-header h2 {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }
        
        .section-header h2::after {
            content: '';
            position: absolute;
            width: 50%;
            height: 3px;
            background: var(--secondary-color);
            bottom: -10px;
            left: 25%;
        }
        
        .section-header p {
            font-size: 1.1rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .products-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .product-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .product-image {
            height: 220px;
            overflow: hidden;
            position: relative;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.1);
        }
        
        .product-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: var(--secondary-color);
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
        }
        
        .product-info {
            padding: 1.5rem;
        }
        
        .product-info h3 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: var(--dark-color);
        }
        
        .product-info p {
            color: #666;
            margin-bottom: 1rem;
            font-size: 0.9rem;
        }
        
        .product-price {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 1rem;
        }
        
        .price {
            font-size: 1.4rem;
            font-weight: bold;
            color: #f39423;
        }
        
        .old-price {
            text-decoration: line-through;
            color: #999;
            font-size: 1rem;
            margin-right: 0.5rem;
        }
        
        .add-to-cart {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 0.6rem 1.2rem;
            border-radius: 5px;
            cursor: pointer;
            transition: var(--transition);
            font-weight: 600;
        }
        
        .add-to-cart:hover {
            background: var(--secondary-color);
        }
        
        .rating {
            color: #ffc107;
            margin-bottom: 0.5rem;
        }
        
        @media (max-width: 768px) {
            .products-container {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
            
            .section-header h2 {
                font-size: 2rem;
            }
        }


    /* this is for about us page */

    
        
       
        
      
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }
        
        section {
            margin-bottom: 4rem;
            padding: 2rem;
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
       
       
        
        
        
       
        
       
        
      .about-us {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
    font-family: "Futura", "Futura-Medium", "Futura Medium", "Century Gothic", CenturyGothic, "Apple Gothic", Arial, sans-serif;
  }
  
  .about-hero {
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  }
  
  .about-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .about-image:hover {
    transform: scale(1.02);
  }
  
  .about-heading h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
  }
  
  .about-heading h2 span {
    color: #f39423;
    position: relative;
  }
  
  .about-heading h2 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(74, 107, 255, 0.2);
    z-index: -1;
  }
  
  .heading-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
  }
  
  .decoration-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, transparent, #f39423, transparent);
  }
  
  .decoration-dot {
    width: 10px;
    height: 10px;
    background: #f39423;
    border-radius: 50%;
    margin: 0 15px;
  }
  
  .about-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: #555;
    font-size: 1.1rem;
  }
  
  .about-content p {
    margin-bottom: 20px;
  }
  
  @media (max-width: 768px) {
    .about-heading h2 {
      font-size: 2.2rem;
    }
    
    .about-content {
      font-size: 1rem;
    }
  }




  
  .team-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
     font-family: "Futura", "Futura-Medium", "Futura Medium", "Century Gothic", CenturyGothic, "Apple Gothic", Arial, sans-serif;
    background: #f9faff;
  }
  
  .section-heading h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
  }
  
  .section-heading h2 span {
    color: #f39423;
    position: relative;
  }
  
  .section-heading h2 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(74, 107, 255, 0.2);
    z-index: -1;
  }
  
  .heading-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
  }
  
  .decoration-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, transparent, #f39423, transparent);
  }
  
  .decoration-dot {
    width: 10px;
    height: 10px;
    background: #f39423;
    border-radius: 50%;
    margin: 0 15px;
  }
  
  .section-subtitle {
    color: #777;
    font-size: 1.1rem;
    margin-bottom: 40px;
  }
  
  .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
  }
  
  .team-member {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(74, 107, 255, 0.1);
  }
  
  .member-image {
    position: relative;
    height: 300px;
    overflow: hidden;
  }
  
  .member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .team-member:hover .member-image img {
    transform: scale(1.05);
  }
  
  .social-links {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 15px 0;
    background: rgba(74, 107, 255, 0.9);
    transition: bottom 0.3s ease;
  }
  
  .team-member:hover .social-links {
    bottom: 0;
  }
  
  .social-links a {
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
    transition: background 0.3s ease;
  }
  
  .social-links a:hover {
    background: white;
    color: #f39423;
  }
  
  .member-info {
    padding: 25px 20px;
  }
  
  .member-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: #333;
  }
  
  .position {
    color: #f39423;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.9rem;
  }
  
  .bio {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
  }
  
  @media (max-width: 768px) {
    .section-heading h2 {
      font-size: 2.2rem;
    }
    
    .team-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  @media (max-width: 480px) {
    .team-grid {
      grid-template-columns: 1fr;
    }
  }



  
  .contact-section {
    font-family: "Futura", "Futura-Medium", "Futura Medium", "Century Gothic", CenturyGothic, "Apple Gothic", Arial, sans-serif;
    color: #333;
  }
  
  .contact-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
  }
  
  .contact-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero-overlay h1 {
    color: white;
    font-size: 4rem;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  }
  
  .hero-overlay h1 span {
    color: #f39423;
  }
  
  .contact-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
  }
  
  .section-heading {
    text-align: center;
    margin-bottom: 50px;
  }
  
  .section-heading h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
  }
  
  .section-heading h2 span {
    color: #f39423;
    position: relative;
  }
  
  .section-heading h2 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(74, 107, 255, 0.2);
    z-index: -1;
  }
  
  .heading-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
  }
  
  .decoration-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, transparent, #f39423, transparent);
  }
  
  .decoration-dot {
    width: 10px;
    height: 10px;
    background: #f39423;
    border-radius: 50%;
    margin: 0 15px;
  }
  
  .section-subtitle {
    color: #777;
    font-size: 1.1rem;
  }
  
  .contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
  }
  
  .contact-card {
    background: white;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(74, 107, 255, 0.1);
  }
  
  .card-icon {
    width: 70px;
    height: 70px;
    background: rgba(74, 107, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f39423;
    font-size: 1.8rem;
    margin: 0 auto 25px;
  }
  
  .contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
  }
  
  .contact-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
  }
  
  .card-link {
    color: #f39423;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
  }
  
  .card-link:hover {
    color: #f39423;
  }
  
  .card-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
  }
  
  .card-link:hover i {
    transform: translateX(3px);
  }
  
  .map-section {
    position: relative;
    margin-top: 60px;
  }
  
  .map-container {
    width: 100%;
    height: 500px;
  }
  
  .map-overlay {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    max-width: 350px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
  }
  
  .map-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
  }
  
  .map-overlay p {
    color: #f39423;
    line-height: 1.6;
    margin-bottom: 15px;
  }
  
  .overlay-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #f39423;
  }
  
  .overlay-info i {
    color: #f39423;
    width: 20px;
    text-align: center;
  }
  
  @media (max-width: 992px) {
    .hero-overlay h1 {
      font-size: 3rem;
    }
    
    .map-overlay {
      position: relative;
      bottom: auto;
      left: auto;
      max-width: 100%;
      margin-top: -50px;
      z-index: 2;
    }
  }
  
  @media (max-width: 768px) {
    .hero-overlay h1 {
      font-size: 2.5rem;
    }
    
    .section-heading h2 {
      font-size: 2.2rem;
    }
    
    .contact-hero {
      height: 300px;
    }
  }
  
  @media (max-width: 576px) {
    .hero-overlay h1 {
      font-size: 2rem;
    }
    
    .contact-cards {
      grid-template-columns: 1fr;
    }
  }

