        :root {
            --primary-gold: #c4975a;
            --dark-text: #2c2c2c;
            --light-gray: #f8f8f8;
            --white: #ffffff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--dark-text);
            overflow-x: hidden;
            background-color: #f5f5f5;
        }

        .hero-section {
            height: 100vh;
            width: 100%;
            background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        


        @keyframes fadeInSlide {
            from {
                opacity: 0;
                transform: translateY(-50%) translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateY(-50%) translateX(0);
            }
        }

        .navbar {
            background: rgba(0,0,0,0.1);
            backdrop-filter: blur(-100px);
            padding: 0.5rem 0;
            position: absolute;
            top: 0;
            width: 100%;
            z-index: 1000;
            transition: all 0.3s ease;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        }

      

        .navbar-brand {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 600;
            color: var(--dark-text) !important;
            text-decoration: none;
            letter-spacing: 2px;
            transition: all 0.3s ease;
        }

        .navbar-brand:hover {
            transform: scale(1.05);
        }

        .navbar-nav .nav-link {
            font-family: 'Inter', sans-serif;
            font-weight: 400;
            font-size: 0.95rem;
            color: white !important;
            margin: 0 1rem;
            padding: 0.5rem 0 !important;
            position: relative;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--primary-gold);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }

        .social-icons {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .social-icons a {
            color: var(--dark-text);
            font-size: 1.2rem;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-icons a:hover {
            color: var(--primary-gold);
            transform: translateY(-2px);
        }

        .btn-contact {
            background: var(--primary-gold);
            color: white !important;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 30px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-contact:hover {
            background: #b8894e;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(196, 151, 90, 0.4);
        }

        .hero-content {
            position: relative;
            z-index: 3;
            max-width: 600px;
            text-align: left;
            padding: 2rem;
            opacity: 0;
            animation: fadeInUp 1.5s ease-out forwards;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: 4rem;
            font-weight: 700;
            color: var(--dark-text);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: #666;
            margin-bottom: 2rem;
            font-weight: 300;
            line-height: 1.6;
        }

        .hero-cta {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            align-items: center;
        }

        .btn-primary-custom {
            background: var(--primary-gold);
            color: white;
            border: 2px solid var(--primary-gold);
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary-custom:hover {
            background: transparent;
            color: var(--primary-gold);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(196, 151, 90, 0.3);
        }

        .btn-secondary-custom {
            background: transparent;
            color: var(--dark-text);
            border: 2px solid var(--dark-text);
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-secondary-custom:hover {
            background: var(--dark-text);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(44, 44, 44, 0.3);
        }

        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 2;
        }

        .floating-element {
            position: absolute;
            background: rgba(196, 151, 90, 0.1);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .floating-element:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-element:nth-child(2) {
            width: 120px;
            height: 120px;
            top: 60%;
            left: 5%;
            animation-delay: 2s;
        }

        .floating-element:nth-child(3) {
            width: 60px;
            height: 60px;
            top: 30%;
            right: 5%;
            animation-delay: 4s;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            33% {
                transform: translateY(-20px) rotate(120deg);
            }
            66% {
                transform: translateY(10px) rotate(240deg);
            }
        }

        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        /* Responsive Design */
        @media (max-width: 991.98px) {
            .navbar-nav .nav-link {
                margin: 0.5rem 0;
                padding: 0.5rem 0 !important;
            }
            
            .social-icons {
                margin-top: 1rem;
                justify-content: center;
            }
            
            .btn-contact {
                margin-top: 1rem;
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 3rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .navbar-brand {
                font-size: 2rem;
            }
            
            .couple-silhouette {
                right: 5%;
                width: 300px;
                height: 450px;
            }
            
            .hero-content {
                text-align: center;
                padding: 1rem;
            }
            
            .hero-cta {
                justify-content: center;
            }
        }

        @media (max-width: 576px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .btn-primary-custom,
            .btn-secondary-custom {
                padding: 0.8rem 2rem;
                font-size: 0.9rem;
            }
            
            .couple-silhouette {
                display: none;
            }
        }

        /* Scroll animations */
        .scroll-fade {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease-out;
        }

        .scroll-fade.visible {
            opacity: 1;
            transform: translateY(0);
        }

         .gallery-item {
            height: 300px;
            overflow: hidden;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .gallery-item.tall {
            height: 620px;
        }
        
        .gallery-item.short {
            height: 200px;
        }
        
        .quote-section {
            height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .navbar-collapse{
            color: white;
        }

        .hero-section-1 {
            position: relative;
            height: 100vh;
            overflow: hidden;
        }
        
        .hero-bg-1 {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: fill;
            z-index: 1;
        }
        
        .hero-overlay-1 {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
            z-index: 2;
        }
        
        .hero-content-1 {
            position: relative;
            z-index: 3;
            height: 100vh;
        }
        
        .hero-title-1 {
            font-size: 4rem;
            font-weight: 300;
            letter-spacing: 0.5rem;
            color: white;
            font-family: 'Georgia', serif;
        }
        
        .hero-text-1 {
            font-size: 1.1rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.9);
            max-width: 500px;
        }
        
        .btn-custom {
            background-color: rgba(139, 116, 78, 0.9);
            border: none;
            padding: 12px 30px;
            font-size: 1rem;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }
        
        .btn-custom:hover {
            background-color: rgba(139, 116, 78, 1);
            transform: translateY(-2px);
        }
        
        @media (max-width: 768px) {
            .hero-title-1 {
                font-size: 2.5rem;
                letter-spacing: 0.3rem;
            }
            
            .hero-text-1 {
                font-size: 1rem;
            }
        }

        .footer-section {
            background-color: #f5f5f5 !important;
            border-top: 1px solid #e9ecef;
        }
        
        .logo-text {
            font-family: 'Georgia', serif;
            font-size: 1.5rem;
            font-weight: bold;
            line-height: 1.2;
            color: #333;
            letter-spacing: 1px;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
        }
        
        .social-icon {
            color: #666;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .social-icon:hover {
            color: #333;
        }
        
        .footer-title {
            font-size: 1.1rem;
            font-weight: 500;
            color: #333;
        }
        
        .footer-text {
            color: #666;
            margin-bottom: 8px;
            font-size: 0.95rem;
        }
        
        .footer-link {
            color: #666;
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }
        
        .footer-link:hover {
            color: #333;
        }
        
        @media (max-width: 768px) {
            .logo-text {
                font-size: 1.3rem;
            }
            
            .social-icons {
                justify-content: flex-start;
            }
        }

        .section-1 {
            background-color: #f5f5f5;
            padding: 60px 0;
        }

        .main-title {
            font-family: serif;
            font-size: 3rem;
            font-weight: 300;
            text-align: center;
            color: #333;
            margin-bottom: 50px;
            letter-spacing: 2px;
        }

        .main-title .italic {
            font-style: italic;
        }

        .bride-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

        .content-text {
            font-family: serif;
            font-size: 16px;
            line-height: 1.6;
            color: #333;
            text-align: justify;
            margin-bottom: 20px;
        }

        .wedding-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
            margin-bottom: 30px;
        }

        .magazine-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 40px;
        }

        .magazine-logo {
            font-family: serif;
            font-size: 24px;
            font-weight: bold;
            color: #333;
            text-decoration: none;
        }

        .vogue {
            font-style: italic;
        }

        .hello {
            background-color: #e74c3c;
            color: white;
            padding: 5px 10px;
            border-radius: 3px;
        }

        .travel-leisure {
            font-size: 18px;
            border: 2px solid #333;
            padding: 5px 8px;
            border-radius: 3px;
        }

        @media (max-width: 768px) {
            .main-title {
                font-size: 2rem;
            }
            
            .bride-image {
                height: 300px;
                margin-bottom: 30px;
            }
            
            .wedding-image {
                height: 250px;
            }
            
            .magazine-logos {
                gap: 20px;
            }
            
            .magazine-logo {
                font-size: 18px;
            }
        }

        @media (max-width: 576px) {
            .main-title {
                font-size: 1.5rem;
            }
            
            .magazine-logos {
                flex-direction: column;
                gap: 15px;
            }
        }

        .img-fluid-about{
            width: 100%;
            object-fit: fill;
            z-index: 1;
            opacity: 0.8;
        }

        .hero-section-about{
            height: 70vh;
            width: 100%;
            background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
            position: relative;
            display: flex;
            overflow: hidden;
        }

        .heading-about{
            z-index: 10;
            position: absolute;
            top: 42%;
            left: 40%;
            color: white;
        }

        .heading-about h1{
            font-size: 4rem;
        }

        @media screen and (max-width:992px) {
            .heading-about h1{
            font-size: 2rem;
            }
            .heading-about{
            left: 30%;
            }
        }
         .photographer-section {
            max-width: 1200px;
            margin: 50px auto;
            background-color: white;
            display: flex;
            align-items: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            overflow: hidden;
        }

        .content-area {
            flex: 1;
            padding: 60px 50px;
        }

        .content-area h1 {
            font-size: 48px;
            font-weight: 300;
            color: #333;
            margin-bottom: 40px;
            letter-spacing: -1px;
        }

        .content-area p {
            font-size: 16px;
            line-height: 1.6;
            color: #666;
            margin-bottom: 25px;
        }

        .image-area {
            flex: 1;
            height: 600px;
            background-color: #2c2c2c;
            position: relative;
            overflow: hidden;
        }

        .photographer-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(100%);
        }

        @media (max-width: 768px) {
            .photographer-section {
                flex-direction: column;
                margin: 20px;
            }

            .content-area {
                padding: 40px 30px;
            }

            .content-area h1 {
                font-size: 36px;
                margin-bottom: 30px;
            }

            .image-area {
                height: 400px;
            }
        }

        .form-container {
            background-color: white;
            padding: 30px;
            margin: 20px auto;
            max-width: 600px;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .form-label {
            font-weight: normal;
            margin-bottom: 5px;
            color: #333;
        }
        .form-control {
            margin-bottom: 15px;
            border: 1px solid #ccc;
            border-radius: 3px;
            padding: 8px 12px;
        }
        .form-control:focus {
            border-color: #666;
            box-shadow: none;
        }
        .form-check {
            margin-bottom: 10px;
        }
        .submit-btn {
            background-color: #333;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 3px;
            cursor: pointer;
        }
        .submit-btn:hover {
            background-color: #555;
        }
        .required {
            /* color: red; */
        }