/* ===========================================================
   DIVYANSHU VENTURES
   STYLE.CSS
   =========================================================== */


/* ===========================================================
   GOOGLE FONTS
   =========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');



/* ===========================================================
   VARIABLES
   =========================================================== */

:root{

    --primary:#0B2343;
    --secondary:#1F4E79;
    --accent:#C79A3B;

    --white:#ffffff;

    --light:#F5F7FA;

    --dark:#1A1A1A;

    --text:#555555;

    --border:#E5E7EB;

    --shadow:0 15px 40px rgba(0,0,0,.08);

    --radius:18px;

    --transition:.35s ease;

}



/* ===========================================================
   RESET
   =========================================================== */

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}



html{

    scroll-behavior:smooth;

}



body{

    font-family:'Poppins',sans-serif;

    color:var(--text);

    background:#fff;

    overflow-x:hidden;

    line-height:1.7;

}



img{

    max-width:100%;

    display:block;

}



a{

    text-decoration:none;

    color:inherit;

}



ul{

    list-style:none;

}



section{

    width:100%;

}



.section-padding{

    padding:100px 0;

}



/* ===========================================================
   CONTAINER
   =========================================================== */

.container{

    width:min(1200px,90%);

    margin:auto;

}



/* ===========================================================
   TYPOGRAPHY
   =========================================================== */

h1,h2,h3,h4{

    font-family:'Playfair Display',serif;

    color:var(--primary);

}



h1{

    font-size:64px;

    line-height:1.1;

    margin:25px 0;

}



h2{

    font-size:44px;

    margin-bottom:25px;

}



h3{

    font-size:24px;

}



p{

    color:var(--text);

    font-size:17px;

}



/* ===========================================================
   SECTION TITLE
   =========================================================== */

.section-title{

    text-align:center;

    max-width:760px;

    margin:0 auto 70px;

}



.section-title span{

    display:inline-block;

    color:var(--accent);

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:2px;

    margin-bottom:15px;

}



/* ===========================================================
   BUTTONS
   =========================================================== */

.btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:15px 34px;

    border-radius:50px;

    background:var(--primary);

    color:#fff;

    font-weight:600;

    transition:var(--transition);

}



.btn-primary:hover{

    background:var(--accent);

    transform:translateY(-4px);

}



.btn-secondary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:15px 34px;

    border-radius:50px;

    border:2px solid var(--primary);

    color:var(--primary);

    font-weight:600;

    transition:var(--transition);

    margin-left:15px;

}



.btn-secondary:hover{

    background:var(--primary);

    color:#fff;

}



/* ===========================================================
   HEADER
   =========================================================== */

#header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:1000;

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(12px);

    box-shadow:0 2px 20px rgba(0,0,0,.05);

}



.navbar{

    display:flex;

    align-items:center;

    justify-content:space-between;

    min-height:85px;

}



.logo img{

    width:180px;

}



.nav-menu{

    display:flex;

    gap:36px;

}



.nav-menu a{

    color:var(--primary);

    font-weight:500;

    transition:var(--transition);

    position:relative;

}



.nav-menu a:hover,

.nav-menu .active{

    color:var(--accent);

}



.nav-menu a::after{

    content:"";

    position:absolute;

    bottom:-8px;

    left:0;

    width:0;

    height:2px;

    background:var(--accent);

    transition:.3s;

}



.nav-menu a:hover::after,

.nav-menu .active::after{

    width:100%;

}



.menu-toggle{

    display:none;

    font-size:28px;

    color:var(--primary);

    cursor:pointer;

}



/* ===========================================================
   HERO
   =========================================================== */

