@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

html{
scroll-behavior:smooth;
}

body{
background:#f5f7fa;
overflow-x:hidden;
color:#222;
}

/* =========================
NAVBAR
========================= */

/* .navbar {
    background: #000;
    padding: 2px 8%;
} */

/* .logo-img {
    width: 100px;
    height: 60px;
    object-fit: contain;
} */


.navbar {
    background: #000;
    padding: 10px 4%;   /* increase top & bottom padding */
    min-height: 90px;   /* navbar height */
}

.logo-img {
    width: 157px;   /* increase width */
    height: 89px;   /* increase height */
    object-fit: contain;
}


/* .nav-link {
    color: #ffffff !important;
    margin-left: 5px;
    font-size: 16px;
    position: relative;
    transition: 0.3s;
} */

.nav-link {
    color: #ffffff !important;
    margin-left: 5px;
    font-size: 15px;   /* Decreased size */
    font-weight: 500;
    position: relative;
    transition: 0.3s;
}

.nav-link:hover {
    color: #ffe082 !important;
}

.nav-link::after {
    display: none;
}


.nav-link:hover::after {
    width: 100%;
}



.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}



.dropdown-menu {
    background: #111;
    border: none;
    border-radius: 10px;
    padding: 10px 10;
}

.dropdown-item {
    color: #fff;
    padding: 28px 15px;
    transition: 0.3s;
}

.dropdown-item:hover {
    background: #ffffff;
    color: #000;
    padding-left: 40px;
}



@media(min-width:992px) {

    .dropdown-menu {
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        display: block;
        transition: 0.3s;
    }

    .nav-item.dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

}

/* =========================
HERO
========================= */

.hero{
position:relative;
height:100vh;
overflow:hidden;
}

.slide{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
opacity:0;
transition:1s;
}

.slide.active{
opacity:1;
}

.slide img{
width:100%;
height:100%;
object-fit:cover;
}

.overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,.65);
z-index:1;
}

.hero-content{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
text-align:center;
z-index:2;
color:#fff;
width:90%;
max-width:850px;
}

.hero-content h5{
color:#ffe082;
letter-spacing:4px;
margin-bottom:20px;
font-weight:500;
}

.hero-content h1{
font-size:52px;
font-weight:690;
line-height:1.15;
max-width:850px;
margin:0 auto 20px;
}

.hero-content p{
font-size:15px;
line-height:1.8;
max-width:700px;
margin:0 auto 30px;
}

.hero-buttons{
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
}

.prev,
.next{
position:absolute;
top:50%;
transform:translateY(-50%);
width:55px;
height:55px;
border:none;
border-radius:50%;
background:rgba(255,255,255,.2);
color:#fff;
font-size:22px;
cursor:pointer;
z-index:10;
}

.prev{
left:20px;
}

.next{
right:20px;
}

.prev:hover,
.next:hover{
background:#fff;
color:#000;
}

/* =========================
BUTTONS
========================= */

/* .btn-primary{
padding:14px 30px;
font-weight:500;
}

.btn-outline-light{
padding:14px 30px;
font-weight:500;
} */
/* 
.btn-primary,
.btn-outline-light{
    padding: 12px 25px;   /* Reduced button size */
   /* font-size: 14px;      /* Smaller text */
  /*  font-weight: 500;
    border-radius: 6px;
} */


/* GET STARTED NOW Button */
.btn-primary{
    background: #ffe082 !important;
    border: 2px solid #ffe082 !important;
    color: #000 !important;
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
}

.btn-primary:hover{
    background: #ffd54f !important;
    border-color: #ffd54f !important;
    color: #000 !important;
}
  .btn-outline-light{
    padding: 12px 25px;   /* Reduced button size */
   font-size: 14px;      /* Smaller text */
   font-weight: 500;
    border-radius: 6px;
  }

/* =========================
STATS
========================= */

