:root {
    --primary: #69b6c9;
    --secondary: #4fb9d0;
    --accent: #f36f21;
    --light: #f8f9fa;
    --dark: #000;
    --text: #333;
    --gray: #6c757d;
    --transition: all 0.4s ease;
    --shadow: 0 5px 15px rgba(0,0,0,0.1);
    --light-orange: #ffa94d;
    --dark-orange: #e05e16;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: #fff;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Lora', serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: white;
    color: black;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 2px solid var(--light-orange);
}

.btn:hover {
    background-color: var(--dark-orange);
    transform: translateY(-3px);
    color: white;
    box-shadow: 0 8px 20px rgba(243, 111, 33, 0.3);
}

.btn-outline {
    background: white;
    border: 2px solid var(--light-orange);
    color: black;
}

.btn-outline:hover {
    background: var(--dark-orange);
    color: white;
}

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 2.0rem;
    display: inline-block;
    position: relative;
    padding-bottom: 15px;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

.section-title p {
    color: var(--gray);
    max-width: 700px;
    margin: 15px auto 0;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    margin-right: 10px;
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--primary);
    margin: 0;
}

.logo a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
}

.logo span {
    color: var(--accent);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

nav ul li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

nav ul li a:hover {
    color: var(--primary);
}

nav ul li a:hover:after {
    width: 100%;
}

/* Mobile Menu Button */
.mobile-menu {
    display: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}

/* Mobile Navigation Menu */
nav ul.mobile-active {
    position: fixed;
    top: 80px;
    right: 15px;
    width: 80%;
    max-width: 320px;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-radius: 10px;
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
    transition: all 0.3s ease;
}

nav ul.mobile-active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

nav ul.mobile-active li {
    width: 100%;
    text-align: left;
    border-bottom: 1px solid #eee;
    margin: 0;
}

nav ul.mobile-active li:last-child {
    border-bottom: none;
}

nav ul.mobile-active li a {
    padding: 15px 20px;
    display: block;
    transition: all 0.3s ease;
}

nav ul.mobile-active li a:hover {
    background-color: #f0f8ff;
    color: var(--primary);
    padding-left: 25px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(13, 152, 186, 0.9) 0%, rgba(79, 185, 208, 0.85) 100%), url('https://images.unsplash.com/photo-1588776813677-77d08c5b72a7?ixlib=rb-4.0.3') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    padding-top: 100px;
    position: relative;
}

.hero-content {
    max-width: 650px;
    animation: fadeInUp 1s ease;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
     margin-top: 35px;
    color: white;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 29px;
    margin-top:20px;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 10px;
}

.hero-features {
    display: flex;
    margin-top: 30px;
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    animation: fadeIn 1s ease;
}

.feature-icon {
    background: red;
    width: 140px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.5rem;
}

/* About Section */
.about {
    background: var(--light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    animation: fadeInLeft 1s ease;
}

.about-image img {
    width: 100%;
    display: block;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text {
    animation: fadeInRight 1s ease;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 15px;
}

.about-features {
    margin: 30px 0;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Default: 2 columns */
    gap: 20px;
}

/* 👇 Mobile screens ke liye (max-width: 600px) */
@media (max-width: 600px) {
    .about-features {
        grid-template-columns: 1fr; /* 1 column → har item alag row me */
    }
}

.about-feature {
    display: flex;
    align-items: flex-start;
}

.about-feature i {
    color: var(--primary);
    font-size: 1.5rem;
    margin-right: 15px;
}

.about-btns {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    animation: fadeInUp 0.5s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-img {
    height: 200px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Testimonials - Instagram Reels Style */
.testimonials-video-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.testimonials-video-grid::-webkit-scrollbar {
    display: none;
}

.testimonials-video-grid > div {
    flex: 0 0 280px;
    scroll-snap-align: start;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.testimonial-controls button {
    width: 40px;
    height: 40px;
    background: #007cba;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    animation: fadeInLeft 1s ease;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-detail i {
    color: var(--primary);
    font-size: 1.5rem;
    min-width: 40px;
    padding-top: 5px;
}

.contact-text {
    margin-left: 15px;
}

.contact-text h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.map {
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 30px;
    box-shadow: var(--shadow);
}

.map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    animation: fadeInRight 1s ease;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(13, 152, 186, 0.2);
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent);
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    color: #bbb;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }

    .about-content,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-features {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .header-container {
        position: relative;
    }

    /* Mobile Menu Button */
    .mobile-menu {
        display: block;
    }

    /* Logo ko right side par karo */
    .logo {
        margin-left: auto;
        order: 2;
    }

    /* Desktop menu ko hide karo, mobile-active class ke through show karo */
    nav ul {
        position: absolute;
        top: 80px;
        right: 15px;
        width: 80%;
        max-width: 320px;
        background: white;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        border-radius: 10px;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transform: scale(0.95);
        transition: all 0.3s ease;
        z-index: 2;
    }

    nav ul li {
        border-bottom: 1px solid #eee;
    }

    nav ul li:last-child {
        border-bottom: none;
    }

    nav ul li a {
        padding: 15px 20px;
        display: block;
    }

    nav ul li a:hover {
        background-color: #f0f8ff;
        color: var(--primary);
        padding-left: 25px;
    }

    /* Jab active ho to dikhao */
    nav ul.mobile-active {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
    }

    /* Hero section padding adjust */
    .hero {
        padding-top: 180px;
        padding-bottom: 180px;
        min-height: 120vh;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    section {
        padding: 60px 0;
    }

    .service-card {
        max-width: 350px;
        margin: 0 auto;
    }

    .about-btns {
        flex-direction: column;
    }
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
    text-decoration: none;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Scroll Padding for Smooth Anchors */
html {
    scroll-padding-top: 110px;
}