* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 156.8px;
}


body {
    font-family: sans-serif;
    color: #000;
    background-color: #fff;
}

/* .invert{
    filter: brightness(0) invert(1);
} */

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent; 
    backdrop-filter: blur(8px); /* Smooth effect */
    flex-wrap: wrap;

/* 👇 Font Styling Here */
    font-family: 'Roboto',serif;  /* Change to your preferred font */
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 1px;/*  Font Styling Here */

}


.logo {
    color: white;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;      
    font-family: sans-serif;
}

.nav-links a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
}

/* Hero Section */
/* .hero {
    background: url('../images/bg-new.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1.5rem;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
} */

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1.5rem;
    overflow: hidden;
    z-index: 0;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: 
    radial-gradient(132.31% 133.46% at 50% -33.46%, #A1C6EA 0%, #003c91 36.54%, #80A5D9 67.79%, #FFFFFF 100%),
    url('../images/bg-new-i.jpg') no-repeat center center / cover;
    transform: scaleX(-1); /* flips the image horizontally */
    background-blend-mode: screen; /* soft glow effect */
    opacity: 0.9; /* subtle transparency */
    z-index: -1;
}



.hero-content {
    margin-top: 150px;
    position: relative;
    max-width: 900px;
    z-index: 1;
}

.hero h1 {
    font-family: 'Helvetica', 'Arial', sans-serif;
font-size: 56px;
font-weight: bold;
color: white;
text-align: center;
text-shadow: #3E68A3 1px 1px;
}

.hero p {
    font-family: 'Helvetica', 'Arial', sans-serif;
font-size: 20px;
color: white;
text-align: center;
line-height: 1.5;
margin-bottom: 20px;
}

.buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.buttons .btn {
    padding: 0.8rem 1.5rem;
    background-color: #3c60d0;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s ease;
    font-size: 0.95rem;
}

.buttons .btn:hover {
    background-color: #2b49a9;
}

/* Services Section */
.services {
    background-color: #fff;
    padding: 4rem 1.5rem;
    text-align: center;
}

.services h2 {
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-size: 56px;
    font-weight: bold;
    color: #3E68A3;
    text-align: center;
    margin-bottom: 20px;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.card {
    background-color: #111;
    border-radius: 12px;
    overflow: hidden;
    width: 320px;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.05);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.card-content {
    padding: 1.2rem;
    text-align: left;
    background: #E6E6E6;
    height: 100%;
}

.card-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    color: #3E68A3;
    text-align: center;
}

.card-content p {
    font-size: 0.95rem;
    line-height: 1.4;
    text-align: center;
}
.services {
    padding: 4rem 1.5rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.services::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.6); /* dark overlay */
    z-index: -1;
}
/*About Section*/
.about {
    background: url('../images/bg-new.jpeg') no-repeat center center/cover;
    padding: 5rem 1.5rem;
    color: white;
    text-align: center;
    position: relative;
    z-index: 1;
}

.about::before {
    content: "";
    position: absolute;
    inset: 0;
    background: 
    radial-gradient(132.31% 133.46% at 50% -33.46%, #A1C6EA 0%, #003c91 36.54%, #80A5D9 67.79%, #FFFFFF 100%),
    url('../images/bg-new.jpg') no-repeat center center / cover;
    transform: scaleX(-1); /* flips the image horizontally */
    background-blend-mode: screen; /* soft glow effect */
    opacity: 0.9; /* subtle transparency */
    z-index: -1;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 3rem;
}

.about-content h2 {
    font-family: sans-serif;
    font-size: 56px;
    font-weight: bold;
    color: white;
    text-align: center;
}

.about-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.about-content .btn {
    background-color: #3c60d0;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.about-content .btn:hover {
    background-color: #2b49a9;
}
/* Timeline Styles */
.timeline {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
    /* border-top: 4px solid #3c60d0; */
    position: relative;
    padding-top: 2rem;
    text-shadow: #3E68A3 1px 1px;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 2rem;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #ffffff;
    z-index: 0;
}

.event {
    flex: 1;
    text-align: center;
    position: relative;
    min-width: 120px;
    margin-top: 1rem;
}

.event h3 {
    font-size: 1.8rem;
    margin-bottom: 0.3rem;
}

.event p {
    font-size: 0.9rem;
}

.event::before {
    content: "";
    width: 16px;
    height: 16px;
    background-color: #ffffff;
    border-radius: 50%;
    position: absolute;
    top: -1.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

/*MAp*/
.map{
    text-align: center;
    position: relative;
    z-index: 1;
    height: 300px;
    display: flex;
    padding: 4rem 1.5rem;
    justify-content: space-between;
}
.map::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.6); /* dark overlay */
    z-index: -1;
    /* height: 1100px; */
}

