/*==================================
  GOOGLE FONTS
==================================
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');
*/

/*==================================
  RESET
==================================*/
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    font-size:16px;
    line-height:1.7;
    color:#333;
    background:#F8F6F1;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}


/*==================================
  VARIABLES
==================================*/
:root{

    --primary:#E67E22;
    --secondary:#C9A227;

    --dark:#1A1A1A;
    --light:#F8F6F1;

    --white:#ffffff;
    --text:#555555;

    --container:1320px;

    --transition:.35s ease;

}


/*==================================
  CONTAINER
==================================*/
.container{

    width:90%;
    max-width:var(--container);
    margin:auto;

}


/*==================================
  TYPOGRAPHY
==================================*/

h1,h2,h3,h4{

    font-family:'Cormorant Garamond',serif;
    color:var(--dark);
    font-weight:600;

}

p{

    color:var(--text);

}


/*==================================
  BUTTONS
==================================*/

.btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:15px 36px;

    border-radius:50px;

    transition:var(--transition);

    font-weight:600;

}

.btn-primary{

    background:var(--primary);
    color:#fff;

}

.btn-primary:hover{

    background:#cf6f19;
    transform:translateY(-3px);

}

.btn-outline{

    border:2px solid #fff;
    color:#fff;

}

.btn-outline:hover{

    background:#fff;
    color:#111;

}


/*==================================
  SECTION
==================================*/

section{

    padding:120px 0;

}

/*==================================
  HEADER
==================================*/

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
    padding:25px 0;
    transition:all .35s ease;
}

.header.scrolled{
    background:#1B1B1B;

    box-shadow:0 10px 30px rgba(0,0,0,.2);

    padding:16px 0;
}

.header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo img{
    height:55px;
    transition:.35s;
}

.header.scrolled .logo img{
    height:48px;
}


/*==================================
  NAVIGATION
==================================*/

.nav ul{
    display:flex;
    align-items:center;
    gap:40px;
}

.nav a{
    color:#ffffff;
    font-size:15px;
    font-weight:500;
    position:relative;
    transition:.3s;
}

.header.scrolled .nav a{

    color:#fff;

}

.nav a::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-8px;

    width:0;
    height:2px;

    background:var(--primary);

    transition:.3s;

}

.nav a:hover::after{

    width:100%;

}


/*==================================
  HEADER BUTTON
==================================*/

.header-btn{

    padding:14px 28px;

    border-radius:40px;

    background:var(--primary);

    color:#fff;

    font-weight:600;

    transition:.3s;

}

.header-btn:hover{

    background:#cf6f19;

    transform:translateY(-3px);

}


/*==================================
  MOBILE MENU
==================================*/

.menu-toggle{

    display:none;
    flex-direction:column;
    gap:5px;
    cursor:pointer;

}

.menu-toggle span{

    width:28px;
    height:2px;
    background:#fff;
    transition:.3s;

}

.header.scrolled .menu-toggle span{

    background:#222;

}

/*==================================
  HERO
==================================*/

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

     background-image:
        linear-gradient(
            90deg,
            rgba(0,0,0,.65) 0%,
            rgba(0,0,0,.45) 35%,
            rgba(0,0,0,.15) 70%,
            rgba(0,0,0,.05) 100%
        ),
        url('../images/hero-bg.webp');

    background-size:cover;
    background-position:center;
    
    background-repeat:no-repeat;

    overflow:hidden;

}

.hero-overlay{

    position:absolute;
    inset:0;

    background:linear-gradient(
    90deg,
    rgba(0,0,0,.75) 0%,
    rgba(0,0,0,.55) 45%,
    rgba(0,0,0,.45) 100%);

}

.hero .container{

    position:relative;
    z-index:2;

}

.hero-content{

    max-width:700px;

}

.hero-tag{

    display:inline-block;

    color:var(--secondary);

    letter-spacing:4px;

    text-transform:uppercase;

    font-size:14px;

    margin-bottom:20px;

    font-weight:600;

}

.hero h1{

    color:#fff;

    font-size:68px;

    line-height:1.1;

    margin-bottom:30px;

}

.hero p{

    color:rgba(255,255,255,.88);

    font-size:20px;

    margin-bottom:40px;

    max-width:650px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    margin-bottom:45px;

}

.hero-features{

    display:flex;

    gap:35px;

    flex-wrap:wrap;

}

.feature{

    color:#fff;

    font-size:15px;

    font-weight:500;

}

