/* ===== GLOBAL ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    scroll-behavior: smooth;
}

html,
body {
    overflow-x: hidden;
}

body {
    background: #0B1C2D;
    color: white;
    font-family: 'Poppins', sans-serif;
}

h1,
h2,
h3,
.logo {
    font-family: 'Playfair Display', serif;
}

/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: #081421;
    z-index: 1000;
}
.logo{
    font-family: 'Playfair Display', serif;  /* ya jo tu use kar raha hai */
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    overflow: hidden;
    animation: logoReveal 1.2s ease forwards;
    opacity: 0;
}

@keyframes logoReveal {
    0%{
        transform: translateY(-20px);
        opacity: 0;
    }
    100%{
        transform: translateY(0);
        opacity: 1;
    }
}

.logo span{
    background: linear-gradient(90deg,#d4af37,#f5e3a1,#d4af37);
    background-size:200%;
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    animation: goldFlow 8s linear infinite;
}

@keyframes goldFlow{
    0%{ background-position:0%; }
    100%{ background-position:200%; }
}

@keyframes luxuryLogo{
    0%{
        opacity:0;
        transform: translateY(-30px);
        letter-spacing: 8px;
    }
    100%{
        opacity:1;
        transform: translateY(0);
        letter-spacing: 2px;
    }
}

@keyframes shine{
    0%{ background-position: -200px; }
    100%{ background-position: 200px; }
}

/* ===== NAV ===== */
nav {
    display: flex;
    flex-wrap: wrap;
}

nav a {
    margin-left: 25px;
    color: white;
    text-decoration: none;
    position: relative;
    transition: 0.3s ease;
}

nav a:hover {
    color: #D4AF37;
}

nav a::after{
    content:"";
    position:absolute;
    bottom:-6px;
    left:50%;
    width:0;
    height:2px;
    background:#D4AF37;
    transition:0.4s ease;
    transform:translateX(-50%);
}

nav a:hover::after{
    width:100%;
}

/* ===== HERO ===== */
.hero {
    height: 100vh;
    background: url('home.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

@keyframes zoomEffect {
    0% {
        background-size: 100%;
    }

    100% {
        background-size: 110%;
    }
}

.hero::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.85),
            rgba(0, 0, 0, 0.6),
            rgba(0, 0, 0, 0.3));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: auto;
}

.hero h1 {
    font-size: 58px;
    letter-spacing: 1.5px;
    line-height: 1.2;
    color: #D4AF37;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.6);
    text-shadow:
        0 5px 20px rgba(0, 0, 0, 0.6),
        0 0 25px rgba(212, 175, 55, 0.3);
    animation: heroFade 1.5s ease forwards;
    opacity: 0; 
    transform: translateY(60px);
    animation: heroLuxury 2s cubic-bezier(0.19,1,0.22,1) forwards;   
}
@keyframes heroLuxury{
    to{
        opacity:1;
        transform: translateY(0);
    }
}

@keyframes heroFade{
    0%{
        opacity:0;
        transform: translateY(40px);
    }
    100%{
        opacity:1;
        transform: translateY(0);
    }
}

.hero-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 35px;
    background: #D4AF37;
    color: black;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s ease;
}

.hero-btn:hover {
    background: #b9962f;
    transform: scale(1.05);
}

/* ===== SECTION ===== */
.section {
    padding: 120px 20px 80px;
    margin-top: 60px;
    text-align: center;
}

.section h2 {
    color: #D4AF37;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-top: 15px;
    margin-bottom: 25px;
    color: #ffffff;
     opacity:0;
    transform: translateY(60px);
    animation: heroLuxury 2s 0.4s cubic-bezier(0.19,1,0.22,1) forwards;
}

/* ===== PROJECT BOXES ===== */

/* ===== PROJECT LUXURY CARDS ===== */

.project-boxes{
    display:flex;
    justify-content:center;
    gap:40px;
    flex-wrap:wrap;
    margin-top:60px;
}

.project-card{
    width:280px;
    height:340px;
    border-radius:18px;
    overflow:hidden;
    position:relative;
    text-decoration:none;
    display:flex;
    align-items:flex-end;
    transition:0.4s ease;
    box-shadow:0 15px 35px rgba(0,0,0,0.4);
}

/* Background images */
.layout-card{
    background:
    linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
    url('l1.jpeg');
    background-position:center;
    background-size:cover;
    background-repeat:no-repeat;
}

