* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f9f9f9;
            overflow-x: hidden;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Header Styles */
        header {
            background-color: #fff;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            position: fixed;
            width: 100%;
            z-index: 1000;
            top: 0;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo-icon {
            color: #FF6B35;
            font-size: 32px;
            margin-right: 10px;
            animation: pulse 2s infinite;
        }

        .logo-text {
            font-size: 24px;
            font-weight: 700;
            color: #2C3E50;
        }

        .logo-text span {
            color: #FF6B35;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 30px;
        }

        .item {
            text-decoration: none;
            color: #2C3E50;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
            text-shadow: #2C3E50;
        }
        .btn{
            text-decoration: none;
            color: #ffffff;
            font-weight: 500;
            transition: color 0.3s;
            position: relative; 
        }
        .btn:hover{
            color: #FF6B35;
        }


        nav ul li a:hover {
            color: #FF6B35;
        }

        .item::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: #FF6B35;
            left: 0;
            bottom: -5px;
            transition: width 0.3s;
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        .mobile-menu {
            display: none;
            font-size: 24px;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
    background-color: #000;
    color: white;
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide:nth-child(1) {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.8)), 
                url('https://images.unsplash.com/photo-1734621908591-2674310ef402?q=80&w=1935&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
}

.carousel-slide:nth-child(2) {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.8)), 
                url('https://images.unsplash.com/photo-1664396113489-e50bddd4a777?q=80&w=1171&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
}

.carousel-slide:nth-child(3) {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.8)), 
                url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?ixlib=rb-1.2.1&auto=format&fit=crop&w=1600&q=80');
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    justify-content: center;
    margin-top: 250px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero h1 {
    font-size: 3.8rem;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 1s ease-out;
}

.hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 35px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B35, #FF8E53);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.4s ease;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    animation: pulseGlow 2s infinite;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FF8E53, #FF6B35);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
}

.btn:hover::before {
    left: 0;
}

.btn i {
    margin-right: 10px;
}


/* Carousel Controls */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 107, 53, 0.8);
    border: none;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}