.hero{

    padding-top:170px;

    padding-bottom:100px;

    background:linear-gradient(to right,#ffffff,#f7f9fc);

}



.hero-wrapper{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    gap:70px;

    align-items:center;

}



.hero-badge{

    display:inline-block;

    background:#EEF4FB;

    color:var(--secondary);

    padding:10px 20px;

    border-radius:50px;

    font-weight:600;

}



.hero h1 span{

    color:var(--accent);

}



.hero p{

    margin:25px 0 35px;

    max-width:600px;

}



.hero-services{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-bottom:40px;

}



.hero-services div{

    display:flex;

    align-items:center;

    gap:12px;

    color:var(--primary);

    font-weight:500;

}



.hero-services i{

    color:var(--accent);

}



.hero-buttons{

    display:flex;

    align-items:center;

}



.hero-image{

    position:relative;

}



.hero-image img{

    border-radius:25px;

    box-shadow:var(--shadow);

}
/* ===========================================================
   ABOUT SECTION
   =========================================================== */

.about-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.about-image img{

    border-radius:24px;

    box-shadow:var(--shadow);

}

.section-subtitle{

    display:inline-block;

    color:var(--accent);

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:2px;

    margin-bottom:18px;

}

.about-content h2{

    margin-bottom:25px;

}

.about-content p{

    margin-bottom:18px;

}

.about-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin:35px 0;

}

.about-features div{

    display:flex;

    align-items:center;

    gap:12px;

    font-weight:500;

    color:var(--primary);

}

.about-features i{

    color:var(--accent);

    font-size:18px;

}



/* ===========================================================
   CORE BUSINESS
   =========================================================== */

.core-business{

    background:var(--light);

}

.business-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.business-card{

    background:#fff;

    padding:40px 30px;

    border-radius:20px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:var(--transition);

    border:1px solid transparent;

}

.business-card:hover{

    transform:translateY(-10px);

    border-color:var(--accent);

}

.business-card i{

    font-size:48px;

    color:var(--accent);

    margin-bottom:25px;

}

.business-card h3{

    margin-bottom:18px;

}

.business-card p{

    font-size:15px;

}



/* ===========================================================
   SERVICES
   =========================================================== */

.services{

    background:#ffffff;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.service-card{

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.service-card:hover{

    transform:translateY(-10px);

}

.service-card img{

    width:100%;

    height:230px;

    object-fit:cover;

}

.service-card h3{

    padding:28px 28px 12px;

}

.service-card p{

    padding:0 28px 30px;

    font-size:15px;

}

.service-card:hover h3{

    color:var(--accent);

}



/* ===========================================================
   COMMON CARD EFFECTS
   =========================================================== */

.business-card,
.service-card{

    position:relative;

}

.business-card::before,
.service-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:4px;

    background:linear-gradient(90deg,var(--accent),var(--secondary));

    transform:scaleX(0);

    transform-origin:left;

    transition:.4s;

}

.business-card:hover::before,
.service-card:hover::before{

    transform:scaleX(1);

}



/* ===========================================================
   IMAGE EFFECTS
   =========================================================== */

.about-image{

    overflow:hidden;

    border-radius:24px;

}

.about-image img{

    transition:.5s;

}

.about-image:hover img{

    transform:scale(1.05);

}

.service-card{

    overflow:hidden;

}

.service-card img{

    transition:.5s;

}

.service-card:hover img{

    transform:scale(1.08);

}



/* ===========================================================
   SPACING UTILITIES
   =========================================================== */

.mb-20{

    margin-bottom:20px;

}

.mb-30{

    margin-bottom:30px;

}

.mt-30{

    margin-top:30px;

}

.text-center{

    text-align:center;

}
/* ===========================================================
   INDUSTRIES
   =========================================================== */

.industries{
    background:var(--light);
}

.industry-image{
    width:100%;
    border-radius:24px;
    margin-bottom:50px;
    box-shadow:var(--shadow);
}

.industry-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.industry-grid div{
    background:#fff;
    padding:25px;
    text-align:center;
    border-radius:16px;
    font-weight:600;
    color:var(--primary);
    box-shadow:var(--shadow);
    transition:var(--transition);
}

.industry-grid div:hover{
    background:var(--primary);
    color:#fff;
    transform:translateY(-8px);
}



/* ===========================================================
   HIGHLIGHTS
   =========================================================== */

.highlight-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.highlight-card{
    background:#fff;
    border-radius:20px;
    padding:45px 25px;
    text-align:center;
    box-shadow:var(--shadow);
    transition:var(--transition);
}

