/* ========================================
   JAIN AKASH & CO. - CLEANED CSS
======================================== */

/* ========================================
   VARIABLES
======================================== */
:root{
    --navy:#0F2B46;
    --gold:#C8A45D;
    --light:#F8F9FB;
    --dark:#2E3138;
}

/* ========================================
   RESET & GLOBAL
======================================== */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html,body{
    width:100%;
    overflow-x:hidden;
}

body,
h1,h2,h3,h4,h5,h6,
a,p,li,button{
    font-family:"Myriad Pro","Segoe UI",Arial,sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6{
    line-height:1.25;
    font-weight:700;
}

body{
    color:var(--dark);
    line-height:1.6;
	padding-top:130px;
}


.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ========================================
   BUTTONS
======================================== */
.btn{
    background:var(--gold);
    color:#fff;
    padding:12px 25px;
    border-radius:4px;
    text-decoration:none;
    font-weight:600;
}

.btn.small{padding:8px 15px;}

.btn.outline{
    background:transparent;
    border:1px solid var(--gold);
    color:#000;
}

.btn.outline:hover{
    background:var(--gold);
    color:#fff;
}


.site-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
}

/* ========================================
   TOP BAR
======================================== */
.topbar{
    background:var(--navy);
    color:#fff;
    padding:10px 0;
    font-size:14px;
}

.topbar .container{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
}

.topbar a{
    color:#fff;
    text-decoration:none;
    margin-right:20px;
    font-size:16px;
}

.topbar i{
    color:var(--gold);
    margin-right:8px;
}

/* ========================================
   HEADER
======================================== */
header{
    position:fixed;
    top:44px;
    left:0;
    width:100%;
    background:#fff;
    z-index:9999;
    box-shadow:0 2px 15px rgba(0,0,0,.08);
    transition:all .3s ease;
}

header.shrink{
    box-shadow:0 5px 20px rgba(0,0,0,.12);
}

.navbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap:nowrap;
    padding:15px 0;
}

header.shrink .navbar{padding:8px 0;}

.logo,
.mobile-toggle{
    flex:0 0 auto;
}

.logo img{
    height:70px;
    transition:all .3s ease;
}

.navbar{
    padding:18px 0;
    transition:all .3s ease;
}

header.shrink .navbar{
    padding:8px 0;
}

header.shrink .logo img{
    height:48px;
}

/* ========================================
   NAVIGATION
======================================== */
.nav-menu{
    display:flex;
    list-style:none;
    gap:30px;
}

.nav-menu li{position:relative;}

.nav-menu a{
    text-decoration:none;
    color:var(--navy);
    font-weight:500;
}

.dropdown .submenu{
    position:absolute;
    top:100%;
    left:0;
    min-width:280px;
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
    list-style:none;
    opacity:0;
    visibility:hidden;
    transform:translateY(15px);
    transition:.3s;
    z-index:9999;
}

.dropdown:hover .submenu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.submenu li{border-bottom:1px solid #eee;}
.submenu li:last-child{border-bottom:none;}

.submenu a{
    display:block;
    padding:4px 18px;
    color:var(--navy);
}

.submenu a:hover{background:#f7f7f7;}

.submenu-title{
    background:var(--navy);
    color:#fff;
    padding:6px 18px;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:1px;
    font-weight:600;
}

.nav-chevron{
    margin-left:6px;
    font-size:11px;
    transition:.3s;
}

.dropdown:hover .nav-chevron,
.dropdown.open .nav-chevron{
    transform:rotate(180deg);
}

/* ========================================
   MOBILE MENU
======================================== */
.mobile-toggle{
    display:none;
    cursor:pointer;
    font-size:28px;
    color:var(--navy);
}

.menu-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.5);
    z-index:998;
    opacity:0;
    visibility:hidden;
    transition:.3s;
}

.menu-overlay.active{
    opacity:1;
    visibility:visible;
}

/* ========================================
   HERO
======================================== */
.hero{
    position:relative;
    overflow:hidden;
    min-height:650px;
}

.hero-slider{
    position:relative;
    width:100%;
    height:650px;
}

.hero-slide{
    position:absolute;
    inset:0;
    display:flex;
    align-items:center;
    background-size:cover;
    background-position:center;
    opacity:0;
    pointer-events:none;
    z-index:1;
    transform:translateZ(0) scale(1.03);
    backface-visibility:hidden;
    transition:opacity .8s ease-in-out, transform 6s ease;
}

.hero-slide.slide1{
	background-image: url(images/jain-akash-and-co-hero-pic.webp);
}

