
/*=========================================
        GOOGLE FONT
=========================================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*=========================================
        RESET
=========================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#ffffff;
    color:#222;
    overflow-x:hidden;
    line-height:1.7;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

section{
    padding:90px 0;
}

.container{
    max-width:1200px;
}

/*=========================================
            NAVBAR
=========================================*/

.navbar{
    background: #f8fbff;
    padding: 10px 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 999;
}

.navbar .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand{
    padding: 0;
    margin: 0;
}

.navbar-brand img{
    width: 95px;
    height: auto;
    display: block;
}

.navbar-nav{
    display: flex;
    align-items: center;
    gap: 18px;
}

.navbar-nav .nav-item{
    margin-left: 0;
}

.nav-link{
    color: #0d2d62 !important;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s ease;
}

.nav-link:hover,
.nav-link.active{
    color: #F47C20 !important;
}

.contact-btn{
    background: #F47C20;
    color: #f8fbff !important;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s ease;
}

.contact-btn:hover{
    background: #df6d11;
    color: #f8fbff!important;
}

/* Mobile */

@media (max-width: 991px){

    .navbar{
        padding: 8px 0;
    }

    .navbar-brand img{
        width: 75px;
    }

    .navbar-nav{
        gap: 10px;
        padding-top: 15px;
    }

    .contact-btn{
        display: inline-block;
        margin-top: 10px;
    }
}
/*=========================================
        HERO SECTION
=========================================*/
/*==============================
        HERO SECTION
==============================*/

.hero{
    background:#f8fbff;
    padding:10px 0 50px;
    margin-top:0;
}


.hero .container{
    max-width:1200px;
    width:90%;
    margin:0 auto;
}