.map-container{
    height: 1000px;
}

.map-content{
    width: 350px;
    position:absolute;
    top: -10px;
    right: 350px;
    z-index: 1;
}


.map-content h2 {
    font-family: sans-serif;
    color: #3E68A3;
}

.map-content p{
    margin-top: 20px;
    color: #000;
    font-size: 13px;
    text-align: justify;
    margin-bottom: 20px;
}

.map-content .btn {
    background-color: #3c60d0;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.ph-map{
    position: absolute;
    width: 330px;
    height: 300px;
    left: 350px;
    top: -10px;
}

.pin{
    position: absolute;
    width: 362px;
    height: 289px;
    left: 350px;
    top: -50px;
}

/*Partnership*/
.partnership {
background-color: #3B6AA0;
padding: 4rem 1.5rem;
display: flex;
justify-content: center;
align-items: center;
color: white;
}

.partnership-container {
display: flex;
flex-direction: column;
max-width: 1000px;
width: 100%;
gap: 40px;
align-items: center;
justify-content: center;
}

@media (min-width: 768px) {
.partnership-container {
    flex-direction: row;
}
}

.image-box {
flex: 1;
max-width: 100%;
}

.image-box img {
width: 100%;
border-radius: 12px;
object-fit: cover;
}

.content {
flex: 1;
text-align: center;
}

@media (min-width: 768px) {
.content {
    text-align: left;
}
}

.content h1 {
font-size: 32px;
font-weight: 800;
margin-bottom: 16px;
}

.content p {
font-size: 15px;
line-height: 1.5;
margin-bottom: 20px;
}

.cta {
font-size: 18px;
font-weight: 600;
margin-bottom: 20px;
}

.button {
display: inline-block;
background-color: white;
color: #3B6AA0;
padding: 12px 24px;
border-radius: 8px;
font-weight: 600;
text-decoration: none;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
transition: background-color 0.3s;
}

.button:hover {
background-color: #f0f0f0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
.timeline {
flex-direction: column;
border-top: none;
}

.timeline::before {
display: none;
}

.event::before {
top: -0.8rem;
}

.event {
margin-bottom: 2rem;
}
}
/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
    font-size: 1.8rem;
    }

    .hero p {
    font-size: 0.95rem;
    }

    .buttons .btn {
    font-size: 0.85rem;
    padding: 0.7rem 1.2rem;
    }

    .services h2 {
    font-size: 1.8rem;
    }

    .card {
    width: 100%;
    max-width: 100%;
    }
}

@media (max-width: 480px) {
    .nav-links {
    justify-content: center;
    gap: 1rem;
    }

    .navbar {
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    }

    .hero h1 {
    font-size: 1.5rem;
    }

    .hero p {
    font-size: 0.9rem;
    }

    .card-content p {
    font-size: 0.9rem;
    }
}
/*real world*/
.impact {
/* background: url('../images/starry.jpeg') no-repeat center center/cover; */
    padding: 4rem 1.5rem;
    color: white;
    text-align: center;
}