.hero-slide.slide2{
	background-image: url(images/jain-akash-and-co-hero-pic2.webp);
}

.hero-slide.active{
    opacity:1;
    pointer-events:auto;
    z-index:2;
    transform:translateZ(0) scale(1);
}

.hero-slide:before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(rgba(15,43,70,.75),rgba(15,43,70,.85));
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:700px;
    padding-top:40px;
    color:#fff;
}

.hero h1{
    font-size:64px;
    line-height:1.15;
    letter-spacing:-0.5px;
    margin-bottom:20px;
    color:#fff;
}

.hero p{
    font-size:20px;
    margin-bottom:35px;
    color:rgba(255,255,255,.9);
}

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

.hero-slide h1,
.hero-slide p,
.hero-slide .hero-buttons{
    opacity:0;
    transform:translateY(30px);
}

.btn-outline{
border:2px solid #fff;
padding:12px 25px;
color:#fff;
text-decoration:none;
}

.hero-slide.active h1{animation:fadeUp .8s forwards;}
.hero-slide.active p{animation:fadeUp .8s .5s forwards;}
.hero-slide.active .hero-buttons{animation:fadeUp .8s 1s forwards;}

@keyframes fadeUp{
    from{opacity:0;transform:translateY(30px);}
    to{opacity:1;transform:translateY(0);}
}

.slider-dots{
    position:absolute;
    bottom:30px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:10px;
    z-index:10;
}

.slider-dot{
    width:12px;
    height:12px;
    border-radius:50%;
    background:rgba(255,255,255,.4);
    cursor:pointer;
}

.slider-dot.active{
    background:var(--gold);
    transform:scale(1.3);
}


.page-banner{

    position:relative;

    background:
    linear-gradient(
    rgba(15,43,70,.85),
    rgba(15,43,70,.85)
    ),
    url('images/jain-akash-and-co-hero-pic.webp');

    background-size:cover;
    background-position:center;

    min-height:280px;

    display:flex;
    align-items:center;

    text-align:center;

    color:#fff;

}

.page-banner-content{
    width:100%;
}

.page-banner h1{

    font-size:48px;
    line-height:1.2;

    margin-bottom:10px;

    color:#fff;

}

.page-banner p{

    font-size:20px;

    color:rgba(255,255,255,.9);

    margin:0;

}






/* ========================================
   COMMON SECTIONS
======================================== */
.section{padding:60px 0;}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:38px;
    line-height:1.25;
    margin-bottom:12px;
}

.section-title p{color:#666;}

/* ========================================
   ABOUT
======================================== */
.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:flex-start;
}

.about-img{
    height:600px;
background:url('images/akash-jain-ca.webp');
    background-size:cover;
    border-radius:10px;
}

/* ========================================
   STATS
======================================== */
.stats-section{
    background:var(--navy);
    padding:90px 0;
}

.stats-grid{

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

}

.stat-box{

    text-align:center;
    padding:35px 20px;

    background:rgba(255,255,255,0.04);

    backdrop-filter:blur(10px);

    border:1px solid rgba(255,255,255,0.08);

    border-radius:16px;

    transition:.35s ease;

    position:relative;

}

.stat-box:hover{

    transform:translateY(-8px);

    background:rgba(255,255,255,0.08);

    border-color:#C8A45D;

}

.stat-icon{

    width:70px;
    height:70px;

    margin:0 auto 20px;

    border-radius:50%;

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

    background:rgba(200,164,93,.15);

    border:1px solid rgba(200,164,93,.3);

}

.stat-icon i{

    color:#C8A45D;
    font-size:28px;

}

.stat-box h3{

    font-size:52px;
    font-weight:700;
    line-height:1;

    color:#fff;

    margin-bottom:10px;

}

.stat-box p{

    color:rgba(255,255,255,.85);

    font-size:16px;
    letter-spacing:.5px;

    margin:0;

}

/* ========================================
   SERVICES
======================================== */
.services{background:var(--light);}

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