/*==================================
WHY INDIA
==================================*/

.why-india{

    background:#F8F6F1;

}

.why-grid{

    display:grid;

    grid-template-columns:1.2fr 1fr;

    gap:80px;

    align-items:center;

}

.section-tag{

    display:inline-block;

    color:var(--primary);

    font-size:14px;

    letter-spacing:3px;

    font-weight:600;

    margin-bottom:18px;

}

.why-content h2{

    font-size:56px;

    margin-bottom:25px;

    line-height:1.1;

}

.why-content p{

    margin-bottom:22px;

    font-size:18px;

}

.why-stats{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

}

.stat-card{

    background:#fff;

    padding:40px 30px;

    border-radius:16px;

    box-shadow:0 10px 40px rgba(0,0,0,.05);

    transition:.35s;

}

.stat-card:hover{

    transform:translateY(-8px);

}

.stat-card h3{

    font-size:42px;

    color:var(--primary);

    margin-bottom:10px;

}

.stat-card p{

    color:#666;

    margin:0;

}

/*==================================
THE INDIA ADVANTAGE
==================================*/

.india-advantage{

    background:#F8F6F1;

}

.section-heading{

    text-align:center;

    margin-bottom:80px;

}

.section-heading h2{

    font-size:58px;

    line-height:1.1;

}

.advantage-grid{

    display:grid;

    grid-template-columns:1.1fr 1fr;

    gap:80px;

    align-items:center;

}

.advantage-image{

    overflow:hidden;

    border-radius:20px;

}

.advantage-image img{

    width:100%;

    display:block;

    transition:.6s;

}

.advantage-image:hover img{

    transform:scale(1.05);

}

.advantage-content p{

    font-size:18px;

    margin-bottom:25px;

}

.advantage-points{

    margin-top:40px;

    display:grid;

    gap:18px;

}

.point{

    font-size:17px;

    font-weight:500;

}

/*==================================
WHAT WE SOURCE
==================================*/

.source-section{

    background:#ffffff;

}

.source-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

    margin-top:70px;

}

.source-card{

     background-color:#111;

    border-radius:18px;

    min-height:240px;

    display:flex;

    align-items:flex-end;

    padding:30px;

    transition:.35s;

    cursor:pointer;

}

.source-card:hover{

    transform:translateY(-8px);

}

.source-card h3{

    color:#fff;

    font-size:28px;

    line-height:1.2;

}

.furnishing{
    background:url(../images/home-furnishing.webp) center/cover;
}

.furniture{
    background:url(../images/furniture.webp) center/cover;
}

.textile{
    background:url(../images/textiles.webp) center/cover;
}

.hardgoods{
    background:url(../images/hard-goods.webp) center/cover;
}

/*==================================
SERVICES
==================================*/

.services{

    background:#ffffff;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

    margin-top:70px;

}

.service-card{

    background:#f8f8f8;

    padding:40px;

    border-radius:20px;

    transition:.35s;

    border:1px solid #eee;

}

.service-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(0,0,0,.08);

}

.service-card.large{

    grid-column:span 2;

}

.service-card.wide{

    grid-column:span 2;

}

.service-card h3{

    font-size:32px;

    margin-bottom:18px;

}

.service-card p{

    margin:0;

    color:#666;

}

/*==================================
WHY PARTNER WITH US
==================================*/

.why-choose{

    background:#f4f4f4;

}

.choose-highlights{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:70px;
    margin-bottom:70px;

}

.highlight-card{

    background:#fff;

    padding:45px;

    border-radius:20px;

    position:relative;

    overflow:hidden;

    box-shadow:0 15px 35px rgba(0,0,0,.06);

    transition:.35s;

}

.highlight-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 45px rgba(0,0,0,.12);

}

.highlight-card span{

    position:absolute;

    top:15px;
    right:25px;

    font-size:70px;

    font-weight:700;

    color:rgba(230,126,34,.08);

    line-height:1;

}

.highlight-card h3{

    font-size:30px;

    margin-bottom:18px;

    line-height:1.2;

}

.highlight-card p{

    margin:0;

    color:#666;

    font-size:17px;

}

.choose-features{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

}

.feature-item{

    background:#fff;

    padding:22px 28px;

    border-radius:14px;

    font-weight:500;

    color:#444;

    transition:.3s;

    border:1px solid #e8e8e8;

}

.feature-item:hover{

    background:var(--primary);

    color:#fff;

    transform:translateY(-5px);

}