.stats{
background:#081d45;
padding:60px 8%;
display:grid;
grid-template-columns:repeat(3,1fr);
text-align:center;
}

.stat-box h2{
font-size:40px;
font-weight:700;
color:#63ffd7;
}

.stat-box p{
color:#fff;
margin-top:10px;
}

/* =========================
SECTION TITLE
========================= */

.section-title{
text-align:center;
margin-bottom:60px;
}

.section-title h2{
font-size:52px;
font-weight:700;
margin-bottom:15px;
color: #000;
}

.section-title p{
max-width:700px;
margin:auto;
color:#666;
font-size: medium;
}

/* =========================
CORE
========================= */

.core{
padding:100px 8%;
background:#fff;
}

.strength-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.strength-card{
background:#fff;
padding:35px;
border-radius:15px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.3s;
}

.strength-card:hover{
transform:translateY(-10px);
}

.strength-card h3{
margin-bottom:15px;
}

.strength-card p{
color:#666;
line-height:1.8;
}

/* =========================
ENTERPRISE
========================= */

.enterprise{
padding:100px 8%;
background:#f5f7fa;
}

.enterprise-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.enterprise-card{
background:#fff;
border-radius:15px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.3s;
}

.enterprise-card:hover{
transform:translateY(-10px);
}

.enterprise-card img{
width:100%;
height:240px;
object-fit:cover;
}

.enterprise-card .content{
padding:25px;
}

.enterprise-card h3{
margin-bottom:15px;
}

.enterprise-card p{
color:#666;
line-height:1.8;
}

/* =========================
See More text  botton
========================= */

.see-more-container {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 15px;
    padding-right: 25px;
}

