 :root {
            --primary: #fd8216;
            --secondary: #ff994a;
            --dark: #2B2B2B;
            --light: #F8F9FA;
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
       html, body {
    max-width: 100%;
    overflow-x: hidden;
    scrollbar-width: none;
}
        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            line-height: 1.6;
            color: var(--dark);
            /* overflow-x: hidden; */
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        /* Navigation */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            /* overflow-x: hidden; */
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        }

        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .logo img {
            height: 40px;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
        }

        .nav-links a {
            color: var(--dark);
            font-weight: 500;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .mobile-menu {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .social-links a{
            font-size: 20px;
        }


        /* Hero Section */
        .hero {
            min-height: 100vh;
            padding-top: 80px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 2rem;
            background: linear-gradient(135deg, var(--secondary) 0%, #fff 100%);
        }

        .hero-content {
            padding: 2rem;
        }

        .hero-title {
            font-size: clamp(2rem, 5vw, 3.5rem);
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        .hero-text {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            color: #666;
        }

        .btn {
            display: inline-block;
            padding: 1rem 2rem;
            background: var(--primary);
            color: white;
            border-radius: 50px;
            transition: var(--transition);
            border: none;
            margin: auto;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        /* Section Title Styling */
        .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--dark);
        }

        .section-title p {
            color: #666;
            font-size: 1.1rem;
        }

        /* Portfolio Section */
        .portfolio {
            padding: 6rem 0;
            background: var(--light);
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            grid-auto-rows: 100px;
            gap: 15px;
            padding: 2rem 0;
            
        }

        .portfolio-item {
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* Dynamic grid positioning */
        .portfolio-item:nth-child(1) {
            grid-column: span 8;
            grid-row: span 4;
        }

        .portfolio-item:nth-child(2) {
            grid-column: span 4;
            grid-row: span 2;
        }

        .portfolio-item:nth-child(3) {
            grid-column: span 4;
            grid-row: span 2;
        }

        .portfolio-item:nth-child(4) {
            grid-column: span 4;
            grid-row: span 3;
        }

        .portfolio-item:nth-child(5) {
            grid-column: span 4;
            grid-row: span 3;
        }

        .portfolio-item:nth-child(6) {
            grid-column: span 4;
            grid-row: span 3;
        }

        .portfolio-item:nth-child(7) {
            grid-column: span 6;
            grid-row: span 3;
        }

        .portfolio-item:nth-child(8) {
            grid-column: span 6;
            grid-row: span 3;
        }

        .portfolio-item:nth-child(9) {
            grid-column: span 12;
            grid-row: span 4;
        }

        .portfolio-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .portfolio-item:hover img {
            transform: scale(1.05);
        }

        @media (max-width: 992px) {
            .portfolio-grid {
                grid-template-columns: repeat(6, 1fr);
            }

            .portfolio-item:nth-child(1) {
                grid-column: span 6;
                grid-row: span 3;
            }

            .portfolio-item:nth-child(2),
            .portfolio-item:nth-child(3) {
                grid-column: span 3;
                grid-row: span 2;
            }

            .portfolio-item:nth-child(4),
            .portfolio-item:nth-child(5),
            .portfolio-item:nth-child(6) {
                grid-column: span 6;
                grid-row: span 3;
            }

            .portfolio-item:nth-child(7),
            .portfolio-item:nth-child(8) {
                grid-column: span 3;
                grid-row: span 2;
            }

            .portfolio-item:nth-child(9) {
                grid-column: span 6;
                grid-row: span 3;
            }
        }

        @media (max-width: 576px) {
            .portfolio-grid {
                grid-template-columns: 1fr;
                grid-auto-rows: 200px;
                gap: 10px;
                padding: 1rem 0;
                width: 100%;
            }

            .portfolio-item:nth-child(n) {
                grid-column: span 1;
                grid-row: auto;
                aspect-ratio: 3/5;
                height: 100%;
                width: 100%;
            }

            .portfolio-item img {
                width: 100%;
                object-fit: cover;
                object-position: center;
            }

            /* Feature images slightly taller */
            .portfolio-item:nth-child(1),
            .portfolio-item:nth-child(9) {
                aspect-ratio: 3/4;
            }

            /* Landscape images */
            .portfolio-item:nth-child(4),
            .portfolio-item:nth-child(7) {
                aspect-ratio: 4/3;
            }
        }

        /* Extra small devices */
        @media (max-width: 375px) {
            .portfolio-item:nth-child(n) {
                aspect-ratio: 1/1;
            }
        }

        /* Fullscreen Modal */
        .fullscreen-modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.95);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }

        .fullscreen-modal.active {
            display: flex;
        }

        .fullscreen-content {
            position: relative;
            max-width: 90vw;
            max-height: 90vh;
        }

        .fullscreen-image {
            max-width: 100%;
            max-height: 90vh;
            object-fit: contain;
        }

        .fullscreen-close {
            position: fixed;
            top: 2rem;
            right: 2rem;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            transition: all 0.3s ease;
        }

        .fullscreen-nav {
            position: fixed;
            top: 50%;
            transform: translateY(-50%);
            color: white;
            font-size: 2rem;
            cursor: pointer;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            transition: all 0.3s ease;
        }

        .fullscreen-prev {
            left: 2rem;
        }

        .fullscreen-next {
            right: 2rem;
        }

        .fullscreen-close:hover,
        .fullscreen-nav:hover {
            background: rgba(255,255,255,0.2);
            transform: scale(1.1);
        }

        .fullscreen-prev:hover {
            transform: translateY(-50%) scale(1.1);
        }

        .fullscreen-next:hover {
            transform: translateY(-50%) scale(1.1);
        }

        /* Pricing Section */
        .pricing {
            padding: 6rem 0;
            background: var(--light);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .pricing-card {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }

        .pricing-card:hover {
            transform: translateY(-10px);
        }

        .price {
            font-size: 2.5rem;
            color: var(--primary);
            margin: 1rem 0;
        }
        li.disabled {
            color: #999;
        }

        .features-list .disabled i {
            color: #999;
        }

        .features-list {
            list-style: none;
            margin: 2rem 0;
        }

        .features-list li {
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .features-list i {
            color: var(--primary);
        }

        .blog {
            padding: 6rem 0;
            background: var(--light);
        }
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }
        .blog-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: var(--transition);
            margin-bottom: 2rem;
        }
        .blog-card:hover {
            transform: translateY(-10px);
        }
        .blog-image {
            height: 250px;
            overflow: hidden;
        }
        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        .blog-card:hover .blog-image img {
            transform: scale(1.1);
        }
        .blog-content {
            padding: 2rem;
        }
        .blog-date {
            color: var(--primary);
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }
        .blog-title {
            margin-bottom: 1rem;
        }
        @media (max-width: 992px) {
            .blog-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 576px) {
            .blog-grid {
                grid-template-columns: 1fr;
                .blog-grid {
        width: 100%;  /* Prevent overflow */
    }
            }
            .blog-image {
                height: 180px;
            }
            .blog-content {
                padding: 1rem;
            }
        }

        /* Contact Section */
        .contact {
            padding: 6rem 0;
            background: var(--secondary);
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-control {
            width: 100%;
            padding: 1rem;
            border: 1px solid #ddd;
            border-radius: 10px;
            font-family: inherit;
        }

        /* Footer */
        .footer {
            padding: 1.5rem 0;
            background: var(--light);
            text-align: center;
        }

        .copyright {
            color: var(--dark);
            font-size: 0.9rem;
            margin: 0;
            padding-top: 20px;
        }

        .footer a:hover{
            color: var(--primary);
            text-decoration: underline;
        }
        .footer_partners {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 15px;
            font-size: 8px;
            font-weight: 100;
        }
        /* .footer_partners a{
            font-size: 8px;
        } */

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: rgba(255, 255, 255, 0.95);
                flex-direction: column;
                align-items: center;
                padding: 2rem;
                transition: 0.3s ease;
                backdrop-filter: blur(10px);
                /* overflow-x: hidden; */
            }

            .nav-links.active {
                left: 0;
            }

            .mobile-menu {
                display: block;
            }

            .social-links {
                margin-top: 2rem;
                font-size: 2rem;
            }

            .social-links a {
                font-size: 20px;
                color: var(--primary);
                transition: var(--transition);
            }

            .social-links a:hover {
                transform: scale(1.1);
            }

            .hero {
                grid-template-columns: 1fr;
                text-align: center;
                padding-top: 70px;
            }

            .hero-content {
                order: 2;
            }

            .hero-image {
                order: 1;
            }
            .footer_partners {
            font-size: 10px;
            font-weight: 100;
            }
            .footer_partners a{
            font-size: 10px;
        }
        .contact-map{
                width: 100%;
            }
            .contact-map iframe{
                width: 100%;
            }

        }

        /* WhatsApp Button */
        .whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    cursor: pointer;
    transition: transform 0.3s ease;
    background-color: #25D366;
    width: 50px; /* Slightly increased for better touch area */
    height: 50px;
    border-radius: 50%;
    color: #ffffff;
    display: flex; /* Use flexbox */
    align-items: center; /* Vertically center */
    justify-content: center; /* Horizontally center */
}