.impact-title {
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-size: 56px;
    font-weight: bold;
    color: #3E68A3;
    text-align: center;
    margin-bottom: 20px;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.impact-card {
    border-radius: 12px;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #325b97;
    transition: transform 0.3s;
    min-height: 220px;
}

.impact-card:hover {
    transform: translateY(-5px);
}

.impact-card img {
    width: 200px;
    height: 200px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.impact-card p {
font-family: 'Helvetica', 'Arial', sans-serif;
font-size: 30px;

color: white;
text-align: center;
}

.impact-card.blue {
background-color: #325b97;
}

.impact-card.dark {
background-color: #1a1a1a;
}
/*Institutional*/

.institutional-connectivity {
background: 
radial-gradient(132.31% 133.46% at 50% -33.46%, #A1C6EA 0%, #003c91 36.54%, #80A5D9 67.79%, #FFFFFF 100%),
url('../images/connect.jpg') no-repeat center center / cover;
background-blend-mode: multiply; /* soft glow effect */
opacity: 0.9; /* subtle transparency */
z-index: -1;
color: white;
padding: 4rem 1.5rem;
}


.institutional-container {
display: flex;
flex-direction: column;
max-width: 1200px;
margin: 0 auto;
gap: 2rem;
}

@media (min-width: 768px) {
.institutional-container {
    flex-direction: row;
    align-items: flex-start;
}
}

.institutional-text {
flex: 1;
max-width: 500px;
}

.institutional-text h2 {
font-size: 2.8rem;
font-weight: bold;
line-height: 1.2;
margin-bottom: 1.2rem;
}

.institutional-text p {
font-size: 1rem;
line-height: 1.6;
}

.institutional-services {
flex: 1;
}

.institutional-services h3 {
font-size: 1.2rem;
margin-bottom: 1rem;
font-weight: 600;
}

.service-box {
background: rgba(255, 255, 255, 0.07);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 12px;
padding: 1rem 1.2rem;
margin-bottom: 1rem;
box-shadow: 0 0 10px rgba(0,0,0,0.3);
backdrop-filter: blur(5px);
}

.service-box strong {
display: block;
font-size: 1rem;
margin-bottom: 0.5rem;
color: #fff;
}

.service-box p {
font-size: 0.95rem;
line-height: 1.4;
color: #ddd;
}
/*Bring Satellite*/
.contact {
    background: url('../images/bg-new.jpeg') no-repeat center center/cover;
    padding: 5rem 1.5rem;
    color: white;
    text-align: center;
    position: relative;
    z-index: 1;
}

.contact::before {
    content: "";
    position: absolute;
    inset: 0;
    background: 
    radial-gradient(132.31% 133.46% at 50% -33.46%, #A1C6EA 0%, #003c91 36.54%, #80A5D9 67.79%, #FFFFFF 100%),
    url('../images/bg-new.jpg') no-repeat center center / cover;
    transform: scaleX(-1); /* flips the image horizontally */
    background-blend-mode: screen; /* soft glow effect */
    opacity: 0.9; /* subtle transparency */
    z-index: -1;
}

.contact h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #fff;
}

.contact form {
max-width: 900px;
margin: auto;
background: rgba(255, 255, 255, 0.1);
padding: 20px;
border-radius: 12px;
backdrop-filter: blur(5px);
display: flex;
flex-direction: column;
gap: 15px;
}

.contact .row {
display: flex;
flex-wrap: wrap;
gap: 15px;
}

.contact input,
.contact select,
.contact textarea {
flex: 1;
min-width: 250px;
padding: 12px;
background: rgba(0, 0, 0, 0.5);
border: 1px solid #555;
border-radius: 8px;
color: white;
font-size: 14px;
}

.contact textarea {
min-height: 100px;
resize: vertical;
}

.contact button {
padding: 12px;
background-color: #3b82f6;
color: white;
border: none;
border-radius: 8px;
font-size: 16px;
cursor: pointer;
transition: background-color 0.3s ease;
}

.contact button:hover {
background-color: #2563eb;
}

/* Footer Contact Info */
.contact-footer {
margin-top: 40px;
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 20px;
}

.footer-box {
background: rgb(255, 255, 255);
padding: 15px 20px;
border-radius: 12px;
width: 250px;
text-align: left;
}

.footer-box h4 {
margin-bottom: 10px;
color: #172f64;
}

.footer-box p,
.footer-box a {
font-size: 14px;
color: #2563eb;
text-decoration: none;
}

.footer-box a:hover {
color: #fff;
}
/*Footer*/
.site-footer {
background-color: #111;
color: white;
padding: 20px 40px;
font-size: 14px;
}

.footer-container {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 1rem;
}

.footer-left,
.footer-center,
.footer-right {
display: flex;
align-items: center;
gap: 20px;
flex-wrap: wrap;
}

.footer-center a,
.footer-right a {
color: white;
text-decoration: none;
font-weight: 600;
transition: color 0.3s;
}

.footer-center a:hover {
color: #3b82f6;
}

.footer-right a img {
width: 28px;
height: 28px;
background-color: white;
border-radius: 50%;
padding: 6px;
transition: transform 0.3s, background-color 0.3s;
}

.footer-right a img:hover {
transform: scale(1.1);
background-color: #e5e5e5;
}

/* Responsive */
@media (max-width: 768px) {
.footer-container {
flex-direction: column;
align-items: center;
text-align: center;
}

.footer-left,
.footer-center,
.footer-right {
justify-content: center;
}
}