.see-more-btn {
    text-decoration: none;
    font-size: 18px;   /* Smaller text */
    font-weight: 600;
    color: #4f46e5;    /* Indigo color */
    padding: 8px 10px;
    border-radius: 30px;
    background: rgba(79, 70, 229, 0.08);

    animation: moveUp 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.see-more-btn:hover {
    color: #ffffff;
    background: #4f46e5;
    transform: scale(1.05);
}

/* Automatic Up Animation */
@keyframes moveUp {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* =========================
ABOUT PAGE
========================= */

.page-banner{
height:100vh;
position:relative;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
overflow:hidden;
}

.page-banner img{
position:absolute;
width:100%;
height:100%;
object-fit:cover;
}

.banner-content{
position:relative;
z-index:2;
color:#fff;
max-width:850px;
padding:0 20px;
}

.banner-content h5{
color: #ffe082;
margin-bottom:20px;
letter-spacing:3px;
}

.banner-content h1{
font-size:60px;
font-weight:780;
line-height:1.1;
margin-bottom:20px;
}

.banner-content h1 span{
color:#63ffd7;
}

.banner-content p{
font-size:18px;
line-height:1.8;
max-width:700px;
margin:auto;
margin-bottom:30px;
}

.about-section{
padding:120px 8%;
background:#fff;
}

.about-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.about-text h2{
font-size:45px;
margin-bottom:20px;
}

.about-text p{
line-height:1.9;
color:#666;
margin-bottom:15px;
}

.mission-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:30px;
margin-top:50px;
}

.mission-card,
.vision-card{
padding:40px;
border-radius:20px;
}

.mission-card{
background:#081d45;
color:#fff;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}
.mission-card p{
    font-size:15px;
}
.vision-card{
background:#fff; 
box-shadow:0 10px 30px rgba(0,0,0,.08);
}
.vision-card p{
    font-size:15px;
}

.about-stats{
background:#000;
padding:80px 8%;
display:grid;
grid-template-columns:repeat(4,1fr);
text-align:center;
}

.about-stats h2{
font-size:40px;
font-weight: 700;
color:#63ffd7;
}

.about-stats p{
color:#fff;
}
/* =========================
   CULTURE SECTION
========================= */

.culture {
    padding: 80px 8%;
    background: #f8f9fc;
    text-align: center;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.culture-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 18px;
    text-align: left;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.culture-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.culture-card h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 18px;
}

.culture-card p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #555;
}



/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

    .culture {
        padding: 60px 5%;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

    .section-title p {
        font-size: 1rem;
    }

    .culture-card {
        padding: 25px;
    }

    .culture-card h4 {
        font-size: 1.5rem;
    }
}

/* =========================
CONTACT
========================= */

.contact-section{
padding:100px 8%;
}

.contact-form-box{
background:#fff;
padding:40px;
border-radius:15px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.form-row{
display:grid;
grid-template-columns:1fr 1fr;
gap:20px;
margin-bottom:20px;
}

.contact-form input,
.contact-form textarea{
width:100%;
padding:15px;
border:1px solid #ddd;
border-radius:8px;
outline:none;
}

/* =========================
CTA
========================= */

.cta{
padding:100px 8%;
}

.cta-box{
background:linear-gradient(135deg,#081d45,#10357a);
padding:60px;
border-radius:15px;
display:flex;
justify-content:space-between;
align-items:center;
color:#fff;
}


/* =========================
FOOTER
========================= */

.footer{
background:#081d45;
color:#fff;
}

.footer-container{
padding:70px 8%;
display:grid;
grid-template-columns:2fr 1fr 1fr;
gap:40px;
}

.footer-box ul{
list-style:none;
padding:0;
}

.footer-box ul li{
margin-bottom:10px;
}
.footer-box p{
    font-size: 14px;
}

.footer-box a{
color:#fff;
text-decoration:none;
font-size: small;

}

.footer-bottom{
text-align:center;
padding:20px;
border-top:1px solid rgba(255,255,255,.15);
}


/* =========================
RESPONSIVE
========================= */

@media(max-width:991px){

.stats,
.strength-grid,
.enterprise-grid,
.footer-container,
.about-grid,
.mission-grid,
.culture-grid,
.about-stats{
grid-template-columns:1fr;
}

.cta-box{
flex-direction:column;
text-align:center;
}

.banner-content h1{
font-size:45px;
}

}

@media(max-width:768px){

.brand-text{
display:none;
}

.hero-content h1{
font-size:34px;
}

.banner-content h1{
font-size:36px;
}

.section-title h2{
font-size:36px;
}



.form-row{
grid-template-columns:1fr;
}

}

/* new  */

/* ===================================
   HEADER RESPONSIVE
=================================== */

/* Desktop */
@media (min-width: 992px) {

    .navbar {
        padding: 10px 4%;
        min-height: 90px;
    }

    .logo-img {
        width: 160px;
        height: 90px;
    }

    .navbar-nav .nav-link {
        font-size: 15px;
        margin-left: 10px;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 991px) {

    .navbar {
        padding: 10px 3%;
        min-height: 80px;
    }

    .logo-img {
        width: 140px;
        height: 75px;
    }

    .navbar-nav {
        text-align: center;
        margin-top: 15px;
    }

    .navbar-nav .nav-link {
        padding: 12px 0;
        margin-left: 0;
    }

    .dropdown-menu {
        text-align: center;
        background: #111;
    }
}

/* Mobile */
@media (max-width: 767px) {

    .navbar {
        padding: 8px 15px;
        min-height: 70px;
    }

    .logo-img {
        width: 120px;
        height: 60px;
    }

    .navbar-toggler {
        padding: 5px;
    }

    .navbar-collapse {
        background: #000;
        padding: 10px 0;
        border-radius: 8px;
        margin-top: 10px;
    }

    .navbar-nav {
        text-align: center;
    }

    .navbar-nav .nav-link {
        padding: 12px;
        margin-left: 0;
    }

    .dropdown-menu {
        background: #111;
        border: none;
        text-align: center;
    }

    .dropdown-item {
        padding: 10px;
    }
}