.whatsapp-float i {
    font-size: 24px;
    color: white;
    text-align: center;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .animate {
            opacity: 0;
            animation: fadeIn 1s ease forwards;
        }

        .animate.delay-1 { animation-delay: 0.2s; }
        .animate.delay-2 { animation-delay: 0.4s; }
        .animate.delay-3 { animation-delay: 0.6s; }

        /* Enhanced Animations */
        .fade-up {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .fade-up.active {
            opacity: 1;
            transform: translateY(0);
        }

        .slide-in-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s ease;
        }

        .slide-in-left.active {
            opacity: 1;
            transform: translateX(0);
        }

        .slide-in-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s ease;
        }

        .slide-in-right.active {
            opacity: 1;
            transform: translateX(0);
        }

        /* Modern Portfolio Slideshow */
        .portfolio-slideshow {
            position: relative;
            height: 600px;
            overflow: hidden;
            border-radius: 20px;
            margin: 2rem 0;
        }

        .slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.5s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slide.active {
            opacity: 1;
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .slide-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 2rem;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: white;
            transform: translateY(100%);
            transition: transform 0.5s ease;
        }

        .slide:hover .slide-content {
            transform: translateY(0);
        }

        .slide-nav {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 1rem;
            z-index: 10;
        }

        .slide-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .slide-dot.active {
            background: white;
            transform: scale(1.2);
        }

        /* Services Section */
        .services {
            padding: 6rem 0;
            background: linear-gradient(135deg, var(--secondary) 0%, white 100%);
        }

        .service-card {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: var(--transition);
            text-align: center;
            margin-bottom: 2rem;
        }

        .service-card:hover {
            transform: translateY(-10px);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            background: #FFF1E6;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--primary);
            transition: var(--transition);
        }

        .service-card:hover .service-icon {
            background: var(--primary);
            color: white;
            transform: rotateY(360deg);
        }

        /* Why Choose Us Section */
        .why-us {
            padding: 6rem 0;
            background: var(--light);
        }

        .feature-card {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            margin-bottom: 2rem;
            padding: 2rem;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: var(--transition);
        }

        .feature-card:hover {
            transform: translateY(-5px);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: #FFF1E6;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--primary);
            transition: var(--transition);
        }

        .feature-card:hover .feature-icon {
            background: var(--primary);
            color: white;
            transform: rotate(10deg);
        }

        /* Testimonials Section */
        .testimonials {
            padding: 6rem 0;
            background: linear-gradient(135deg, var(--primary) 0%, #2B2B2B 100%);
            color: white;
        }

        .testimonial-card {
            background: rgba(0,0,0,0.2);
            backdrop-filter: blur(10px);
            padding: 2rem;
            border-radius: 20px;
            margin: 1rem;
            transition: var(--transition);
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            background: rgba(0,0,0,0.3);
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 1.5rem;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
        }

        .author-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Statistics Section */
        .stats {
            padding: 4rem 0;
            background: var(--dark);
            color: white;
        }

        .stat-item {
            text-align: center;
            padding: 2rem;
            transition: var(--transition);
        }

        .stat-item:hover {
            transform: translateY(-5px);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 1.1rem;
            opacity: 0.8;
        }

        /* Blog Section */
        .blog {
            padding: 6rem 0;
        }

        .blog-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: var(--transition);
            margin-bottom: 2rem;
        }

        .blog-card:hover {
            transform: translateY(-10px);
        }

        .blog-image {
            height: 250px;
            overflow: hidden;
        }

        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .blog-card:hover .blog-image img {
            transform: scale(1.1);
        }

        .blog-content {
            padding: 2rem;
            gap: 20px;
        }

        .blog-date {
            color: var(--primary);
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }

        .blog-title {
            margin-bottom: 1rem;
        }
        .read{
            padding: 1rem 0rem;
        }
        .read-more {
            align-self: flex-start;
            background: var(--primary);
            color: #fff;
            padding: 0.6rem 1rem;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            box-shadow: 0 2px 8px rgba(255,122,89,0.08);
        }
        .read-more:hover {
            background: #e8783c;
        }

        /* Enhanced Contact Form */
        .form-control {
            background: rgba(255,255,255,0.9);
            border: 2px solid transparent;
            transition: var(--transition);
        }

        .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(183, 110, 121, 0.1);
        }

        .contact-info {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            margin-top: 3rem;
        }

        .contact-item {
            flex: 1;
            min-width: 250px;
            text-align: center;
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-size: 1.5rem;
            color: var(--primary);
            transition: var(--transition);
        }

        .contact-item:hover .contact-icon {
            background: var(--primary);
            color: white;
            transform: rotateY(360deg);
        }

        /* Responsive Grid */
        .row {
            display: flex;
            flex-wrap: wrap;
            margin: -1rem;
        }

        .col-lg-3, .col-lg-4, .col-lg-6, .col-md-6 {
            padding: 1rem;
        }

        .col-lg-3 { width: 25%; }
        .col-lg-4 { width: 33.333333%; }
        .col-lg-6 { width: 50%; }

        @media (max-width: 992px) {
            .col-lg-3, .col-lg-4 { width: 50%; }
            .col-lg-6 { width: 100%; }
        }

        @media (max-width: 768px) {
            .col-lg-3, .col-lg-4, .col-lg-6, .col-md-6 { width: 100%; }
            .contact-info { flex-direction: column; }
            .nav .container{
                width: 100%;
                margin: 0 auto;
                padding: 0;
            }
            
        }

        .contact-link {
            color: var(--dark);
            text-decoration: none;
            transition: var(--transition);
            display: block;
        }

        .contact-link:hover {
            color: var(--primary);
        }

        .contact-item {
            text-align: center;
            cursor: pointer;
        }

        .contact-item:hover .contact-icon {
            background: var(--primary);
            color: white;
            transform: rotateY(360deg);
        }
        .contact-map{
            width: 80%;
            margin: auto;
        }
        .contact-map iframe {
        width: 100%;
        height: 200px;
        border-radius: 8px;
        }