 :root {
            --primary-color: #000;
            --secondary-color: #333;
            --accent-color: #d4af37;
        }
        a{
            text-decoration: none;
        }
        
        body {
            font-family: 'Arial', sans-serif;
            color: var(--primary-color);
            margin: 0;
            padding: 0;
          
            transition: transform 0.3s ease;
        }
        
       body.menu-open {
            transform: translateX(200px);
            overflow: hidden;
        }
        
       /* Transparent header styles */
        .top-bar {
            background-color: transparent;
            padding: 5px 0;
            font-size: 12px;
            color: white; /* White text for visibility on dark background */
            position: absolute;
            width: 100%;
            z-index: 100;
        }
        
        .top-cities span {
            color: white;
            padding: 0 5px;
        }
        
        .navbar {
            padding: 15px 0;
            background-color: transparent !important;
            position: absolute;
            width: 100%;
            z-index: 100;
            top:30px
        }
        
        .navbar-brand {
            font-weight: bold;
            font-size: 24px;
            color: white !important; /* White text for visibility */
        }
        
        .nav-link {
            color: white !important; /* White text for visibility */
            font-weight: 500;
            padding: 8px 15px !important;
        }
        
        .hero-section {
            background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
            text-align: center;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    font-family: serif;
}
        
        .hero-subtitle {
            font-size: 1.8rem;
            margin-bottom: 30px;
        }

        /* Hero Slider Styles */
        .hero-slider {
            position: relative;
            height: 100vh;
            overflow: hidden;
        }
        
        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .hero-slide.active {
            opacity: 1;
        }
        
        .hero-content {
            text-align: center;
            color: white;
            z-index: 2;
            position: relative;
        }
        
        .slider-dots {
            position: absolute;
            bottom: 30px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            z-index: 3;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            margin: 0 5px;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        
        .slider-dot.active {
            background: white;
        }
        
        /* Gradient overlay for better text visibility */
        .hero-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
            z-index: 1;
        }
        
        .price-tag {
            font-size: 1.4rem;
            margin-bottom: 30px;
        }
        
        .btn-primary {
            background-color: var(--accent-color);
            border-color: var(--accent-color);
            color: var(--primary-color);
            font-weight: bold;
            padding: 10px 25px;
        }
        
        .btn-primary:hover {
            background-color: #c9a227;
            border-color: #c9a227;
        }
        
        .professional-tag {
            font-size: 1rem;
            margin-top: 20px;
            font-weight: bold;
        }
        
      
        
        .slider-img {
            height: 100vh !important;
            object-fit: cover;
            width: 100%;
        }
        
        /* Mobile Bottom Menu */
       .mobile-bottom-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: white;
            display: flex;
            justify-content: center;
            padding: 10px 0 5px;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
            z-index: 1000;
            display: none;
            
        }
       
        
        .mobile-nav-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
        }
        
        .mobile-nav-logo {
            width: 75px;
            height: 75px;
            background: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 5px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            transform: translateY(-20px);
            border: 2px solid #f8f9fa;
            position: absolute;
            bottom: 28px;

        }
        
        .mobile-nav-logo span {
            font-weight: bold;
            font-size: 12px;
            color: var(--primary-color);
        }
        
        .mobile-nav-items {
            display: flex;
            justify-content: space-around;
            width: 100%;
            /* padding: 0 15px; */
        }
        
        .mobile-nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: var(--primary-color);
            font-size: 14px;
    flex: 1;
    padding: 10px;
        }
        
        .mobile-nav-item i {
            font-size: 18px;
            margin-bottom: 3px;
        }
        
        
        /* Search Bar */
        .mobile-search {
            padding: 15px;
            background: #f8f9fa;
            display: none;
        }
        
        /* Sidebar Menu */
       .sidebar-menu {
            position: fixed;
            top: 0;
            left: -200px;
            width: 200px;
            height: 100%;
            background: #f5e7ba;
            z-index: 1100;
            transition: left 0.3s ease;
            overflow-y: auto;
            box-shadow: 2px 0 5px rgba(0,0,0,0.1);
        }
        
       
        
        .sidebar-header {
            padding: 15px;
            border-bottom: 1px solid #eee;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: #f8f9fa;
        }
        
        .sidebar-header h5 {
            margin: 0;
            font-weight: bold;
        }
        
        .close-menu-btn {
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            padding: 0;
            line-height: 1;
        }
        
        .sidebar-nav {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .sidebar-nav li {
            border-bottom: 1px solid #eee;
        }
        
        .sidebar-nav a {
            display: block;
            padding: 12px 15px;
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .sidebar-nav a:hover {
            background-color: #f8f9fa;
        }
        
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.5);
            z-index: 1050;
            display: none;
        }
        
        .overlay.show {
            display: block;
        }
        
        .sidebar-nav .has-dropdown > a::after {
            content: '\f078';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            float: right;
            transition: transform 0.3s;
        }
        
        .sidebar-nav .has-dropdown.open > a::after {
            transform: rotate(180deg);
        }
        
        .dropdown-menu {
            list-style: none;
            padding: 0;
            margin: 0;
            display: none;
            background-color: #f8f9fa;
        }
        
        .dropdown-menu.open {
            display: block;
        }
        
        .dropdown-menu a {
            padding-left: 30px;
        }
        
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.5);
            z-index: 1050;
            display: none;
        }
        
        .overlay.show {
            display: block;
        }
        
        /* Desktop dropdown */
        .desktop-dropdown {
            position: relative;
        }
        
        .desktop-dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 200px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            display: none;
            z-index: 1000;
        }
        
        .desktop-dropdown:hover .desktop-dropdown-menu {
            display: block;
        }
        
        .desktop-dropdown-menu a {
            display: block;
            padding: 10px 15px;
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .desktop-dropdown-menu a:hover {
            background-color: #f8f9fa;
        }
        
        /* Mobile specific styles */
        @media (max-width: 768px) {

             .mobile-bottom-nav {
                display: block;
            }
            
          
            .top-bar {
                display: none;
            }

            
            .navbar {
                display: none;
                padding: 10px 0;
            }
            
            .navbar-brand {
                font-size: 20px;
            }
            
          
            
           .top-bar, .navbar {
                display: none;
            }
            
            /* Show mobile bottom nav */
            .mobile-bottom-nav {
                display: block;
            }
            
            /* Full height hero section */
            .hero-section {
                height: 100vh;
                padding: 0 20px;
            }
            
            /* Adjust text sizes for mobile */
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .desktop-nav {
                display: none !important;
            }
            
            .mobile-bottom-menu {
                display: flex;
            }
            
            .mobile-search {
                display: none;
            }
            
            .slider-img {
                height: 200px;
            }
        }
        
        /* Desktop specific styles */
        @media (min-width: 769px) {
            .top-cities{
                display: flex;
                justify-content: center;
            }
            .hero-content{
                margin-top:150px
            }
            .mobile-menu-btn {
                display: none;
            }
            
            .mobile-bottom-menu {
                display: none !important;
            }
            
            .mobile-search {
                display: none !important;
            }
            
            .sidebar-menu {
                display: none !important;
            }
        }

        /* Proffesional Card start */
        .package-offers {
  padding: 40px 20px;
  background: #f5f0dd4f;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.section-title {
  font-size: 22px;
  margin-bottom: 30px;
  border-bottom: 1px solid #ccc;
  display: inline-block;
  padding-bottom: 5px;
}

.offer-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.offer-card {
  border: 1px solid #eee;
  box-shadow: 0px 2px 10px rgba(0,0,0,0.05);
  width: 450px;
  background: #fff;
}

.image-wrapper {
  position: relative;
}

.image-wrapper img {
  width: 100%;
  display: block;
}

.text-overlay {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  color: #000;
  background: rgba(255, 255, 255, 0.8);
  padding: 10px;
  text-align: center;
}

.text-overlay .top-title {
  font-size: 14px;
  letter-spacing: 0.5px;
}

.text-overlay .bottom-title {
  font-size: 18px;
  font-weight: bold;
}

.text-overlay .center-title {
  font-size: 20px;
  font-weight: bold;
}

.price-box {
  padding: 15px;
}

.offer-label {
  font-size: 14px;
  margin: 0;
}

.old-price {
  text-decoration: line-through;
  color: #999;
  margin-left: 5px;
}

.new-price {
  color: #d4af37;
  font-weight: bold;
  margin-left: 5px;
}

.offer-description {
  font-size: 13px;
  color: #444;
  margin-top: 8px;
}
        /* Proffesional Card end */
        
          .hero-slider {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
        }

        .hero-slide {
            background-size: cover;
            background-position: center;
            height: 100%;
            width: 100%;
            display: flex;
            align-items: flex-end;
            justify-content: flex-start;
            padding: 40px;
            color: white;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 1;
            transition: opacity 0.5s ease-in-out;
        }

        .hero-slide.active {
            z-index: 2;
        }

        .hero-content {
            max-width: 500px;
            background: rgba(0, 0, 0, 0.6);
            /* Background for text */
            padding: 20px;
            border-radius: 8px;
        }

        .hero-content h1 {
            font-size: 32px;
            font-weight: bold;
            margin-bottom: 10px;
            color: white;
        }

        .hero-content p {
            margin: 5px 0;
            color: #fff;
        }

        .price-tag {
            background: #ffc107;
            color: #000;
            display: inline-block;
            padding: 8px 16px;
            font-weight: bold;
            margin: 10px 0;
        }

        .btn-primary {
            background: #a372f9;
            color: white;
            padding: 10px 20px;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            margin-top: 10px;
        }

        .Proffesional-tag {
            margin-top: 15px;
            font-weight: 500;
            color: #ccc;
        }
        
          @media (max-width:768px) {
            .hero-content h1 {
                font-size: 12px !important;
            }

            .hero-content p {
                font-size: 10px !important;
            }

            .hero-content h1 {
                font-size: 10px !important;
            }

            .price-tag {
                padding: 1px 5px !important;
                font-size: 11px !important;
                border-radius: 9px !important;
            }

            .estimate {
                padding: 0px 10px !important;
                font-size: 9px !important;
            }
        }
        
        
        
        
         .home-design-section {
            text-align: center;
            padding: 40px 20px;
            background-color: #fff;
        }

        .home-design-section h2 {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 49px;
            color: black;
            font-family: serif;
        }

        .circle-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 60px;
        }

        .circle-box {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            border: 1px solid #ccc;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transition: background 0.3s, color 0.3s;
            cursor: pointer;
        }

        .circle-box:hover {
            background-color: #d4af37;
            /* purple hover */
            color: #fff;
            border-color: #d4af37;
        }

        .circle-title {
            font-weight: bold;
            font-size: 14px;
            margin: 0;
        }

        .circle-subtitle {
            font-size: 13px;
            color: #555;
            margin: 0;
        }

        /* Hover: make both texts white */
        .circle-box:hover .circle-subtitle {
            color: #fff;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .circle-container {
                gap: 15px;
            }

            .circle-box {
                width: 40%;
                height: auto;
                aspect-ratio: 1 / 1;
            }
        }

        @media (max-width: 480px) {
            .circle-box {
                width: 40%;
            }
        }
        
        
          @media(max-width:768px){
         .col-md-6{
             flex:none !important;
         }
     }
     
     
      .enquiry-section {
        padding: 60px 0;
        font-family: 'Segoe UI', sans-serif;
        background-color: #f8f8f8;
    }

    .enquiry {
        border: 2px solid #000;
        border-radius: 20px;
        padding: 25px;
        background-color: #fff;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
    }

    .enquiry-form h2 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .enquiry-form p {
        margin-bottom: 25px;
        color: #666;
    }

    .form-group {
        margin-bottom: 15px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 10px 15px;
        border-radius: 8px;
        border: 1px solid #ccc;
        font-size: 15px;
    }

    .form-group textarea {
        resize: vertical;
        min-height: 100px;
    }

    .submit-btn {
        background-color: #007bff;
        color: white;
        border: none;
        padding: 12px;
        width: 100%;
        border-radius: 8px;
        font-size: 16px;
        cursor: pointer;
        margin-top: 10px;
        transition: background-color 0.3s;
    }

    .submit-btn:hover {
        background-color: #0056b3;
    }

    .skip-btn {
        display: block;
        text-align: center;
        margin-top: 15px;
        color: #888;
        cursor: pointer;
        font-size: 14px;
    }

    .form-image {
        width: 100%;
        height: 100%;
        border-radius: 20px;
        /*object-fit: cover;*/
    }

    @media (max-width: 768px) {
        .enquiry {
            margin-top: 30px;
        }
    }
    
    
     .package-offers-section {
            background-color: #fff;
        }

        .offer-card {
            border: 1px solid #eee;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            overflow: hidden;
            transition: transform 0.3s;
            background: #fff;

        }

        .offer-card:hover {
            transform: translateY(-5px);
        }

        .offer-card img {
            width: 100%;
            height: auto;
        }

        .offer-content {
            padding: 20px;
        }

        .offer-content h3 {
            font-weight: bold;
            margin: 10px 0 5px;
        }

        .offer-content h5 {
            font-size: 16px;
            margin: 0;
            font-weight: normal;
            color: #888;
        }

        .price {
            margin: 10px 0;
        }

        .old-price {
            text-decoration: line-through;
            color: #b30000;
            margin-right: 10px;
            font-weight: 500;
        }

        .new-price {
            color: #000;
            font-weight: bold;
        }

        .desc {
            font-size: 14px;
            color: #777;
            margin-top: 10px;
        }

        .package-offers-section .offer-card {
            width: 100%;
        }
        
        
          .offer-description {
            padding-left: 18px;
            list-style: none;
        }

        .offer-description li {
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 5px;
            font-family: 'Poppins', sans-serif;
            text-align: left;
        }

        .offer-card {
            margin-bottom: 30px;
        }

        .offer-card img {
            aspect-ratio: 1;
            object-fit: cover;
        }
        
        
         .services-section {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    background: linear-gradient(to right, #fff, #f6f6f6);
}

.container .row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch; /* ensures equal height columns */
}