.service-card{
    background:#fff;
    padding:30px;
    border-radius:10px;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.service-card i{
	color: var(--gold);
	margin: 0;
    font-size: 24px;
}

.service-card p{
	margin-bottom:25px;
}

.service-header{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:15px;
}

.service-header h3{
    font-size:21px;
    line-height:1.3;
    margin:0;
    color:var(--navy);
}

/* ========================================
   WHY US
======================================== */
.why-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.why-box{
    padding:25px;
    background:#fff;
    border-left:4px solid var(--gold);
}

/* ========================================
   INDUSTRIES
======================================== */
.industries{background:var(--light);}

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

.industry-box{
    background:#fff;
    padding:40px 25px;
    border-radius:16px;
    text-align:center;
}

.industry-box h3{
    font-size:24px;
    line-height:1.3;
    margin-bottom:12px;
    color:var(--navy);
}

.industry-box i{
	font-size: 32px;
    color: #C8A45D;
    margin-bottom: 20px;
}

/* ========================================
   CTA
======================================== */
.cta{
    background:var(--navy);
    color:#fff;
    text-align:center;
    padding:100px 0;
}

.cta h2{
    font-size:50px;
    line-height:1.2;
    margin-bottom:20px;
}
.cta p{
	margin-bottom: 30px;
    font-size: 18px;
}

/* ========================================
   FOOTER
======================================== */
footer{
    background:#081827;
    color:#fff;
    padding:60px 0 20px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:40px;
}

footer h3 {
    margin-bottom: 15px;
}

footer ul {
    list-style: none;
}

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

footer a {
    color: #ddd;
    text-decoration: none;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
}

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

header{
	top:41px;
}

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

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

    .mobile-toggle{
        display:block;
        position:absolute;
        right:20px;
        top:20px;

        z-index: 10033;

        font-size:24px;
        line-height:1;
        cursor:pointer;

        color:var(--navy);
    }

    .logo img{height:42px;}

     .nav-menu{
         position:fixed;
    top:0;
    right:-100%;
    z-index:10001;
        width:85%;
        max-width:340px;
        height:100vh;
        background:#fff;
        overflow-y:auto;

        display:flex;
        flex-direction:column;
        gap:0;

        padding:20px 10px 40px;

        transition:right .35s ease;
    }

    .nav-menu.active{
        right:0;
    }
    .nav-menu+.btn{display:none;}
	
	
	.menu-overlay{
        z-index:1000;
    }

    body.menu-open{
        overflow:hidden;
        height:100vh;
    }

    .nav-menu li{
        width:100%;
    }

    .nav-menu a{
        display:block;
        padding:6px 0px 6px 10px;
        border-bottom:1px solid #eee;
    }

    .mobile-menu-logo{
        position:relative;
        text-align:left;
        padding-right:50px;
        margin-bottom:0px;
    }

    .mobile-menu-logo img{
        height:40px;
        width:auto;
    }
	
	.cta{
		padding:40px 0px 50px;
	}
	
	
	.dropdown .submenu{
    display:none;
    position:static;
    opacity:1;
    visibility:visible;
    transform:none;
    box-shadow:none;
    min-width:100%;
    margin-top:0;
}



.dropdown.open > a .nav-chevron{
    transform:rotate(180deg);
}


 .navbar{
        position:relative;
        min-height:70px;
    }

    .mobile-toggle{
        position:absolute;
        right:0;
        top:50%;
        transform:translateY(-50%);
    }

    .logo img{
        height:42px;
    }


}

/* ========================================
   MOBILE
======================================== */
@media(max-width:768px){
	

    .hero{min-height:520px;}
    .hero-slider{height:550px;}
 .hero-content{
        padding-top:40px;
    }
    .hero h1{font-size:34px;}
    .hero p{font-size:16px;}

    .hero-buttons{
        flex-direction:column;
        align-items:flex-start;
    }
	
	.section{
		    padding: 40px 0;
	}

    .service-grid,
    .industry-grid,
    .stats-grid,
    .why-grid{
        grid-template-columns:1fr;
    }

    .navbar{ min-height:64px;
        padding:10px 0;}
    .logo img{height:45px;}
    .about-img{height:450px;}
	
	
	 .hero h1{
        font-size:34px;
        line-height:1.2;
    }
	
	.stats-section{
		padding: 20px 0;
	}

    .section-title h2{
        font-size:30px;
        line-height:1.25;
    }

    .industry-box h3,
    .service-header h3{
        font-size:20px;
    }
	
	footer{
		    padding: 30px 0 20px;
	}
	
	.footer-grid img.footer-logo{
		width:90%;
	}

    .cta h2{
        font-size:32px;
        line-height:1.25;
    }
	
	
	    .page-banner{

        min-height:180px;

        padding:40px 0;

    }

    .page-banner h1{

        font-size:30px;

    }

    .page-banner p{

        font-size:16px;

    }
}

/* ========================================
   SMALL MOBILE
======================================== */
@media(max-width:480px){
    .container{width:92%;}
    .topbar a{font-size:13px;}
}

/* ========================================
   EXTRA SMALL
======================================== */
@media(max-width:400px){
    .topbar a{font-size:12px;}
}
