:root {
    --gold-start: #ebcd6c;
    --gold-end: #b58531;
    --charcoal: #1C1C1C;
    --white: #FFFFFF;
    --warm-gray: #B0B0B0;
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--charcoal);
    color: var(--white);
    overflow-x: hidden;
    cursor: none;
}

body * {
    cursor: none;
}

.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--gold-end);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.2s var(--transition-smooth), opacity 0.2s;
    mix-blend-mode: difference;
}

.cursor-trail {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s var(--transition-smooth);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        filter: hue-rotate(0deg) brightness(1);
    }

    50% {
        filter: hue-rotate(10deg) brightness(1.2);
    }
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(28, 28, 28, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s var(--transition-smooth);
}

.navbar.scrolled {
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

#logo {
    height: 40px;
    width: 100%;
}

.fil0 {
    fill: url(#id3);
}

.fil1 {
    fill: url(#id0);
}

.fil2 {
    fill: url(#id1);
}

.fil3 {
    fill: url(#id2);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s var(--transition-smooth);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-start), var(--gold-end));
    transition: width 0.3s var(--transition-smooth);
}

.nav-menu a:hover::after {
    width: 100%;
}

.btn-contact {
    padding: 10px 25px !important;
    background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
    border-radius: 30px;
    color: var(--charcoal) !important;
    font-weight: 600;
}

.btn-contact::after {
    display: none;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--gold-end);
    transition: all 0.3s var(--transition-smooth);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.08) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(1deg);
    }
}

.hero-content {
    text-align: center;
    z-index: 2;
    animation: fadeInUp 1s var(--transition-smooth);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 150px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 10px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    background-image: url(https://raw.githubusercontent.com/ishant304/dynamic-events/refs/heads/main/assests/Gemini_Generated_Image_2s9s7d2s9s7d2s9s.png);
}

.title-line {
    display: block;
    animation: slideIn 0.8s var(--transition-smooth) backwards;
}

.title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.title-line:nth-child(2) {
    animation-delay: 0.4s;
}

.title-line:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-subtitle {
    font-size: 20px;
    color: var(--warm-gray);
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 2px;
    animation: fadeIn 1s 0.8s backwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s 1s backwards;
}

.btn {
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s var(--transition-smooth);
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
    color: var(--charcoal);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--gold-start);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
    color: var(--charcoal);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--gold-end);
    border-radius: 15px;
    margin: 0 auto 10px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 4px;
    height: 8px;
    background: var(--gold-end);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 8px;
    }

    100% {
        opacity: 0;
        top: 20px;
    }
}

.scroll-indicator p {
    font-size: 12px;
    color: var(--warm-gray);
    letter-spacing: 2px;
}

section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold-start);
    border-radius: 20px;
    color: var(--gold-end);
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 600;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--warm-gray);
    font-weight: 300;
}

.services {
    background: linear-gradient(180deg, var(--charcoal) 0%, rgba(28, 28, 28, 0.98) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    text-align: center;
    transition: all 0.4s var(--transition-smooth);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
    opacity: 0;
    transition: opacity 0.4s var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-end);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-icon {
    font-size: 50px;
    background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--warm-gray);
    line-height: 1.8;
    font-size: 15px;
    position: relative;
    z-index: 1;
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-start), var(--gold-end));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--transition-smooth);
}

.service-card:hover .service-overlay {
    transform: scaleX(1);
}

.stats {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(255, 215, 0, 0.05));
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s var(--transition-smooth);
}

.stat-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-number::after {
    content: '+';
}

.stat-label {
    font-size: 16px;
    color: var(--warm-gray);
    letter-spacing: 1px;
}

.gallery-container{
    max-width: 1430px;
    margin: 0 auto;
    padding: 0 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
}

.gallery-item {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.5s var(--transition-smooth);
}

.gallery-item.visible {
    opacity: 1;
    transform: scale(1);
}

.gallery-image {
    height: 350px;
    max-width: 450px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s var(--transition-smooth);
}

.gallery-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.gallery-image:hover {
    transform: scale(1.02);
    border-color: var(--gold-end);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.753), rgba(255, 217, 0, 0.733));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s var(--transition-smooth);
}

.gallery-image:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 40px;
    color: var(--charcoal);
    margin-bottom: 15px;
}

.gallery-overlay h4 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    color: var(--charcoal);
    margin-bottom: 5px;
}

.gallery-overlay p {
    color: var(--charcoal);
    font-size: 18px;
}

.testimonials {
    background: rgba(28, 28, 28, 0.5);
}

.testimonials-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 60px;
}

.testimonials-wrapper {
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 50px 40px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s var(--transition-smooth);
}

.testimonial-card.active {
    position: relative;
    opacity: 1;
    transform: translateX(0);
}

.quote-icon {
    font-size: 40px;
    background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--white);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    color: var(--charcoal);
}

.author-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 14px;
    color: var(--warm-gray);
}

.rating {
    color: var(--gold-end);
    font-size: 18px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold-start);
    color: var(--gold-end);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    transition: all 0.3s var(--transition-smooth);
    z-index: 10;
}

.carousel-btn:hover {
    background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
    color: var(--charcoal);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.3);
    transition: all 0.3s var(--transition-smooth);
}

.dot.active {
    background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
    width: 30px;
    border-radius: 5px;
}

.contact {
    background: linear-gradient(180deg, var(--charcoal) 0%, rgba(28, 28, 28, 0.95) 100%);
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}



.info-item {
    width: 300px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s var(--transition-smooth);
}

.info-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.info-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--charcoal);
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.info-text p {
    color: var(--warm-gray);
    font-size: 15px;
}

.info-item a {
    color: var(--warm-gray);
}


@keyframes rippleEffect {
    to {
        transform: scale(2);
        opacity: 0;
    }
}

.footer {
    background: var(--charcoal);
    padding-top: 80px;
    padding-bottom: 30px;
    position: relative;
}

.footer-divider {
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-start), var(--gold-end), transparent);
    margin-bottom: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--warm-gray);
    line-height: 1.8;
    margin: 20px 0 30px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid var(--gold-start);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-end);
    font-size: 18px;
    transition: all 0.3s var(--transition-smooth);
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
    color: var(--charcoal);
    transform: translateY(-3px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--warm-gray);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s var(--transition-smooth);
}

.footer-column ul li a:hover {
    color: var(--gold-end);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-bottom p {
    color: var(--warm-gray);
    font-size: 14px;
}

[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s var(--transition-smooth);
}

[data-aos].visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(28, 28, 28, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s var(--transition-smooth);
        border-left: 1px solid rgba(212, 175, 55, 0.2);
    }

    .nav-menu.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-title {
        font-size: 50px;
    }

    .gallery-grid{
        display: grid;
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 20px;
    }

    .section-title {
        font-size: 36px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr 1fr;
        gap: 60px;
        max-width: 1100px;
        margin: 0 auto;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    body {
        cursor: auto;
    }

    body * {
        cursor: auto;
    }

    .custom-cursor,
    .cursor-trail {
        display: none;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 17vw;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .gallery-grid{
        display: grid;
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 20px;
    }

    .contact-info {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr 1fr;
        justify-items: center;
        gap: 60px;
        max-width: 1100px;
        margin: 0 auto;
        
    }



    .section-title {
        font-size: 28px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 40px;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .testimonials-container {
        padding: 20px 40px;
    }
}