.twoD-card{
    background:
    linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
    url('2D1.jpeg');
    background-position:center;
    background-size:cover;
    background-repeat:no-repeat;
}

.threeD-card{
    background:
    linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
    url('3D1.jpeg');
    background-position:center;
    background-size:cover;
    background-repeat:no-repeat;
}

.project-card .overlay{
    width:100%;
    padding:25px;
}

.project-card h3{
    color:#D4AF37;
    font-size:22px;
    font-family:'Playfair Display', serif;
    text-shadow:0 4px 15px rgba(0,0,0,0.9);
    font-weight:600;
    letter-spacing:1px;
}

.project-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 55px rgba(0,0,0,0.6);
}


/* ===== GALLERY ===== */
.grid,
.layout-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
    padding: 0 5%;
}

.grid img,
.layout-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border: 2px solid #D4AF37;
}

.layout-highlight {
    grid-column: 1/-1;
    display: flex;
    justify-content: center;
}

.layout-highlight img {
    width: 70%;
    height: 380px;
    border: 3px solid #D4AF37;
}

/* ===== SERVICES ===== */
.services {
    padding: 100px 60px;
    background: linear-gradient(to bottom, #ffffff, #f6f6f6);
}

.services-heading {
    text-align: center;
    margin-bottom: 60px;
}

.service-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-box {
    background: #ffffff;
    padding: 45px 35px;
    border-radius: 14px;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: #D4AF37;
}

.service-box:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.service-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #111;
}

.service-box p {
    color: #555;
    line-height: 1.6;
    font-size: 15px;
}

/* ===== CONTACT ===== */
.contact {
    padding: 90px 10%;
    background: #0f172a;
    text-align: center;
}

.contact h2 {
    font-size: 40px;
    margin-bottom: 40px;
    color: #D4AF37;
}

.contact-container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: stretch;
}

.left-side,
.right-side {
    flex: 1;
    min-width: 320px;
    display: flex;
    flex-direction: column;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

form input,
form textarea {
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    border: none;
    background: #e5e5e5;
}

form textarea {
    height: 140px;
    resize: none;
}

form button {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    background: #D4AF37;
    color: black;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
}

form button:hover {
    background: #c2a020;
}

/* CONTACT INFO */
.info-block {
    margin-top: 25px;
}

.info-block i {
    margin-right: 8px;
    color: #D4AF37;
}

/* SOCIAL ICONS */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-decoration: none;
}

.social-icons a:nth-child(1) {
    background: #25D366;
}

.social-icons a:nth-child(2) {
    background: #E1306C;
}

.social-icons a:nth-child(3) {
    background: #0072c6;
}

.social-icons a:hover {
    transform: scale(1.1);
}

/* MAP */
.right-side iframe {
    width: 100%;
    height: 350px;
    border-radius: 12px;
    border: 0;
}

.address-line{
    margin-top: 28px;
}