.hero-section{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

/* Left */

.hero-left{
    flex:0 0 58%;
}

/* Subtitle */

.sub-heading{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:20px;
}

.line{
    width:45px;
    height:3px;
    background:#F47B20;
    flex-shrink:0;
}

.sub-heading p{
    margin:0;
    color:#F47B20;
    font-size:15px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

/* Heading */

.hero-left h1{
    font-size:36px;
    font-weight:700;
    line-height:1.2;
    color:#163B88;
    margin-bottom:20px;
}

.green{
    color:#198754;
}

.orange{
    color:#F47B20;
}

/* Paragraph */

.hero-text{
    font-size:17px;
    color:#555;
    line-height:1.9;
    margin-bottom:20px;
}

/* Buttons */

.hero-buttons{
    display:flex;
    gap:20px;
    margin-top:35px;
    margin-bottom:45px;
}

.btn-orange{
    background:#F47B20;
    color:#fff;
    padding:14px 28px;
    border-radius:8px;
    font-weight:600;
    transition:.3s;
}

.btn-orange:hover{
    background:#d86d12;
    color:#fff;
}

.btn-white{
    border:2px solid #163B88;
    color:#163B88;
    padding:14px 28px;
    border-radius:8px;
    font-weight:600;
    transition:.3s;
}

.btn-white:hover{
    background:#163B88;
    color:#fff;
}

/* Stats */

.stats{
    display:flex;
    gap:18px;
}

.stat-box{
    width:170px;
    height:120px;
    border:2px solid #163B88;
    border-radius:10px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    background:#fff;
}

.stat-box h2{
    color:#163B88;
    font-size:28px;
    font-weight:700;
    margin-bottom:8px;
}

.stat-box span{
    font-size:12px;
    color:#888;
    letter-spacing:2px;
}

/* Right */

.hero-right{
    flex:0 0 38%;
    display:flex;
    justify-content:center;
}

.hero-right img{
    width:100%;
    max-width:500px;
}

/* Responsive */

@media(max-width:991px){

.hero-section{
    flex-direction:column;
    text-align:center;
}

.sub-heading{
    justify-content:center;
}

.hero-left{
    flex:100%;
}

.hero-right{
    flex:100%;
    margin-top:40px;
}

.hero-buttons{
    justify-content:center;
    flex-wrap:wrap;
}

.stats{
    justify-content:center;
    flex-wrap:wrap;
}

.hero-left h1{
    font-size:40px;
}

}

@media(max-width:576px){

.hero-left h1{
    font-size:30px;
}

.hero-buttons{
    flex-direction:column;
}

.btn-orange,
.btn-white{
    width:100%;
    text-align:center;
}

.stat-box{
    width:100%;
}

}

/*=========================
MISSION & VISION
=========================*/

.mission-vision{
    display:flex;
    justify-content:space-between;
    gap:35px;
    margin-bottom:45px;
}

.mission-card,
.vision-card{

    width:582px;
    height:220px;
    background:#F6F8FC;
    border-radius:8px;
    padding:38px 40px;
    position:relative;
}

.mission-card::before{
    content:'';
    position:absolute;
    left:0;
    top:0;
    width:6px;
    height:100%;
    background:#15803D;
    border-radius:8px 0 0 8px;
}

.vision-card::before{
    content:'';
    position:absolute;
    left:0;
    top:0;
    width:6px;
    height:100%;
    background:#F47C20;
    border-radius:8px 0 0 8px;
}

.mission-card h3{

    color:#15803D;
    font-size:17px;
    letter-spacing:2px;
    margin-bottom:18px;
}

.vision-card h3{

    color:#F47C20;
    font-size:17px;
    letter-spacing:2px;
    margin-bottom:18px;
}

.mission-card p,
.vision-card p{

    font-size:17px;
    line-height:1.8;
    color:#333;
}

/*=========================
CORE VALUES
=========================*/

.values-heading{

    text-align:center;
    color:#173B84;
    font-size:18px;
    letter-spacing:3px;
    margin-bottom:28px;
}

.values-grid{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px 22px;
}

.value-item{

    border:1.5px solid #173B84;
    border-radius:6px;
    height:62px;

    display:flex;
    align-items:center;

    padding-left:28px;

    font-size:17px;

    background:#fff;
}
/* .stat-box{

    background:#fff;

    border-radius:18px;

    padding:22px;

    width:170px;

    text-align:center;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

}

.stat-box h3{

    color:#0d6efd;

    font-size:28px;

    font-weight:700;

}

.stat-box p{

    margin:0;

    color:#666;

}

.hero-image{

    width:100%;

    width:380px;

    margin-top:20px;

    object-fit:contain;
}


================= ABOUT ================= */

/* ==========================
   ABOUT SECTION
========================== */

.about{
    width:100%;
    padding:40px 0 30px;
    text-align:center;
}

.about .container{
    max-width:1100px;
    margin:0 auto;
}

/* ABOUT BSNA */

.about-tag,
.hero-subtitle{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    color:#F47C20;
    font-size:15px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:5px;
}

/* WHO WE ARE */

.about-title{
    font-size:58px;
    font-weight:700;
    color:#163B88;
    margin:0 0 20px;
    line-height:1.1;
}

/* Paragraph */


.about-text{
    width:100%;
    max-width:980px;
    margin:0 auto 8px;
    font-size:18px;
    line-height:1.9;
    color:#555;
    text-align:center;
}

/* Remove extra space below last paragraph */

.about-text:last-child{
    margin-bottom:0;
}
.about-info{
    padding-top:10px;
       padding-bottom:60px;
}

.mission-vision{
    max-width:900px;
    margin:0 auto 40px;
    display:flex;
    gap:24px;
}

/* ================= Mission ================= */

.bsna-mission-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
    margin-top:50px;
}

.bsna-mission-card{
    background:#f5f6fb;
    padding:35px;
    text-align:left;
}

.bsna-mission-card.left{
    border-left:5px solid #2d8c4d;
}

.bsna-mission-card.right{
    border-left:5px solid #f07b16;
}

.bsna-mission-card h3{
    color:#d78425;
    margin-bottom:15px;
    font-size:18px;
}

.bsna-mission-card p{
    color:#555;
    line-height:1.8;
}

/* ================= Core Values ================= */

.bsna-core-title{
    margin:55px 0 25px;
    color:#173b87;
    letter-spacing:1px;
}

.bsna-core-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.bsna-core-grid div{
    padding:16px;
    border:1px solid #cfcfcf;
    border-radius:4px;
    text-align:left;
    background:#fff;
}


/* ================= Hyderabad ================= */

.bsna-city-box{
    margin-top:40px;
    background:#15307d;
    color:#fff;
    padding:35px;
    border-radius:6px;
    text-align:left;
}

.bsna-city-box h3{
    color:#f18a20;
    margin-bottom:8px;
    letter-spacing:1px;
}

.bsna-city-box span{
    display:block;
    margin-bottom:18px;
    color:#ddd;
}

.bsna-city-box p{
    line-height:1.8;
}

/* ================= Responsive ================= */

@media(max-width:991px){

.bsna-about-title{
    font-size:38px;
}

.bsna-about-text{
    width:100%;
}

.bsna-mission-grid{
    grid-template-columns:1fr;
}

.bsna-core-grid{
    grid-template-columns:1fr;
}

}
/*=========================================
        STATISTICS
=========================================*/
.hero-stats {
    display: flex;
    gap: 20px; /* Space between three boxes */
    margin-top: 20px;
}
.primary-btn {
    background: #00a651;
    color: white;
}

.secondary-btn {
    border: 2px solid #00a651;
    color: #00a651;
}
.stat-box {
    padding: 20px 35px;
    border-radius: 15px;
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    min-width: 150px;
    border: 1px solid #000;  
}

.stat-box h3 {
    font-size: 28px;
    margin: 0;
    color:black;
}

.stat-box p {
    margin-top: 8px;
    font-size: 15px;
    color: #555;
}

/*=========================================
        COMMON TITLES
=========================================*/

.section-subtitle{
    display:inline-block;
    color:#0d6efd;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:15px;
}

.section-title{
    font-size:42px;
    font-weight:700;
    color:#0d2d62;
    margin-bottom:20px;
}

.section-description{
    max-width:700px;
    margin:auto;
    color:#666;
}
.about{
    background:#fff;
    padding:80px 0;
}
.about-title{
    font-size:58px;
    font-weight:800;
    color:#0d2d62;
    margin-bottom:25px;
    text-transform:uppercase;
}

.about-text{
    max-width:900px;
    margin:0 auto;
    font-size:18px;
    color:#555;
    line-height:1.8;
}
/*=========================================
        BUTTONS
=========================================*/

.btn-primary{
    border-radius:50px;
    padding:12px 28px;
}

.btn-warning{
    border-radius:50px;
    padding:12px 28px;
}

.btn-outline-primary{
    border-radius:50px;
    padding:12px 28px;
}

.hyderabad-card{

    margin-top:40px;
    background:#142C73;
    border-radius:8px;
    padding:35px 45px;
}

.hyderabad-card h2{

    color:#F47C20;
    font-size:28px;
    letter-spacing:3px;
    margin-bottom:18px;
}

.location{

    color:#ffffff;
    font-size:18px;
    margin-bottom:20px;
}

.description{

    color:#ffffff;
    font-size:18px;
    line-height:1.8;
}
/* ==========================
   DIVISIONS SECTION
========================== */
.card-link{
    text-decoration: none;
    color: inherit;
    display: block;
}

.card{
    cursor: pointer;
    transition: all 0.3s ease;
}

.card:hover{
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.bsna-division-card h3{

    color:#d78729;
    margin:15px 0;

}
.divisions{
    background:#f8f9fc;
    text-align:center;
    padding:70px 8%;
}

/* Subtitle */

.hero-subtitle{
    display:inline-block;
    font-size:13px;
    font-weight:600;
    color:#d48828;
    letter-spacing:1px;
    margin-bottom:15px;
    text-transform:uppercase;
}

/* Main Heading */

.about-title{
    font-size:48px;
    font-weight:700;
    color:#153d8a;
    line-height:1.2;
    margin-bottom:45px;
    text-transform:uppercase;
}

/* ==========================
   GRID
========================== */

.division-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.card:nth-child(4){
    justify-self: end;
}

.card:nth-child(5){
    justify-self: start;
}
/* ==========================
   CARD
========================== */

.card{
    background:#fff;
    border:1px solid #d8d8d8;
    border-radius:4px;
    padding:25px;
    text-align:left;
    transition:.3s ease;
}

.card:hover{
    transform:translateY(-6px);
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

/* ==========================
   ICON
========================== */

.icon{
    width:48px;
    height:48px;
    background:#163f8c;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:3px;
    margin-bottom:18px;
}

.icon i{
    font-size:20px;
}

/* ==========================
   CORE VALUES
========================== */

.core-values {
    margin-top: 50px;
    text-align: center;
}

.core-values h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1b2f7a;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.value-box {
    background: #fff;
    border: 1px solid #cfd4dc;
    border-radius: 6px;
    padding: 14px 20px;
    text-align: left;
    font-size: 16px;
    color: #333;
    transition: 0.3s ease;
}

.value-box:hover {
    border-color: #1b2f7a;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}
/* ==========================
   TEXT
========================== */

.orange-title{
    color:#d48828;
    font-size:15px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:8px;
}
.card h3{
   
    color:#d48828;
;
}
.card h4{
    font-size:18px;
    color:#222;
    margin-bottom:12px;
    font-weight:600;
}

.card p{
    color:#666;
    font-size:14px;
    line-height:1.7;
    margin-bottom:18px;
}

/* ==========================
   TAGS
========================== */

.tags{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
}

.tags span{
    border:1px solid #d5d5d5;
    border-radius:20px;
    padding:6px 12px;
    font-size:12px;
    color:#666;
    background:#fff;
    transition:.3s;
}

.tags span:hover{
    background:#153d8a;
    color:#fff;
    border-color:#153d8a;
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width:992px){

.about-title{
    font-size:38px;
}

.division-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media (max-width:768px){

.divisions{
    padding:50px 20px;
}

.about-title{
    font-size:30px;
}

.division-grid{
    grid-template-columns:1fr;
}

.card{
    padding:20px;
}

.card h4{
    font-size:17px;
}

.card p{
    font-size:13px;
}

.tags span{
    font-size:11px;
    padding:5px 10px;
}

}

@media (max-width:480px){

.about-title{
    font-size:26px;
}

.hero-subtitle{
    font-size:12px;
}

.card{
    padding:18px;
}

.icon{
    width:42px;
    height:42px;
}

.icon i{
    font-size:18px;
}

}
/*=========================================
        SERVICES
=========================================*/

.services{
    background:#fff;
}

.service-card,
.division-card{
    background:#fff;
    border-radius:25px;
    padding:35px;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
}

.service-card:hover,
.division-card:hover{
    transform:translateY(-10px);
}

.service-icon,
.division-icon{
    width:90px;
    height:90px;
    margin:auto;
    border-radius:50%;
    background:#0d6efd;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    margin-bottom:25px;
}

.service-card h3,
.division-card h4{
    color:#0d2d62;
    margin-bottom:20px;
    font-weight:700;
}

.service-card p,
.division-card p{
    color:#666;
    margin-bottom:25px;
}

.service-card .btn,
.division-card .btn{
    border-radius:30px;
}


/*=========================================
        HOVER EFFECTS
=========================================*/

.about-box:hover,
.vm-card:hover,
.value-card:hover,
.service-card:hover,
.division-card:hover{
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.vm-card:hover .vm-icon,
.value-card:hover i,
.service-card:hover .service-icon,
.division-card:hover .division-icon{
    background:#ff9800;
    transform:rotate(360deg);
    transition:.6s;
}
/*=========================================
            FOUNDER SECTION
=========================================*/

.founder-section{
    background:#fff;
    text-align:center;
}

.about-text1{
    max-width:900px;
    margin:20px auto;
    color:#555;
    line-height:1.9;
}

.green1{
    color:#198754;
    font-weight:700;
}

.orange1{
    color:#F47C20;
    font-weight:700;
}


.career-section h2{
    margin-top:5px;
}
/* Careers */

.career-section{
background:#f5f7fd;
padding:70px 8%;
text-align:center;
}

.section-tag{
color:#d88928;
font-size:13px;
font-weight:600;
}

.career-section h2{
font-size:48px;
color:#163c86;
margin:15px 0;
}

.career-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:15px;
margin:40px 0;
}

.career-grid div{
border:1px solid #ccc;
padding:15px;
background:#fff;
text-align:left;
border-radius:4px;
}

.career-banner{
background:#142f77;
padding:35px;
color:#fff;
border-radius:6px;
text-align:left;
}

.career-banner h3{
color:#d88928;
margin-bottom:15px;
}

.career-buttons{
margin-top:20px;
}

.career-buttons a{
display:inline-block;
padding:8px 15px;
background:#ef6c00;
color:#fff;
text-decoration:none;
margin-right:10px;
border-radius:4px;
font-size:14px;
}


/* Contact */

.contact-section{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
padding:70px 8%;
}

.contact-left h2{
font-size:42px;
color:#163c86;
margin:15px 0;
}

.contact-item{
display:flex;
gap:20px;
margin:25px 0;
}

.contact-item i{
width:55px;
height:55px;
background:#163c86;
color:#fff;
display:flex;
align-items:center;
justify-content:center;
font-size:22px;
}

.contact-item h4{
color:#d88928;
margin-bottom:5px;
}

.contact-form{
background:#142f77;
padding:30px;
border-radius:6px;
}

.row{
display:grid;
grid-template-columns:1fr 1fr;
gap:15px;
margin-bottom:15px;
}

.contact-form input,
.contact-form textarea{
width:100%;
padding:14px;
border:none;
outline:none;
}

.contact-form textarea{
height:120px;
resize:none;
margin:15px 0;
}

.contact-form button{
width:100%;
padding:14px;
background:#ef6c00;
border:none;
color:#fff;
font-size:16px;
cursor:pointer;
}


/* Responsive */

@media(max-width:991px){

.founder-section,
.contact-section{
grid-template-columns:1fr;
}

.career-grid{
grid-template-columns:1fr;
}

.row{
grid-template-columns:1fr;
}

.contact-left h2,
.career-section h2{
font-size:32px;
}

}

/*=========================================
            JOIN SECTION
=========================================*/

.join-section{
    padding:80px 0;
    background:linear-gradient(135deg,#0d6efd,#3b82f6);
}

.join-box{
    background:#fff;
    border-radius:30px;
    padding:60px;
    text-align:center;
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.join-box h2{
    color:#0d2d62;
    font-size:42px;
    font-weight:700;
}

.join-box p{
    color:#666;
    margin:20px auto 30px;
    max-width:700px;
}


/*=========================================
            CONTACT
=========================================*/

.contact{
    background:#f8fbff;
}

.contact-info{
    background:#0d6efd;
    color:#fff;
    padding:40px;
    border-radius:25px;
    height:100%;
}

.contact-info h4{
    margin-top:20px;
    font-weight:600;
}

.contact-info p{
    margin-bottom:20px;
}
label {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
}
.contact form{
    background:#fff;
    padding:40px;
    border-radius:25px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.form-control{
    padding:15px;
    border-radius:12px;
    border:1px solid #ddd;
    box-shadow:none;
}

.form-control:focus{
    border-color:#0d6efd;
    box-shadow:0 0 0 .2rem rgba(13,110,253,.15);
}

textarea{
    resize:none;
}

.contact button{
    border-radius:30px;
    padding:12px 30px;
}
.hero-subtitle-contact{
    margin:0;
    color:#F47B20;
    font-size:15px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

/*=========================================
            FOOTER
=========================================*/
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Segoe UI,sans-serif;
}

.footer{
    background:#152d72;
    color:#fff;
    padding-top:50px;
}

.footer-container{
    width:90%;
    max-width:1450px;
    margin:auto;

    display:grid;
    grid-template-columns:2.5fr 1fr 1fr 1fr;
    column-gap:90px;
    align-items:start;
}

.footer-left .logo{
    width:125px;
    margin-bottom:28px;
}

.footer-left h2{
    font-size:22px;
    font-weight:400;
    margin-bottom:22px;
}

.footer-left p{
    color:#aeb7d1;
    font-size:17px;
    line-height:1.45;
    width:430px;
}

.footer-column h3{
    font-size:20px;
    font-weight:500;
    margin-bottom:28px;
}

.footer-column a,
.footer-column span{
    display:block;
    text-decoration:none;
    color:#aeb7d1;
    margin-bottom:18px;
    font-size:17px;
    transition:.3s;
}

.footer-column a:hover{
    color:#fff;
}

.footer-bottom{
    margin-top:45px;
    border-top:1px solid rgba(255,255,255,.25);

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:20px 40px;
}

.footer-bottom p{
    color:#d5d8e6;
    font-size:16px;
}

.footer-bottom span{
    color:#d5d8e6;
    font-size:16px;
}

@media(max-width:992px){

.footer-container{
grid-template-columns:1fr;
row-gap:40px;
}

.footer-left p{
width:100%;
}

.footer-bottom{
flex-direction:column;
gap:10px;
text-align:center;
}

}

/*=========================================
            RESPONSIVE
=========================================*/

@media(max-width:992px){

.hero{
    text-align:center;
}

.hero-image{
    margin-top:40px;
}

.hero-title{
    font-size:42px;
}

.statistics{
    margin-top:30px;
}

.founder{
    text-align:center;
}

.founder-img{
    margin-bottom:30px;
}

.contact-info{
    margin-bottom:30px;
}

}

@media(max-width:768px){

.hero-title{
    font-size:34px;
}

.section-title{
    font-size:32px;
}

.join-box{
    padding:40px 20px;
}

.join-box h2{
    font-size:30px;
}

.stat-card,
.about-box,
.vm-card,
.value-card,
.division-card,
.career-card{
    margin-bottom:20px;
}

}

@media(max-width:576px){

section{
    padding:60px 0;
}

.hero{
    padding-top:120px;
}

.hero-title{
    font-size:28px;
}

.hero-buttons .btn{
    width:100%;
    margin-bottom:15px;
}

.section-title{
    font-size:26px;
}

.navbar-brand{
    font-size:22px;
}

.contact form{
    padding:25px;
}

footer{
    text-align:center;
}

footer i{
    margin-top:10px;
}

}
/*==========================
PROCESS
===========================*/

.process{

padding:100px 0;
background:#fff;

}

.process-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;

}

.process-card{

background:#fff;
padding:35px;
border-radius:18px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
position:relative;
transition:.4s;

}

.process-card:hover{

transform:translateY(-10px);

}

.process-card span{

position:absolute;
right:25px;
top:20px;
font-size:50px;
font-weight:700;
color:#e8edf7;

}

.process-card i{

font-size:45px;
color:#D9902B;
margin-bottom:20px;

}

.process-card h3{

margin-bottom:15px;
color:#0B2C6B;

}

/*==========================
INDUSTRIES
===========================*/

.industries{

background:#f7f9fc;
padding:100px 0;

}

.industry-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;

}

.industry-card{

background:#fff;
padding:35px;
text-align:center;
border-radius:18px;
transition:.4s;
box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.industry-card:hover{

background:#0B2C6B;
color:#fff;

}

.industry-card:hover h3{

color:#fff;

}

.industry-card i{

font-size:45px;
color:#D9902B;
margin-bottom:20px;

}

/*==========================
PLATFORMS
===========================*/

.platforms{

padding:100px 0;

}

.platform-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;

}

.platform-grid div{

padding:25px;
text-align:center;
background:#fff;
border-radius:15px;
font-weight:600;
box-shadow:0 8px 25px rgba(0,0,0,.08);
transition:.3s;

}

.platform-grid div:hover{

background:#0B2C6B;
color:#fff;

}

/*==========================
COUNTERS
===========================*/

.counter{

background:#0B2C6B;
padding:80px 0;

}

.counter-grid{

display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
text-align:center;

}

.counter h2{

font-size:55px;
color:#D9902B;

}

.counter p{

color:#fff;
font-size:18px;

}

@media(max-width:768px){

.counter-grid{

grid-template-columns:repeat(2,1fr);

}

}
/* ==========================================
   INFOSYS STYLE HAMBURGER MENU
========================================== */

/* White Circular Hamburger */

.menu-circle{
    width:52px;
    height:52px;
    background:#fff;
    border:none;
    border-radius:50%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:5px;
    cursor:pointer;
    box-shadow:0 8px 20px rgba(0,0,0,.15);
    transition:.3s;
    padding:0;
    margin-right:15px;
}

.menu-circle:hover{
    transform:scale(1.05);
}

/* Three Lines */

.menu-circle span{
    width:22px;
    height:3px;
    background:#1F3A93;
    border-radius:20px;
    transition:.3s;
}

.menu-circle:hover span{
    background:#ff7a00;
}

/* ==========================================
   SIDEBAR
========================================== */

#sidebar{
    position:fixed;
    top:0;
    left:-300px;
    width:280px;
    height:100vh;
    background:#ffffff;
    box-shadow:8px 0 25px rgba(0,0,0,.18);
    transition:left .35s ease;
    z-index:99999;
    overflow-y:auto;
    padding-top:90px;
}

#sidebar.show{
    left:0;
}

/* Close Button */

#closeBtn{
    position:absolute;
    top:20px;
    right:20px;
    border:none;
    background:none;
    font-size:32px;
    cursor:pointer;
    color:#333;
}

/* Sidebar Links */

#sidebar a{
    display:block;
    padding:18px 28px;
    text-decoration:none;
    color:#222;
    font-size:17px;
    font-weight:500;
    transition:.3s;
    border-bottom:1px solid #f1f1f1;
}

#sidebar a:hover{
    background:#ff7a00;
    color:#fff;
    padding-left:38px;
}

/* ==========================================
   OVERLAY
========================================== */

#overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.45);
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:99998;
}

