
body{
font-family: 'Poppins', sans-serif;
background: #f5f7fb;
color: #333;
}

.about-section{
    background-color: #fffafa;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}


/* SECTION */

        section{
            padding:100px 0;
        }

        .section-heading{
            text-align:center;
            margin-bottom:70px;
        }

        .section-heading h2{
            font-size:42px;
            font-weight:700;
            color:#0d1b2a;
            margin-bottom:20px;
        }

        .section-heading p{
            max-width:800px;
            margin:auto;
            color:#6c757d;
            line-height:1.9;
        }

        /* GLASS CARD */

        .glass-card{
            background:rgba(255,255,255,0.8);
            border-radius:25px;
            padding:35px;
            box-shadow:0 10px 35px rgba(0,0,0,0.08);
            backdrop-filter: blur(10px);
            transition:0.4s;
            height:100%;
            border:1px solid rgba(255,255,255,0.4);
        }

        .glass-card:hover{
            transform:translateY(-10px);
        }

        .glass-icon{
            width:80px;
            height:80px;
            background-color:var(--primary-color);
            color:#fff;
            border-radius:20px;
            display:flex;
            align-items:center;
            justify-content:center;
            font-size:35px;
            margin-bottom:25px;
        }

        .glass-card h4{
            font-weight:700;
            margin-bottom:15px;
        }

        .glass-card p{
            line-height:1.9;
            color:#6c757d;
        }

        /* INFO SECTION */

        .info-section{
            background:#fff;
            border-radius:30px;
            padding:60px;
            box-shadow:0 10px 40px rgba(0,0,0,0.06);
        }

        .info-item{
            display:flex;
            gap:20px;
            margin-bottom:35px;
        }

        .info-icon{
            width:65px;
            height:65px;
            background:#0d6efd;
            color:#fff;
            border-radius:18px;
            display:flex;
            align-items:center;
            justify-content:center;
            font-size:28px;
            flex-shrink:0;
        }

        .info-item h5{
            font-weight:700;
            margin-bottom:10px;
        }

        .info-item p{
            color:#6c757d;
            line-height:1.8;
        }

        /* OBJECTIVES */

        .objective-card{
            background:#fff;
            border-radius:25px;
            overflow:hidden;
            box-shadow:0 10px 35px rgba(0,0,0,0.07);
            transition:0.4s;
            height:100%;
        }

        .objective-card:hover{
            transform:translateY(-8px);
        }

        .objective-top{
            background-color: var(--primary-color);
            color:#fff;
            padding:35px;
            text-align:center;
        }

        .objective-top i{
            font-size:55px;
            margin-bottom:20px;
        }

        .objective-top h4{
            font-weight:700;
        }

        .objective-content{
            padding:30px;
        }

        .objective-content p{
            color:#6c757d;
            line-height:1.9;
        }

        /* HIGHLIGHT */

        .highlight-section{
           background: linear-gradient(rgba(235, 55, 90, 0.7), rgba(235, 55, 90, 0.7)),
           url('../img/1.jpg');
            background-size:cover;
            background-position:center;
            color:#fff;
            border-radius:35px;
            padding:80px 60px;
            overflow:hidden;
        }

        .highlight-section h2{
            font-size:48px;
            font-weight:700;
            margin-bottom:25px;
        }

        .highlight-section p{
            line-height:2;
            font-size:18px;
            opacity:0.95;
        }




:root {
    --primary-color: #eb375a;       /* pink-red */
    --secondary-color: #f2912f; 
    --white:#ffffff;   /* golden-orange */
    --orbit-color: var(--primary-color);
    --dot-gradient: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    --profile-bg: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    --orbit-speed: 8s;
    --wrapper-size: 350px;
    --profile-size: 280px;
    --dot-size: 34px;
}

.header-wrapper {
position: relative;
display: flex;
align-items: center;
}

.custom-navbar {
background-color: var(--secondary-color) !important;
border-radius: 8px;
}

.nav-link { color: var(--white) !important; }

/* ✅ SEARCH WRAPPER */
.search-wrapper {
position: relative;
}

/* ✅ DROPDOWN EXACT BELOW ICON */
.search-dropdown {
position: absolute;
top: 35px; /* directly below icon */
right: 0;
width: 260px;
background-color: var(--white);
padding: 8px;
border-radius: 8px;
display: none;
z-index: 999;
box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Arrow */
.search-dropdown::before {
content: "";
position: absolute;
top: -8px;
right: 12px;
border-width: 8px;
border-style: solid;
border-color: transparent transparent var(--white) transparent;
}

/* Mobile */
.mobile-btn { background: none; border: none; color: var(--white); font-size: 1.5rem; }

#mobileSocialPanel {
background-color: rgba(0, 0, 0, 0.9);
position: absolute;
top: 100%;
left: 0;
width: 100%;
z-index: 99;
padding: 15px;
display: none;
}

.offcanvas { background-color: var(--primary-color); color: var(--white); }

@media (max-width: 768px) {
.header-wrapper {
background-color: var(--primary-color);
}
}

@media (min-width: 769px) {
.header-wrapper {
background: linear-gradient(50deg, var(--secondary-color) 0% 25%, var(--primary-color) 25% 100%);
}
}

@media (min-width: 1401px)
{
.box {
margin-left: 50px;
}
}

@media (max-width: 1400px) {
.box {
margin-left: 120px;
}
}

/* Mobile Adjustments */
@media (max-width: 576px) {
:root {
--wrapper-size: 260px;
--profile-size: 210px;
--dot-size: 24px;
}
}

/* Container for the entire effect */
.orbit-wrapper {
position: relative;
width: var(--wrapper-size);
height: var(--wrapper-size);
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto; /* Centers the orbit in its column */
}

/* The Outer Rotating Ring */
.orbit-ring {
position: absolute;
width: 100%;
height: 100%;
border: 1px solid var(--orbit-color);
border-radius: 50%;
animation: rotateOrbit var(--orbit-speed) linear infinite;
}

/* The moving dots on the orbit */
.orbit-dot {
position: absolute;
width: var(--dot-size);
height: var(--dot-size);
background: var(--dot-gradient);
border-radius: 50%;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Dynamic positioning based on dot size */
.dot-left {
top: 50%;
left: calc(var(--dot-size) / -2);
transform: translateY(-50%);
}

.dot-right {
top: 50%;
right: calc(var(--dot-size) / -2);
transform: translateY(-50%);
}

/* Central Profile Image Styling */
.profile-container {
position: relative;
width: var(--profile-size);
height: var(--profile-size);
background: var(--profile-bg);
border-radius: 50%;
padding: 1px;
display: flex;
align-items: center;
justify-content: center;
z-index: 10;
box-shadow: 0 7px 15px rgba(0,0,0,0.1);
}

.profile-image {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 50%;
background-color: white;
}

@keyframes rotateOrbit {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}

.orbit-wrapper:hover .orbit-ring {
animation-play-state: paused;
}

/* Bellow css code for footer */

/* ===== TOP BAR ===== */
.top-bar {
background: #07224a;
color: #fff;
}

.top-item {
text-align: center;
padding: 30px 15px;
border-right: 1px solid rgba(255,255,255,0.1);
}

.top-item:last-child {
border-right: none;
}

.top-item i {
font-size: 30px;
color: #8dc63f;
margin-bottom: 10px;
display: block;
}

/* Mobile border fix */
@media (max-width: 767px) {
.top-item {
border-right: none;
border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-item:last-child {
border-bottom: none;
}
}

/*** Management Team ***/

.team-item {
border-top: 30px solid var(--primary-color) !important;
background: rgba(239, 239, 241, 0.8);
}

.team-content::before {
height: 200px;
display: block;
content: "";
position: relative;
top: -101px;
background: var(--primary-color);
clip-path: polygon(50% 50%, 100% 50%, 50% 100%, 0% 50%);
padding: 60px;
opacity: 1;
}

.team-img-icon {
position: relative;
margin-top: -200px;
padding: 30px;
padding-bottom: 0;
}

.team-img {
border: 15px solid var(--bs-white);
}

.team-img img {
border: 10px solid var(--primary-color);
transition: .5s;
}

.team-item:hover h5 {
color: var(--secondary-color);
transition: .5s;
}

.team-item:hover .team-img img {
transform: scale(1.05);
border: 10px solid var(--secondary-color);
}

.fa{
color: var(--primary-color);
}

.btn-square{
background-color:var(--primary-color);
border:none;
}

.btn-square:hover{
background-color: var(--secondary-color);
border:none;
}

/* ===== ABOUT ===== */

.hero-section{
background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
url('../img/1.jpg');
background-size: cover;
background-position: center;
padding: 120px 0;
color: #fff;
text-align: center;
}

.hero-section h1{
font-size: 52px;
font-weight: 700;
letter-spacing: 1px;
}

.hero-section p{
font-size: 18px;
max-width: 800px;
margin: auto;
}

.section-title-home{
font-size:22px;
font-weight: 600;
color:#606060;
text-align:center !important;
margin-bottom: 30px;
position: relative;
}



.section-title{
font-size:22px;
font-weight: 600;
color:#606060;
margin-bottom: 20px;
position: relative;
}

.section-title::after{
content: '';
width: 100px;
height: 4px;
background: #606060;
position: absolute;
left: 0;
bottom: -10px;
border-radius: 10px;
}

.info-card{
background: #fff;
border-radius: 9px;
padding: 20px;
box-shadow: 0 5px 25px rgba(0,0,0,0.08);
margin-bottom: 20px;
transition: 0.3s;
}

.info-card:hover{
transform: translateY(-5px);
}

.info-icon{
width: 65px;
height: 65px;
background-color:var(--primary-color);
color: var(--white);
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
font-size: 28px;
margin-bottom: 20px;
}

.objective-list li{
margin-bottom: 15px;
line-height: 1.8;
}

.badge-custom{
background-color:var(--primary-color);
font-size: 14px;
padding: 8px 15px;
border-radius: 30px;
}

@media(max-width:768px){
.hero-section h1{
font-size: 36px;
}
}

/* ===== FOOTER ===== */
.footer {
background: #061c3a;
color: #fff;
padding: 60px 0;
position: relative;
}

.footer h4 {
color: var(--primary-color);
margin-bottom: 20px;
font-weight: 600;
}

.footer p {
font-size: 14px;
line-height: 1.8;
color: #ddd;
}

.footer a {
color: #ddd;
text-decoration: none;
display: block;
margin-bottom: 10px;
}

.footer a:hover {
color: #8dc63f;
}

/* ===== NEWSLETTER INLINE ===== */
.newsletter .input-group {
overflow: hidden;
border-radius: 6px;
}

.newsletter input {
height: 45px;
border: none;
}

.submit-btn {
background-color: var(--primary-color);
color: #fff;
border: none;
padding: 0 20px;
}

.submit-btn:hover {
background: #6ea52f;
}

/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
background: #eb375a;
color: #ccc;
text-align: center;
padding: 15px 0;
font-size: 14px;
}

/* Background pattern */
.footer::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: url('https://www.transparenttextures.com/patterns/cubes.png');
opacity: 0.05;
}

@media(max-width:768px){

           

            .section-heading h2{
                font-size:32px;
            }

            .highlight-section{
                padding:50px 30px;
            }

            .highlight-section h2{
                font-size:35px;
            }

            .info-section{
                padding:35px;
            }

        }