.carousel-btn:hover {
    background: #FF6B35;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

.carousel-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.indicator {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #FF6B35;
    transform: scale(1.2);
    box-shadow: 0 0 10px #FF6B35;
}

.indicator:hover {
    background: #FF6B35;
}

/* Enhanced Floating Cylinders */
.floating-cylinder {
    position: absolute;
    width: 90px;
    height: 220px;
    background: linear-gradient(to bottom, #FF6B35 0%, #FF8E53 30%, #FF6B35 70%, #2C3E50 100%);
    border-radius: 45px;
    opacity: 0.9;
    z-index: 3;
    box-shadow: 
        inset 0 10px 20px rgba(255, 255, 255, 0.2),
        inset 0 -10px 20px rgba(0, 0, 0, 0.3),
        0 10px 30px rgba(0, 0, 0, 0.4);
    animation: float 6s ease-in-out infinite;
}

.cylinder-cap {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 25px;
    background: #2C3E50;
    border-radius: 50px;
}

.cylinder-valve {
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    height: 15px;
    background: #FFD700;
    border-radius: 5px;
}

.cylinder-1 {
    top: 20%;
    left: 5%;
    animation-delay: 0s;
}

.cylinder-2 {
    bottom: 20%;
    right: 8%;
    animation-delay: 1.5s;
}

.cylinder-3 {
    top: 60%;
    left: 80%;
    width: 70px;
    height: 170px;
    animation-delay: 3s;
}

/* Scroll Down Animation */
.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    margin: 10px auto;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: #FF6B35;
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

.arrows {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-top: 5px;
}

.arrows span {
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid #FF6B35;
    border-right: 2px solid #FF6B35;
    transform: rotate(45deg);
    margin: -4px;
    animation: scrollArrow 2s infinite;
}

.arrows span:nth-child(2) {
    animation-delay: 0.2s;
}

.arrows span:nth-child(3) {
    animation-delay: 0.4s;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
    }
    50% { 
        transform: translateY(-30px) rotate(2deg); 
    }
}

@keyframes pulseGlow {
    0%, 100% { 
        box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    }
    50% { 
        box-shadow: 0 10px 40px rgba(255, 107, 53, 0.6);
    }
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

@keyframes scrollArrow {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3.2rem;
    }
    
    .floating-cylinder {
        opacity: 0.7;
    }
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .carousel-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .floating-cylinder {
        width: 70px;
        height: 180px;
    }
    
    .cylinder-3 {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 150px 0 80px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 14px 32px;
        font-size: 1.1rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .prev-btn {
        left: 15px;
    }
    
    .next-btn {
        right: 15px;
    }
    
    .floating-cylinder {
        opacity: 0.5;
    }
    
    .cylinder-2 {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .carousel-indicators {
        bottom: 30px;
    }
    
    .scroll-down {
        display: none;
    }
}

/* About Section */
/* styles.css - About Us Section */
/* About Us Section - Text-Focused Design */
.about-us {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f2f5 100%);
    position: relative;
    overflow: hidden;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* Left Column Styles */
.about-left {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.about-stats {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #FF6B35;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-stats:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
}

.stat-item {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF6B35, #FF8E53);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: white;
    font-size: 24px;
}

.stat-details {
    flex: 1;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: #2C3E50;
    line-height: 1;
    margin-bottom: 5px;
    background: linear-gradient(135deg, #2C3E50, #4A6572);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-text {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-features {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border-top: 5px solid #FF6B35;
}

.about-features h4 {
    font-size: 1.5rem;
    color: #2C3E50;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.about-features h4::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: #FF6B35;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 15px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.feature-item:hover {
    background: white;
    transform: translateX(10px);
    border-left: 4px solid #FF6B35;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}



.feature-content {
    flex: 1;
}

.feature-content h5 {
    font-size: 1.1rem;
    color: #2C3E50;
    margin-bottom: 5px;
}

.feature-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.about-cta {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #2C3E50, #34495e);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(44, 62, 80, 0.2);
}

.about-btn {
    background: white;
    color: #2C3E50;
    padding: 18px 45px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.about-btn:hover {
    background: #FF6B35;
    color: white;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(255, 107, 53, 0.4);
}

.about-btn i {
    margin-right: 10px;
}

/* Right Column Styles */
.about-right {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.about-intro h3 {
    font-size: 2.2rem;
    color: #2C3E50;
    margin-bottom: 25px;
    line-height: 1.3;
    position: relative;
    padding-bottom: 20px;
}

.about-intro h3::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 4px;
    background: #FF6B35;
    bottom: 0;
    left: 0;
}

.about-intro > p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.05));
    border-left: 5px solid #FF6B35;
    padding: 25px;
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 30px;
}

.highlight-box i {
    font-size: 2rem;
    color: #FF6B35;
    margin-top: 5px;
}

.highlight-box p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.6;
    margin: 0;
}

.mission-vision-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.mission-card, .vision-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
}

.card-header {
    display: flex;
    align-items: center;
    padding: 30px 30px 20px;
    background: linear-gradient(135deg, #FF6B35, #FF8E53);
}

.mission-card .card-header {
    background: linear-gradient(135deg, #2C3E50, #4A6572);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: white;
    font-size: 24px;
}

.card-header h4 {
    font-size: 1.8rem;
    color: white;
    margin: 0;
}

.card-body {
    padding: 30px;
}

.card-body p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

.core-values {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.core-values h4 {
    font-size: 1.5rem;
    color: #2C3E50;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.core-values h4::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: #FF6B35;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.value-item {
    display: flex;
    align-items: center;
    padding: 25px;
    border-radius: 15px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.value-item:hover {
    background: white;
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-number {
    font-size: 2rem;
    font-weight: 800;
    color: #FF6B35;
    margin-right: 25px;
    opacity: 0.7;
    font-family: 'Roboto', sans-serif;
}

.value-content {
    flex: 1;
}

.value-content h5 {
    font-size: 1.2rem;
    color: #2C3E50;
    margin-bottom: 8px;
}

.value-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Animated Background Elements */
.about-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.bg-cylinder {
    position: absolute;
    width: 100px;
    height: 250px;
    background: linear-gradient(to bottom, rgba(255, 107, 53, 0.03) 0%, rgba(255, 107, 53, 0.08) 100%);
    border-radius: 50px;
    opacity: 0.5;
}

.cyl-1 {
    top: 10%;
    left: 5%;
    animation: bgFloat 25s ease-in-out infinite;
}

.cyl-2 {
    bottom: 15%;
    right: 8%;
    animation: bgFloat 30s ease-in-out infinite reverse;
}

.cyl-3 {
    top: 50%;
    left: 80%;
    width: 80px;
    height: 200px;
    animation: bgFloat 35s ease-in-out infinite;
}

.bg-bubble {
    position: absolute;
    background: rgba(255, 107, 53, 0.03);
    border-radius: 50%;
}

.bubble-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    right: 15%;
    animation: bubbleFloat 20s ease-in-out infinite;
}

.bubble-2 {
    width: 120px;
    height: 120px;
    bottom: 30%;
    left: 10%;
    animation: bubbleFloat 25s ease-in-out infinite reverse;
}

.bubble-3 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 5%;
    animation: bubbleFloat 30s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .about-content {
        gap: 50px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-left, .about-right {
        width: 100%;
        max-width: 700px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .about-us {
        padding: 80px 0;
    }
    
    .about-intro h3 {
        font-size: 1.8rem;
    }
    
    .stat-item {
        padding: 15px 0;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .about-stats,
    .about-features,
    .core-values {
        padding: 30px;
    }
    
    .mission-vision-container {
        grid-template-columns: 1fr;
    }
    
    .bg-cylinder, .bg-bubble {
        opacity: 0.3;
    }
}

@media (max-width: 576px) {
    .about-stats {
        padding: 25px;
    }
    
    .stat-item {
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
    }
    
    .stat-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    
    .feature-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .highlight-box {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .about-btn {
        padding: 16px 35px;
        font-size: 1.1rem;
    }
    
    .value-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .value-number {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .card-header h4{
        font-size: 1.5rem;
    }
}

/* Animations */
@keyframes bgFloat {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    25% {
        transform: translateY(-30px) translateX(15px) rotate(2deg);
    }
    50% {
        transform: translateY(0) translateX(30px) rotate(0deg);
    }
    75% {
        transform: translateY(30px) translateX(15px) rotate(-2deg);
    }
}

@keyframes bubbleFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    33% {
        transform: translateY(-40px) scale(1.1);
    }
    66% {
        transform: translateY(40px) scale(0.9);
    }
}
        /* Services Section */
        .services {
            padding: 100px 0;
            background-color: #fff;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: #2C3E50;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            width: 70px;
            height: 4px;
            background-color: #FF6B35;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        .section-title p {
            color: #7f8c8d;
            max-width: 700px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .service-card {
            background-color: #fff;
            border-radius: 10px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.4s, box-shadow 0.4s;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background-color: #FF6B35;
            transform: scaleX(0);
            transition: transform 0.4s;
            transform-origin: left;
            z-index: -1;
        }

        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-icon {
            font-size: 50px;
            color: #FF6B35;
            margin-bottom: 25px;
            display: inline-block;
            animation: bounce 2s infinite;
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #2C3E50;
        }

        .service-card p {
            color: #666;
        }

        /* Why Choose Us */
        .why-us {
            padding: 100px 0;
            background-color: #f5f7fa;
        }

        .features {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 40px;
        }

        .feature {
            flex: 1;
            min-width: 300px;
            background-color: #fff;
            padding: 40px 30px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: transform 0.4s;
        }

        .feature:hover {
            transform: translateY(-10px);
        }

        .feature-icon {
            font-size: 40px;
            color: #FF6B35;
            margin-bottom: 20px;
            display: inline-block;
        }

        .feature h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #2C3E50;
        }

        /* CTA Section */
        .cta {
            padding: 100px 0;
            background: linear-gradient(135deg, #FF6B35, #FF8E53);
            color: white;
            text-align: center;
        }

        .cta h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .cta p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 40px;
        }

        .cta .btn {
            background-color: white;
            color: #ffffff;
        }

        .cta .btn:hover {
            background-color: transparent;
            color: white;
            border-color: white;
        }

        /* Footer - Complete Styles */
footer {
    background: linear-gradient(135deg, #1a2530 0%, #2C3E50 100%);
    color: #ecf0f1;
    padding: 80px 0 20px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #FF6B35, #FF8E53, #FF6B35);
    background-size: 200% 100%;
    animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: white;
    position: relative;
    padding-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: #FF6B35;
    bottom: 0;
    left: 0;
    border-radius: 2px;
}

.footer-column:first-child h3::after {
    left: 0;
    width: 70px;
}

.footer-column p {
    color: #bdc3c7;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-column a {
    color: #bdc3c7;
    margin-bottom: 12px;
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    position: relative;
    padding-left: 0;
}

.footer-column a:hover {
    color: #FF6B35;
    transform: translateX(5px);
}

.footer-column a::before {
    content: '›';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #FF6B35;
}

.footer-column a:hover::before {
    opacity: 1;
    left: -10px;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    transition: all 0.3s ease;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

.social-icons a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.social-icons a:hover::before {
    left: 100%;
}

.social-icons a:hover {
    background: #FF6B35;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

.social-icons a i {
    font-size: 18px;
    color: #ecf0f1;
}

/* Contact Info Styling */
.footer-column .contact-info {
    margin-top: 5px;
}

.address-section {
    display: flex;
    
}

.address-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    margin-top: 4px;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}


.address-icon i {
    color: #FF6B35;
    font-size: 18px;
}

.address-details {
    flex: 1;
}

.address-line {
    display: flex;
    margin-bottom: 5px;
    line-height: 1.5;
    flex-wrap: wrap;
}

.address-label {
    color: #95a5a6;
    font-weight: 500;
    min-width: 140px;
    font-size: 0.85rem;
    text-transform: capitalize;
}

.address-value {
    color: white;
    font-weight: 400;
    flex: 1;
    font-size: 0.9rem;
    min-width: 150px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    
}

.contact-item {
    display: flex;
    
    transition: all 0.3s ease;
    
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    margin-top: 4px;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    transition: all 0.3s ease;
   
}



.contact-icon i {
    color: #FF6B35;
    font-size: 18px;
}

.contact-text {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    
}

.contact-label {
    color: #95a5a6;
    font-weight: 500;
    min-width: 100px;
    font-size: 0.85rem;
    text-transform: capitalize;
}

.contact-value {
    color: white;
    font-weight: 400;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-value:hover {
    color: #FF6B35;
}

/* Copyright Section */
.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #95a5a6;
    font-size: 0.9rem;
    margin-top: 20px;
}

.copyright p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.footer-legal a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: #FF6B35;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-content {
        gap: 40px;
    }
    
    .address-label {
        min-width: 130px;
    }
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }
    
    .footer-column h3 {
        font-size: 1.3rem;
    }
    
    .address-label {
        min-width: 120px;
    }
    
    .contact-label {
        min-width: 90px;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 60px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-column:first-child h3::after {
    left: 15%;
    width: 70px;
}
    
    .footer-column h3::after {
        left: 15%;
        transform: translateX(-50%);
    }
    
    .footer-column a:hover {
        transform: translateX(0);
        padding-left: 0;
    }
    
    .footer-column a::before {
        display: none;
    }
    
    .address-icon {
        margin-right: 10px;
        
    }
    
    .address-line {
        
        margin-bottom: 8px;
        
    }
    
    .address-label {
        min-width: 100%;
        margin-bottom: 2px;
        font-size: 0.85rem;
    }
    
    .address-value {
        font-size: 0.9rem;
        margin-left: 0;
        min-width: 100%;
    }   
    .contact-icon {
        margin-right: 8px;   
    }
    .contact-label {
        min-width: 100%;
        margin-bottom: 2px;
        font-size: 0.85rem;
    }
    
    .contact-value {
        font-size: 0.9rem;
        margin-left: 0;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-legal a {
        display: block;
    }
}

@media (max-width: 576px) {
    .footer-column {
        padding: 0;
        align-items: start;
    }
    .address-label, .contact-label {
        font-size: 0.82rem;
    }
    .address-details{
        align-items: start;
    }
    
    .address-value, .contact-value {
        font-size: 0.87rem;
    }
    
    .copyright p {
        font-size: 0.85rem;
    }
}

        /* Animations */
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .features {
                flex-direction: column;
                align-items: center;
            }
            
            .feature {
                width: 100%;
                max-width: 500px;
            }
        }

        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                padding: 15px 0;
            }
            
            .logo {
                margin-bottom: 15px;
            }
            
            nav {
                width: 100%;
            }
            
            nav ul {
                justify-content: center;
                flex-wrap: wrap;
            }
            
            nav ul li {
                margin: 0 10px 10px;
            }
            
            .hero {
                padding: 150px 0 80px;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .service-card {
                padding: 30px 20px;
            }
        }

        @media (max-width: 576px) {
            .mobile-menu {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
                color: #2C3E50;
            }
            
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                text-align: center;
                margin-top: 15px;
            }
            
            nav ul.active {
                display: flex;
            }
            
            nav ul li {
                margin: 0 0 15px;
            }
            
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .btn {
                padding: 12px 28px;
                font-size: 1rem;
            }
            
        }
        @media (max-width: 480px){
            .logo-text{
                font-size: 20px;
                margin-right: 30px;    
            }
        }