.highlight-card:hover{
    transform:translateY(-10px);
}

.highlight-card h3{
    font-size:42px;
    color:var(--accent);
    margin-bottom:10px;
}

.highlight-card p{
    font-weight:500;
}



/* ===========================================================
   WHY CHOOSE US
   =========================================================== */

.why-choose{
    background:#fff;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.why-card{
    background:var(--light);
    border-radius:20px;
    padding:40px 30px;
    text-align:center;
    transition:var(--transition);
}

.why-card:hover{
    background:var(--primary);
    transform:translateY(-10px);
}

.why-card:hover h3,
.why-card:hover p,
.why-card:hover i{
    color:#fff;
}

.why-card i{
    font-size:48px;
    color:var(--accent);
    margin-bottom:22px;
}

.why-card h3{
    margin-bottom:18px;
}



/* ===========================================================
   PROCESS
   =========================================================== */

.process{
    background:var(--light);
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.process-box{
    background:#fff;
    border-radius:20px;
    padding:40px 30px;
    text-align:center;
    position:relative;
    box-shadow:var(--shadow);
}

.process-box span{
    width:70px;
    height:70px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 25px;
    border-radius:50%;
    background:var(--accent);
    color:#fff;
    font-size:24px;
    font-weight:700;
}

.process-box h3{
    margin-bottom:18px;
}



/* ===========================================================
   CTA
   =========================================================== */

.cta{
    padding:100px 0;
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    color:#fff;
    text-align:center;
}

.cta h2{
    color:#fff;
    margin-bottom:20px;
}

.cta p{
    color:rgba(255,255,255,.92);
    max-width:700px;
    margin:0 auto 35px;
}

.cta .btn-primary{
    background:#fff;
    color:var(--primary);
}

.cta .btn-primary:hover{
    background:var(--accent);
    color:#fff;
}



/* ===========================================================
   FOOTER
   =========================================================== */

footer{
    background:#081629;
    color:#d8d8d8;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.4fr;
    gap:50px;
    padding:80px 0;
}

.footer-about img{
    width:170px;
    margin-bottom:25px;
}

footer h4{
    color:#fff;
    margin-bottom:25px;
    font-size:22px;
}

footer ul li{
    margin-bottom:14px;
}

footer a{
    transition:var(--transition);
}

footer a:hover{
    color:var(--accent);
}

footer p{
    color:#d8d8d8;
    margin-bottom:12px;
}

.copyright{
    border-top:1px solid rgba(255,255,255,.08);
    text-align:center;
    padding:25px 0;
}

.copyright p{
    color:#bfbfbf;
    font-size:15px;
}



/* ===========================================================
   RESPONSIVE
   =========================================================== */

@media(max-width:1100px){

.hero-wrapper,
.about-wrapper{
grid-template-columns:1fr;
text-align:center;
}

.hero-services,
.about-features{
grid-template-columns:1fr 1fr;
}

.business-grid,
.services-grid,
.industry-grid,
.highlight-grid,
.why-grid,
.process-grid{
grid-template-columns:repeat(2,1fr);
}

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

.hero-buttons{
justify-content:center;
}

}



@media(max-width:768px){

.section-padding{
padding:70px 0;
}

h1{
font-size:42px;
}

h2{
font-size:34px;
}

.nav-menu{
display:none;
}

.menu-toggle{
display:block;
}

.business-grid,
.services-grid,
.industry-grid,
.highlight-grid,
.why-grid,
.process-grid,
.footer-grid,
.about-features,
.hero-services{
grid-template-columns:1fr;
}

.hero{
padding-top:140px;
}

.hero-buttons{
flex-direction:column;
gap:15px;
}

.btn-secondary{
margin-left:0;
}

.section-title{
margin-bottom:45px;
}

}



/* ===========================================================
   SIMPLE FADE ANIMATION
   =========================================================== */

@keyframes fadeUp{

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

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

}

.hero-content,
.hero-image,
.about-content,
.about-image,
.business-card,
.service-card,
.highlight-card,
.why-card,
.process-box{
animation:fadeUp .8s ease both;
}