#overlay.show{
    opacity:1;
    visibility:visible;
}

/* ==========================================
   MOBILE
========================================== */

@media(max-width:991px){

    .navbar-collapse{
        display:none !important;
    }

}
/*=========================================
        PROFESSIONAL ANIMATIONS
=========================================*/

/* Smooth page load */
body{
    animation: pageFade .8s ease;
}

@keyframes pageFade{
    from{
        opacity:0;
    }
    to{
        opacity:1;
    }
}

/* Hero Animation */
.hero-left{
    opacity:0;
    transform:translateX(-60px);
    animation:heroLeft 1s ease forwards;
}

.hero-right{
    opacity:0;
    transform:translateX(60px);
    animation:heroRight 1s ease .3s forwards;
}

@keyframes heroLeft{
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes heroRight{
    to{
        opacity:1;
        transform:translateX(0);
    }
}

/* Floating Logo */
.hero-right img{
    animation:floatLogo 5s ease-in-out infinite;
}

@keyframes floatLogo{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-15px);
    }

    100%{
        transform:translateY(0);
    }

}

/* Navbar Links */

.nav-link{
    position:relative;
}

.nav-link::after{

    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
    background:#F47C20;
    transition:.35s;

}

.nav-link:hover::after{

    width:100%;

}

/* Buttons */