/* ===== RESPONSIVE ===== */
@media(max-width:992px) {

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

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

@media(max-width:768px){

    header{
        padding:15px 5%;
    }

    .logo{
        font-size:20px;
    }

    nav{
        display:none;
    }

}

/* ===== SERVICES DARK LUXURY ===== */

.services{
    background:linear-gradient(to bottom,#0B1C2D,#081421);
    padding:120px 10%;
    text-align:center;
}

.services-heading h2{
    color:#D4AF37;
    font-size:36px;
    margin-bottom:15px;
}

.services-heading p{
    color:#bbb;
    max-width:700px;
    margin:0 auto;
    line-height:1.8;
}

.service-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:40px;
    margin-top:70px;
}

.service-box{
    background:rgba(255,255,255,0.05);
    backdrop-filter:blur(10px);
    padding:45px 30px;
    border-radius:20px;
    transition:0.4s ease;
    border:1px solid rgba(212,175,55,0.2);
    text-align:center;
}

.service-box:hover{
    transform:translateY(-12px);
    border:1px solid #D4AF37;
    box-shadow:0 25px 60px rgba(212,175,55,0.15);
}

.service-box h3{
    color:#D4AF37;
    margin-bottom:18px;
    font-size:20px;
}

.service-box p{
    color:#ccc;
    font-size:15px;
    line-height:1.8;
}

@media(max-width:992px) {
    .service-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:768px) {
    .service-container {
        grid-template-columns: 1fr;
    }
}

.icon-circle {
    width: 55px;
    height: 55px;
    background: #D4AF37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 20px;
    font-size: 20px;
}

/* ===== FOOTER ===== */
.footer{
    background: linear-gradient(to bottom, #081421, #06101c);
    padding:80px 10% 40px;
    color:#ccc;
}

/* Footer Container */
.footer-container{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:60px;
}

/* Logo same as header */
.footer-logo{
    font-family:'Playfair Display', serif;
    font-size:22px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    color:white;
    margin-bottom:20px;
}

.footer-logo span{
    color:#D4AF37;
}

/* Paragraph */
.footer p{
    line-height:1.7;
    max-width:280px;
}

/* Headings */
.footer h3{
    font-size:18px;
    color:white;
    margin-bottom:20px;
    position:relative;
}

.footer h3::after{
    content:"";
    width:40px;
    height:2px;
    background:#D4AF37;
    display:block;
    margin-top:8px;
}

/* Links */
.footer a{
    display:block;
    color:#bbb;
    margin-bottom:12px;
    text-decoration:none;
    transition:0.4s ease;
}

.footer a:hover{
    color:#D4AF37;
    transform:translateX(5px);
}

/* Contact Info */
.footer-contact p{
    margin-bottom:12px;
}

/* Social Icons */
.footer-social{
    margin-top:15px;
}

.footer-social a{
    display:inline-block;
    margin-right:15px;
    font-size:18px;
    color:#D4AF37;
    transition:0.4s ease;
}

.footer-social a:hover{
    transform:translateY(-4px);
    text-shadow:0 0 15px rgba(212,175,55,0.6);
}

/* Bottom line */
.footer-bottom{
    border-top:1px solid rgba(212,175,55,0.2);
    margin-top:50px;
    padding-top:20px;
    text-align:center;
    font-size:14px;
    color:#888;
}
/* Responsive */
@media(max-width:992px){
    .footer-container{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:768px){
    .footer-container{
        grid-template-columns:1fr;
        text-align:center;
    }
}

/* ===== ABOUT SECTION FIX ===== */
.about{
    padding:120px 10%;
    text-align:center;
    position:relative;
}

.section-title{
    font-size:34px;   /* Pehle 42px tha */
    color:#D4AF37;
    margin-bottom:20px;
    text-align:center;
    font-family:'Playfair Display', serif;
    position:relative;
}

.section-title::after{
    content:"";
    width:80px;
    height:2px;
    background:#D4AF37;
    display:block;
    margin:15px auto 0;
}

.about-content p{
    max-width:800px;
    margin:20px auto;
    line-height:1.8;
    font-size:17px;
    color:#ddd;
}

.highlight{
    color:#D4AF37;
    font-weight:600;
}

.about-stats{
    display:flex;
    justify-content:center;
    gap:50px;
    margin-top:60px;
    flex-wrap:wrap;
}

.stat{
    text-align:center;
}

.stat h3{
    font-size:32px;
    color:#D4AF37;
    margin-bottom:10px;
}

.stat span{
    font-size:14px;
    letter-spacing:1px;
    color:#aaa;
    text-transform:uppercase;
}

.about-content p,
.stat{
    opacity:0;
    transform: translateY(40px);
    animation: fadeLuxury 1.5s ease forwards;
}

@keyframes fadeLuxury{
    to{
        opacity:1;
        transform: translateY(0);
    }
}
/* ===== FOOTER BOTTOM (BRANDING SECTION) ===== */

.footer-bottom{
    border-top:1px solid rgba(212,175,55,0.25);
    margin-top:40px;
    padding:25px 0;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    text-align:center;
    width:100%;
}

/* Line spacing */
.footer-bottom p{
    margin:5px 0;
}

/* © Line */
.footer-bottom p:first-child{
    color:#aaa;
    font-size:14px;
    letter-spacing:0.5px;
}

/* Designed by line */
.footer-bottom p:nth-child(2){
    color:white;
    font-size:16px;
}

/* Deep Jadav highlight */
.footer-bottom p:nth-child(2) span{
    color:#D4AF37;
    font-weight:600;
}

/* Phone & Email */
.footer-bottom a{
    color:#D4AF37;
    font-weight:500;
    text-decoration:none;
    transition:0.3s ease;
}

/* Hover effect */
.footer-bottom a:hover{
    color:#f5d76e;
    text-shadow:0 0 8px rgba(212,175,55,0.4);
}