/*==================================
OUR PROCESS
==================================*/

.process{

    background:#ffffff;

}

.timeline{

    max-width:900px;

    margin:80px auto 0;

    position:relative;

}

.timeline::before{

    content:"";

    position:absolute;

    left:30px;

    top:0;

    width:2px;

    height:100%;

    background:#e6e6e6;

}

.timeline-item{

    position:relative;

    display:flex;

    gap:40px;

    margin-bottom:70px;

}

.timeline-item:last-child{

    margin-bottom:0;

}

.timeline-number{

    width:60px;

    height:60px;

    min-width:60px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:700;

    font-size:20px;

    position:relative;

    z-index:2;

    box-shadow:0 10px 25px rgba(230,126,34,.25);

}

.timeline-content{

    background:#f8f8f8;

    padding:35px;

    border-radius:18px;

    flex:1;

    transition:.35s;

}

.timeline-content:hover{

    transform:translateY(-6px);

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.timeline-content h3{

    margin-bottom:15px;

    font-size:30px;

}

.timeline-content p{

    margin:0;

    color:#666;

    font-size:17px;

}

/*==================================
CONTACT
==================================*/

.contact-section{

    background:#1B1B1B;

    color:#fff;

}

.contact-intro{

    text-align:center;

    max-width:800px;

    margin:0 auto 70px;

}

.contact-intro h2{

    color:#fff;

    font-size:58px;

    line-height:1.1;

}

.contact-intro p{

    color:rgba(255,255,255,.75);

}

.contact-wrapper{

    max-width:900px;

    margin:auto;

}

.contact-form{

    background:#fff;

    padding:60px;

    border-radius:24px;

}

.form-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

}

.form-group{

    margin-bottom:25px;

}

.form-group label{

    display:block;

    margin-bottom:10px;

    font-weight:600;

    color:#333;

}

.form-group input,
.form-group textarea{

    width:100%;

    padding:16px 18px;

    border:1px solid #ddd;

    border-radius:12px;

    font-size:16px;

    transition:.3s;

}

.form-group input:focus,
.form-group textarea:focus{

    outline:none;

    border-color:var(--primary);

}

/*==================================
FOOTER
==================================*/

.footer{

    background:#111;

    color:#fff;

    padding:90px 0 30px;

}

.footer-top{

    text-align:center;

    max-width:700px;

    margin:0 auto 70px;

}

.footer-logo{

    height:75px;

    margin-bottom:25px;

}

.footer-tagline{

    padding-top:60px;
    
    color:#bbb;

    font-size:20px;

    line-height:1.8;

}

.footer-content{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:60px;

    padding:60px 0;

    border-top:1px solid rgba(255,255,255,.08);

    border-bottom:1px solid rgba(255,255,255,.08);

}

.footer-column h4{

    color:#fff;

    margin-bottom:25px;

    font-size:22px;

}

.footer-column ul{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-column li{

    margin-bottom:18px;

    color:#aaa;

}

.footer-column a{

    color:#aaa;

    transition:.3s;

}

.footer-column a:hover{

    color:var(--primary);

    padding-left:5px;

}

.footer-bottom{

    text-align:center;

    padding-top:30px;

    color:#888;

}

.footer::before{

    content:"";

    display:block;

    height:4px;

    background:linear-gradient(
        90deg,
        #FF9933 0%,
        #FFFFFF 50%,
        #138808 100%
    );

}

/*==================================
THANK YOU
==================================*/

.thank-you{

    min-height:100vh;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#F8F6F1;

    padding:140px 0;

}

.thank-you-box{

    max-width:800px;

    margin:auto;

    text-align:center;

    background:#fff;

    padding:70px 60px;

    border-radius:24px;

    box-shadow:0 20px 60px rgba(0,0,0,.08);

}

.success-icon{

    width:100px;

    height:100px;

    margin:0 auto 30px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:48px;

    font-weight:700;

}

.thank-you h1{

    font-size:64px;

    margin:20px 0;

}

.thank-you .lead{

    font-size:24px;

    color:#222;

    margin-bottom:30px;

}

.thank-you p{

    color:#666;

    line-height:1.9;

    max-width:650px;

    margin:0 auto 25px;

}

.thank-you-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    margin-top:45px;

}

.btn-outline{

    border:2px solid var(--primary);

    color:var(--primary);

    background:transparent;

}

.btn-outline:hover{

    background:var(--primary);

    color:#fff;

}