.btn-orange,
.btn-white,
.contact-btn,
.career-buttons a,
.contact-form button{

    transition:.35s;

}

.btn-orange:hover,
.btn-white:hover,
.contact-btn:hover,
.career-buttons a:hover,
.contact-form button:hover{

    transform:translateY(-4px);
    box-shadow:0 15px 30px rgba(0,0,0,.18);

}

/* Cards */

.card,
.mission-card,
.vision-card,
.value-item,
.hyderabad-card,
.process-card,
.industry-card{

    transition:.4s;

}

.card:hover,
.mission-card:hover,
.vision-card:hover,
.hyderabad-card:hover,
.process-card:hover,
.industry-card:hover{

    transform:translateY(-12px);
    box-shadow:0 18px 40px rgba(0,0,0,.15);

}

/* Icons */

.icon,
.contact-item i{

    transition:.4s;

}

.card:hover .icon{

    transform:rotate(360deg);
    background:#F47C20;

}

/* Stats */

.stat-box{

    transition:.35s;

}

.stat-box:hover{

    transform:scale(1.06);
    box-shadow:0 20px 40px rgba(0,0,0,.15);

}

/* Footer Links */

.footer-column a{

    position:relative;
    transition:.3s;

}

.footer-column a:hover{

    padding-left:10px;

}

/* Images */

img{

    transition:.5s;

}

img:hover{

    transform:scale(1.02);

}

/* Scroll Animation */

.hidden{

    opacity:0;
    transform:translateY(80px);
    transition:1s;

}

.show{

    opacity:1;
    transform:translateY(0);

}

/* Shine Effect */

.hero-right{

    position:relative;
    overflow:hidden;

}

.hero-right::before{

    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:45%;
    height:100%;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.5),
        transparent
    );

    animation:shine 5s infinite;

}

@keyframes shine{

    100%{

        left:150%;

    }

}

/* Scrollbar */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#f2f2f2;

}

::-webkit-scrollbar-thumb{

    background:#163B88;
    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#F47C20;

}
/* Sidebar text color fix */

#sidebar{
    background:#fff;   /* Blue sidebar */
}

#sidebar a{
    color:#163B88!important;
}

#sidebar .submenu a{
    color:#163B88  !important;
}

#sidebar a:hover{
    color:#163B88  !important;
    background:#F47C20;
}

#sidebar a:visited{
    color:#163B88  !important;
}

#sidebar a:focus,
#sidebar a:active{
    color:#163B88  !important;
}