.col-md-6 {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services-list {
    flex: 1;
    padding: 40px 30px;
    background: linear-gradient(180deg, #fff7e6, #fff);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid #ddd;
}

    .services-list h2 {
        font-size: 26px;
        margin-bottom: 25px;
        color: #333;
        text-align: left;
    }

    .service-item {
        padding: 12px 18px;
        margin-bottom: 12px;
        background: #f9f9f9;
        color: #333;
        text-decoration: none;
        border-radius: 6px;
        border: 1px solid #ddd;
        font-weight: 500;
        transition: 0.3s;
    }

    .service-item:hover {
        background-color: #ffa704;
        color: #fff;
        border-color: #ffa704;
        cursor: pointer;
    }

    .image-slider {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px; /* ensure it's visually balanced with text side */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.slider-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain; /* prevents cropping */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slider-img.active {
    opacity: 1;
    z-index: 1;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    font-size: 24px;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.slider-arrow:hover {
    background: #ffa704;
    color: #fff;
}

.slider-arrow.prev {
    left: 15px;
}

.slider-arrow.next {
    right: 15px;
}

    /* Responsive for mobile */
    @media (max-width: 768px) {
        .services-section {
            flex-direction: column;
            height: auto;
        }

        .services-list {
            border-right: none;
            border-bottom: 1px solid #ddd;
            padding: 20px;
        }

        .services-list h2 {
            text-align: left;
        }

        .image-slider {
            height: 60vh;
            min-height: 300px;
        }

        .slider-img {
            object-fit: cover;
        }
    }
    
    
      .services-section {
        padding: 60px 0;
        background: #f9f9f9;
        font-family: 'Segoe UI', sans-serif;
    }

    .services-section h2 {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 40px;
        color: #222;
    }

    .services-list {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
        background: #fff;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    }

    .service-item {
        display: block;
        padding: 12px 18px;
        margin-bottom: 12px;
        border: 1px solid #ddd;
        border-radius: 8px;
        background-color: #fff;
        text-decoration: none;
        color: #333;
        font-weight: 500;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .service-item:hover {
        background-color: #ffc107;
        color: #fff;
        border-color: #ffc107;
    }

    .image-slider {
        position: relative;
        overflow: hidden;
        height: 100%;
        background: #fff;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .slider-img {
        display: none;
        width: 100%;
        height: auto;
        border-radius: 10px;
        object-fit: cover;
    }

    .slider-img.active {
        display: block;
    }

    .slider-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        font-size: 28px;
        background: rgba(0, 0, 0, 0.3);
        color: white;
        border: none;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        cursor: pointer;
        z-index: 10;
    }

    .slider-arrow.prev {
        left: 15px;
    }

    .slider-arrow.next {
        right: 15px;
    }

    @media (max-width: 768px) {
        .services-list, .image-slider {
            margin-bottom: 30px;
        }
    }
    
    
     /* Base section styling */
        .what-we-do-section {
            padding: 60px 0;
            background-color: #fff;
        }

        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-title {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 49px;
            color: black;
            font-family: serif;
        }

        /* Image box structure */
        .image-box {
            position: relative;
            overflow: hidden;
        }

        .image-box img {
            display: block;
            width: 100%;
            height: auto;
            transition: transform 0.3s ease;
        }

        .image-box:hover img {
            transform: scale(1.05);
        }

        /* Always-visible text */
        .image-text {
            position: absolute;
            top: 50%;
            left: 50% !important;
            transform: translate(-50%, -50%);
            font-size: 48px;
            /* Increased size */
            font-weight: 800;
            /* Extra bold */
            color: white;
            z-index: 2;
            text-transform: uppercase;
            text-align: center;
            transition: color 0.3s ease;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
            /* optional for contrast */
        }


        /* Overlay shown on hover only */
        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgb(252 249 239 / 66%);
            /* Purple overlay */
            opacity: 0;
            z-index: 1;
            transition: opacity 0.3s ease;
        }

        /* On hover: show overlay and change text color */
        .image-box:hover .image-overlay {
            opacity: 1;
        }

        .image-box:hover .image-text {
            color: #fff;
            /* or any contrasting color */
        }

        /* CTA button */
        .cta-button {
            background-color: #d4af37;
            color: white;
            border: none;
            padding: 12px 25px;
            font-size: 16px;
            font-weight: 500;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .cta-button:hover {
            background-color: #d4af37;
        }

        /* Mobile responsive adjustments */
        @media (max-width: 767px) {
            .image-text {
                font-size: 24px;
                left: 10px;
                bottom: 10px;
            }
        }
        
         @media(max-width:768px) {
            .arrow {
                display: none;
            }
        }

        .project-timeline {
            text-align: center;
            padding: 60px 20px;
            background-color: #f5f0dd4f;
        }

        .title {
            font-size: 28px;
            font-weight: 400;
            margin-bottom: 50px;
        }

        .highlight {
            color: #d4af37;
        }

        .timeline {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            overflow-x: auto;
            padding: 0 10px;
        }

        .step {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 180px;
            text-align: center;
            position: relative;
        }

        .step-label {
            margin-top: 15px;
                font-size: 22px;
            color: #333;
            line-height: 1.4;
        }

        .circle {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            background-color: white;
            color: black;
            border: 2px solid #d4af37;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 28px;
            transition: background-color 0.5s, color 0.5s;
        }

        .animated-circle {
            animation: fillColor 0.6s forwards;
            animation-delay: 3s;
        }

        .delay-1 {
            animation-delay: 3.5s;
        }

        .delay-2 {
            animation-delay: 4s;
        }

        .delay-3 {
            animation-delay: 4.5s;
        }

        .delay-4 {
            animation-delay: 5s;
        }

        @keyframes fillColor {
            from {
                background-color: white;
                color: black;
            }

            to {
                background-color: #d4af37;
                color: white;
            }
        }

        .arrow {
            flex-shrink: 0;
            /*width: 70px;*/
            height: 2px;
            background-color: #d4af37;
            margin: 0 5px;
            position: relative;
            top: -40px;
            /* aligns the arrow to circle center */
        }

        .arrow::after {
            content: '';
            position: absolute;
            top: -6px;
            right: -8px;
            width: 0;
            height: 0;
            border-top: 7px solid transparent;
            border-bottom: 7px solid transparent;
            border-left: 10px solid #d4af37;
        }
        
        
           .about p {
            padding: 5px;
            font-family: poppins;
            line-height: 1.6;
            font-size: 22px;
        }

        .about h3 {
            font-size: 36px;
            font-family: serif;
        }

        .shine-effect-wrapper {
            position: relative;
            display: inline-block;
            overflow: hidden;
        }

        .shine-image {
            display: block;
            width: 100%;

        }

        /* Shining effect */
        .shine-effect-wrapper::after {
            content: '';
            position: absolute;
            top: 0;
            left: -75%;
            width: 50%;
            height: 100%;
            background: linear-gradient(120deg,
                    rgba(255, 255, 255, 0) 0%,
                    rgba(255, 255, 255, 0.5) 50%,
                    rgba(255, 255, 255, 0) 100%);
            animation: shine 2s infinite;
        }

        @keyframes shine {
            0% {
                left: -75%;
            }

            100% {
                left: 125%;
            }
        }
        
         .swiper {
            width: 100%;
            max-width: 1100px;
            padding-bottom: 40px;
            margin: auto;
        }

        .swiper-slide {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .testimonial-section {
            text-align: center;
            padding: 80px 20px;
        }

        .testimonial-title {
            font-size: 32px;
            font-weight: bold;
            margin-bottom: 50px;
        }

        .testimonial-title span {
            color: #d4af37;
        }

        .image-container {
            position: relative;
            width: 130px;
            height: 130px;
            margin: 0 auto 20px;
        }

        .image-container img {
            width: 130px;
            height: 130px;
            border-radius: 50%;
            border: 5px solid white;
            object-fit: cover;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .quote-icon {
            position: absolute;
            bottom: -10px;
            right: -10px;
            background: #d4af37;
            color: #fff;
            border-radius: 50%;
            width: 32px;
            height: 32px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .testimonial h4 {
            font-size: 16px;
            margin-bottom: 5px;
        }

        .testimonial p {
            font-size: 14px;
            color: #444;
            max-width: 220px;
            margin: auto;
        }
        
          .video-section {
      position: relative;
      width: 100%;
      height: 100vh;
      overflow: hidden;
    }

    .video-section video {
      position: absolute;
      top: 50%;
      left: 50%;
      min-width: 100%;
      min-height: 100%;
      width: auto;
      height: auto;
      transform: translate(-50%, -50%);
      object-fit: cover;
      z-index: 1;
    }

    .video-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5); /* semi-transparent overlay */
      z-index: 2;
    }

    .video-content {
      position: relative;
      z-index: 3;
      color: #fff;
      text-align: center;
      top: 50%;
      transform: translateY(-50%);
      padding: 0 20px;
    }

    .video-content h1 {
      font-size: 3rem;
      margin-bottom: 20px;
    }

    .video-content p {
      font-size: 1.2rem;
      max-width: 600px;
      margin: auto;
    }

    @media (max-width: 768px) {
      .video-content h1 {
        font-size: 2rem;
      }

      .video-content p {
        font-size: 1rem;
      }
    }
    
      .blog-section {
      padding: 60px 20px;
      background-color: #fff;
      text-align: center;
    }

    .blog-section h2 {
      font-size: 2.5rem;
      color: #333;
      margin-bottom: 40px;
    }

    .swiper {
      max-width: 1200px;
      margin: auto;
    }

    .swiper-slide {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: transform 0.3s;
    }

    .swiper-slide:hover {
      transform: translateY(-5px);
    }

    .blog-img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .blog-content {
      padding: 20px;
      text-align: left;
    }

    .blog-content h4 {
      font-size: 1.2rem;
      margin-bottom: 10px;
      color: #222;
    }

    .blog-content p {
      font-size: 0.95rem;
      color: #555;
    }

    /* Swiper nav buttons */
    .swiper-button-next,
    .swiper-button-prev {
      color: #222;
    }

    @media (max-width: 768px) {
      .blog-section h2 {
        font-size: 2rem;
      }
    }
    
     .site-footer {
            background-color: black;
            color: #ccc;
            padding: 60px 20px 30px;
            font-family: 'Segoe UI', sans-serif;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: auto;
        }

        .footer-column h3 {
            color: #fff;
            font-size: 18px;
            margin-bottom: 20px;
            border-bottom: 2px solid #7c4dff;
            padding-bottom: 8px;
        }

        .footer-column p,
        .footer-column ul,
        .footer-column li {
            font-family: poppins;
            line-height: 1.6;
            font-size: 18px;
            text-align: justify;
        }

        .footer-column li {
            padding: 5px 0;
        }

        .footer-column a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-column a:hover {
            color: #7c4dff;
        }

        .footer-column ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-column .contact-info li {
            margin-bottom: 10px;
        }

        .map-container iframe {
            border: 0;
            border-radius: 8px;
        }

        .footer-bottom {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #333;
            font-size: 13px;
            color: #999;
        }
        
        
         .breadcrumb-section {
            position: relative;
            height: 500px;
            background-image: url('https://raxalon.com/img/Construction-Management.png');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            overflow: hidden;
        }
        
        .breadcrumb-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
        }
        
        .breadcrumb-content {
            position: relative;
            z-index: 1;
        }
        
        .breadcrumb-content h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .breadcrumb-links {
            display: flex;
            justify-content: center;
            list-style: none;
            padding: 0;
            font-size: 1.1rem;
        }
        
        .breadcrumb-links li {
            margin: 0 10px;
        }
        
        .breadcrumb-links a {
            color: #fff;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .breadcrumb-links a:hover {
            color: #f8b400;
        }
        
        .breadcrumb-links .separator {
            color: #ccc;
        }
        
        .breadcrumb-links .current {
            color: #f8b400;
            font-weight: bold;
        }
        
        .services-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .section-title h1 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: #222;
        }
        
        .section-title h1 span {
            color: #E89F71;
        }
        
        .section-title p {
            font-size: 1rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .tabs-wrapper {
            position: relative;
            margin: 50px 0;
        }
        
        .tabs-nav {
            display: flex;
            justify-content: center;
            position: relative;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }
        
        .tab-button {
            width: 160px;
            height: 160px;
            border-radius: 50%;
            background: #F9F1E7;
            display: flex;
            align-items: center;
            justify-content: space-around;
            margin: 0 15px;
            cursor: pointer;
            font-weight: 700;
            color: #666;
            border: 3px solid transparent;
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
        }
        
        .tab-button.active {
            background: #E89F71;
            color: white;
            border-color: #D77D4A;
            transform: scale(1.1);
        }
        
        .tabs-nav::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 2px;
            background: #F9F1E7;
            z-index: 1;
        }
        
        .tab-content {
            display: none;
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 30px rgba(0,0,0,0.05);
            animation: fadeIn 0.5s ease;
        }
        
        .tab-content.active {
            display: block;
        }
        
        .tab-content h2 {
            color: #E89F71;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        
        .tab-content ul {
            list-style: none;
            margin-bottom: 20px;
        }
        
        .tab-content ul li {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
            font-size: 1rem;
            font-weight: 500;
        }
        
        .tab-content ul li:last-child {
            border-bottom: none;
        }
        
        .tab-content p {
            color: #666;
            margin-top: 20px;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        /* Mobile Responsive Styles */
        @media (max-width: 768px) {
            .section-title h1 {
                font-size: 1.5rem;
            }
            
                .tabs-nav {
        /* flex-direction: column; */
        align-items: center;
        margin-bottom: 30px;
        flex-wrap: wrap;
        justify-content: space-around;
    }
            
            .tabs-nav::before {
                display: none;
            }
            
           .tab-button{
        margin: 10px 0;
        width: 150px;
        height: 150px;
        font-size: 0.9rem;
        padding: 40px 13px;
        /* justify-content: space-around; */
    }
            
            .tab-content {
                padding: 20px;
            }
            
            .tab-content h2 {
                font-size: 1.3rem;
            }
        }
        
        @media (max-width: 480px) {
            .services-container {
                padding: 30px 15px;
            }
            
            .section-title h1 {
                font-size: 1.3rem;
            }
            
            .tab-content {
                padding: 15px;
            }
        }