

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

body {
  margin: 0;
  overflow-x: hidden;
}

/* --- CSS VARIABLES (COLOR PALETTE) --- */
:root {
--color-primary-bg: #FFFFFF;
--color-secondary-element: #001F5B;
--color-accent: #C5A059;

--color-text-main: #333333;
--color-text-on-dark: #FFFFFF;
--color-border-light: #E0E0E0;

--font-family-headings: 'Montserrat', sans-serif;
--font-family-body: 'Inter', sans-serif;
}

/* --- GLOBAL RESET --- */

{
box-sizing: border-box;
margin: 0;
padding: 0;
}


body {
font-family: var(--font-family-body);
background-color: var(--color-primary-bg);
color: var(--color-text-main);
line-height: 1.6;
}

/* --- CONTAINER --- */
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 5%;
}

/* --- HEADER --- */
.site-header {
background-color: var(--color-secondary-element);
padding: 20px 0;
position: sticky;
top: 0;
z-index: 1000;
}

.site-header .container {
display: flex;
flex-direction: column;
align-items: center;
gap: 12px;
}

/* --- HEADING --- */
.main-heading {
font-size: 48px;
font-weight: 800;
color: var(--color-text-on-dark);
text-align: center;
margin-top: 10px;
}

/* --- NAVIGATION --- */
.nav-menu {
display: flex;
justify-content: center;
gap: 12px;
flex-wrap: wrap;
margin-top: -5px;
}

.nav-btn {
background-color: var(--color-accent);
color: white;
padding: 10px 16px;
border-radius: 6px;
font-weight: 500;
text-decoration: none;
transition: 0.3s;
}

.nav-btn:hover {
background-color: #FFCE44;
transform: translateY(-2px);
}

/* --- FOOTER --- */
.site-footer {
background-color: var(--color-secondary-element);
color: var(--color-text-on-dark);
padding: 2rem 0;
text-align: center;
}

/* --- BUTTON --- */
.btn-primary {
display: inline-block;
background-color: var(--color-accent);
color: var(--color-text-on-dark);
padding: 10px 20px;
border-radius: 4px;
text-decoration: none;
font-weight: bold;
transition: all 0.3s ease;
}

.btn-primary:hover {
background-color: #a88445;
transform: translateY(-2px);
}

/* --- LOGO + HEADING IN SAME LINE --- */

.header-top {
display: flex;
align-items: center;
justify-content: center;
gap: 15px;
}

/* Slight adjustment to heading */
.main-heading {
font-size: 48px;
font-weight: 800;
margin: 0;
}

/* HEADER CONTAINER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  background: linear-gradient(
      rgba(0, 31, 91, 0.85),
      rgba(0, 31, 91, 0.85)
    ),
    url("header-bg.jpeg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  padding: 20px 0;
}

.site-header .container {
display: flex;
flex-direction: column;
align-items: center;
}

/* LOGO */
.logo {
display: flex;
justify-content: left;
}

.logo-img {
height: 110px;
width: 110px;
border-radius: 50%;
object-fit: cover;
}

/* HEADING */
.main-heading {
font-size: 56px;
font-weight: 800;
color: white;
text-align: center;
margin: 10px 0;
}

/* NAVIGATION */
.nav-menu {
display: flex;
justify-content: center;
gap: 20px;
flex-wrap: wrap;
}

/* BUTTONS */
.nav-btn {
background-color: var(--color-accent);
color: white;
padding: 10px 16px;
border-radius: 6px;
text-decoration: none;
}

.nav-btn:hover {
background-color: #a88445;
}

.nav-menu {
gap: 20px;
}

.about-section {
margin: 30px 0;
}

.about-section h2 {
color: var(--color-secondary-element);
margin-bottom: 10px;
}

.about-section p {
font-size: 18px;
line-height: 1.8;
}

.about-section ul {
margin-left: 20px;
font-size: 18px;
}

{
transition: all 0.3s;
}


.nav-btn {
background-color: var(--color-accent);
color: white;
padding: 10px 16px;
border-radius: 6px;
text-decoration: none;
position: relative;
overflow: hidden;
}

/* Hover effect */
.nav-btn:hover {
transform: translateY(-3px);
background-color: #a88445;
}

.nav-btn::after {
content: "";
position: absolute;
width: 0%;
height: 2px;
background: white;
left: 50%;
bottom: 5px;
transition: 0.3s;
}

.nav-btn:hover::after {
width: 60%;
left: 20%;
}

.main-heading {
animation: fadeIn 1s ease;
}

@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(-20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

main {
animation: fadeUp 1s ease;
}

@keyframes fadeUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

.btn-primary {
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
transform: scale(1.05);
box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* HERO SECTION */
.hero {
padding: 80px 0;
text-align: center;
background: linear-gradient(135deg, #001F5B, #003080);
color: white;
}

/* HERO CONTENT */
.hero-content {
max-width: 800px;
margin: 0 auto;
}

/* HERO TITLE */
.hero-title {
font-size: 52px;
font-weight: 800;
margin-bottom: 20px;
letter-spacing: 1px;
}

/* HERO SUBTITLE */
.hero-subtitle {
font-size: 18px;
margin-bottom: 30px;
opacity: 0.9;
}

/* SMOOTH FADE IN */
.hero-title,
.hero-subtitle {
animation: fadeUp 1s ease;
}

/* FADE ANIMATION */
@keyframes fadeUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

/* SERVICES */
.services {
padding: 60px 0;
}

/* SECTION TITLE */
.section-title {
text-align: center;
font-size: 32px;
margin-bottom: 40px;
}

/* CARDS CONTAINER */
.cards {
display: flex;
gap: 20px;
justify-content: center;
flex-wrap: wrap;
}

/* INDIVIDUAL CARD */
.card {
background: white;
padding: 25px;
border-radius: 12px;
width: 250px;
text-align: center;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
transition: 0.3s;
}

/* CARD HOVER */
.card:hover {
transform: translateY(-10px);
box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

section {
padding: 60px 0;
}

.footer-content {
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
}

.social-icons {
display: flex;
gap: 25px;
}

.social-icons a {
color: white;
text-decoration: none;
font-weight: bold;
transition: 0.3s;
}

.social-icons a:hover {
color: var(--color-accent);
}

.social-icons {
display: flex;
gap: 25px;
font-size: 24px;
}

.social-icons a {
color: white;
transition: 0.3s;
}

.social-icons a:hover {
color: var(--color-accent);
transform: translateY(-3px);
}

/* Default size */
.social-icons a {
font-size: 26px;
transition: 0.3s;
}

/* Facebook */
.facebook i {
color: #1877F2;
}

/* WhatsApp */
.whatsapp i {
color: #25D366;
}

/* Hover effect (slight lift) */
.social-icons a:hover {
transform: translateY(-4px);
}

/* ICON CONTAINER */
.social-icons {
display: flex;
gap: 20px;
}

/* BASE STYLE */
.social-icons a {
width: 45px;
height: 45px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
text-decoration: none;
font-size: 20px;
transition: all 0.3s ease;
}

/* INSTAGRAM */
.instagram {
background: radial-gradient(circle at 30% 30%, #f9ce34, #ee2a7b, #6228d7);
color: white;
}

/* FACEBOOK */
.facebook {
background-color: #1877F2;
color: white;
}

/* WHATSAPP */
.whatsapp {
background-color: #25D366;
color: white;
}

/* HOVER EFFECT (PREMIUM) */
.social-icons a:hover {
transform: translateY(-5px) scale(1.1);
box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* ICON BASE */
.social-icons a {
width: 45px;
height: 45px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
text-decoration: none;
font-size: 20px;
transition: all 0.3s ease;
}

/* FORCE ICON COLOR */
.social-icons i {
color: white;
}

/* BRAND BACKGROUNDS */
.instagram {
background: radial-gradient(circle at 30% 30%, #f9ce34, #ee2a7b, #6228d7);
}

.facebook {
background-color: #1877F2;
}

.whatsapp {
background-color: #25D366;
}

/* HOVER */
.social-icons a:hover {
transform: translateY(-5px) scale(1.1);
box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* --- SOCIAL ICON BASE --- */
.social-icons {
display: flex;
justify-content: center;
gap: 20px;
margin-top: 10px;
}

.social-icons a {
display: flex;
align-items: center;
justify-content: center;
width: 45px;
height: 45px;
border-radius: 50%;
color: white;
font-size: 20px;
text-decoration: none;
transition: all 0.3s ease;
}

/* --- HOVER EFFECT --- */
.social-icons a:hover {
transform: translateY(-5px) scale(1.1);
box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* Instagram */
.instagram {
background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf);
}

/* Facebook */
.facebook {
background-color: #1877F2;
}

/* WhatsApp */
.whatsapp {
background-color: #25D366;
}

.social-icons a:hover {
transform: translateY(-6px) scale(1.15);
box-shadow: 0 0 15px rgba(255,255,255,0.4);
}

.hero {
  padding: 100px 0;
  text-align: center;
  color: white;

  background: linear-gradient(135deg, #001F5B, #0b59df, #001F5B);
  background-size: 300% 300%;
  animation: gradientMove 8s ease infinite;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.hero-title {
  font-size: 42px; /* reduced from 52 */
  font-weight: 800;
  margin-bottom: 20px;

  text-shadow: 0 0 10px rgba(255,255,255,0.3),
               0 0 20px rgba(255,255,255,0.2);
}

.hero-subtitle {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-box {
  background: rgba(255, 255, 255, 0.08);
  padding: 40px;
  border-radius: 20px;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border: 1px solid rgba(255,255,255,0.2);

  box-shadow: 0 0 30px rgba(0,0,0,0.2);

  display: inline-block;
}

.hero-box h4 {
  color: #C5A059; /* gold accent */
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
}

.hero::before {
  background: #0b59df;
  top: 10%;
  left: 10%;
}

.hero::after {
  background: #C5A059;
  bottom: 10%;
  right: 10%;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero-box h4 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: 2px;
  opacity: 0.9;
}



.btn-primary {
  background: linear-gradient(45deg, #C5A059, #FFD700);
  color: black;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: bold;
  transition: 0.3s;
}

.btn-primary:hover {
  transform: scale(1.08);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

/* Twitter / X */
.twitter {
background-color: #1DA1F2;
}

.twitter {
background-color: #000000;
}

@media (max-width: 768px) { 
  .hero-box h4 {
  font-size: 20px;
}

.hero-title {
  font-size: 28px;
}

.hero-subtitle {
  font-size: 14px;
}

.hero-box {
  padding: 25px;
}

.site-header {
padding: 10px 0;
}

.header-top {
flex-direction: row;
align-items: center;
justify-content: space-between;
}

.logo-img {
height: 80px;
width: auto;
}

.main-heading {
font-size: 22px;
}

.nav-menu {
gap: 8px;
}

.nav-btn {
padding: 6px 10px;
font-size: 12px;
}
}

.menu-toggle {
display: none;
font-size: 24px;
color: white;
cursor: pointer;

position: absolute;
top: 15px;
left: 15px;
}

/* Mobile Menu */
@media (max-width: 768px) {

  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%; /* hidden */
    width: 70%; /* half screen */
    height: 100vh;
    background-color: #001F5B;

    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;

    transition: 0.3s ease;
    z-index: 999;
  }

  .nav-menu.active {
    left: 0; /* slide in */
  }

}

.site-header {
position: sticky;
top: 0;
z-index: 1000;
position: relative; /* ADD THIS */
}

@media (max-width: 768px) {
.menu-toggle {
display: block;
}
}
.menu-toggle {
top: 20px;
left: 20px;
}

@media (max-width:768px) {
.nav-btn {
width: 80%;
text-align: center;
}
}

/* OVERLAY */
.overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.5);
opacity: 0;
visibility: hidden;
transition: 0.3s;
z-index: 998;
}

/* SHOW OVERLAY */
.overlay.active {
opacity: 1;
visibility: visible;
}

/* CLOSE BUTTON */
.close-btn {
position: absolute;
top: 20px;
right: 20px;
font-size: 28px;
color: white;
cursor: pointer;
}





/* ABOUT PREVIEW */
.about-preview {
  padding: 80px 0;
  background-color: #f9f9f9;
}

/* LAYOUT */
.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* TEXT SIDE */
.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #001F5B;
}

.about-text p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* IMAGE SIDE */
.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-text h2 {
    font-size: 28px;
  }
}


/* WHY CHOOSE US */
.why-choose {
  padding: 80px 0;
  background: #ffffff;
}

/* GRID */
.why-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

/* CARD */
.why-card {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 15px;
  width: 250px;
  text-align: center;

  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* ICON */
.why-card i {
  font-size: 30px;
  color: #001F5B;
  margin-bottom: 15px;
}

/* TITLE */
.why-card h3 {
  margin-bottom: 10px;
}

/* HOVER */
.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.why-card {
  width: 100%;
}

/* CTA SECTION */
.cta {
  padding: 80px 20px;
  text-align: center;
  color: white;

  background: linear-gradient(135deg, #001F5B, #0b59df);
}

/* CONTENT */
.cta-content h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 25px;
  opacity: 0.9;
}

.cta-content h2 {
  font-size: 26px;
}

.cta-content p {
  font-size: 14px;
}


.about-hero {
  padding: 100px 20px;
  text-align: center;
  color: white;
  background: linear-gradient(135deg, #001F5B, #0b59df);
}

.about-hero h1 {
  font-size: 48px;
}

.about-section {
  padding: 80px 20px;
}

.about-section.light {
  background: #f9f9f9;
}

.about-section h2 {
  color: #001F5B;
  margin-bottom: 20px;
}

.why-list {
  list-style: none;
}

.about-video {
  margin-top: 30px;
  text-align: center;
}

.about-video video {
  width: 100%;
  max-width: 700px;
  border-radius: 15px;
}

@media (max-width: 768px) {
  .about-video video {
    width: 100%;
  }
}

.about-video video {
  opacity: 0;
  transition: 0.5s;
}

.about-video video.playing {
  opacity: 1;
}

.about-video video {
  opacity: 0;
  transition: 0.5s;
}

.about-video video.playing {
  opacity: 1;
}

.about-section {
  padding: 80px 20px;
}

.about-flex {
  display: flex;
  align-items: flex-start; /* CHANGE THIS */
  gap: 30px;
  flex-wrap: wrap; /* important for mobile */
}

/* TEXT */
.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 36px;
  color: #001F5B;
  margin-bottom: 15px;
}

.about-text p {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
}

/* VIDEO */
.about-video {
  flex: 1;
}

.about-video {
  display: flex;
  justify-content: center;
}

.about-video video {
  width: 150%;   /* ya 70% agar aur chhota chahiye */
  border-radius: 15px;
}

.about-video video:hover {
  transform: scale(1.03);
  transition: 0.3s;
}

.about-section {
  background: linear-gradient(135deg, #f5f7ff, #eef2ff);
}

@media (max-width: 768px) {
  .about-flex {
    flex-direction: column;
  }

  .about-text h2 {
    font-size: 26px;
  }
}


.why-section {
  padding: 80px 20px;
  background: #f8f9ff;
  text-align: center;
}

.why-cards {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.why-card {
  background: white;
  padding: 25px;
  width: 260px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.why-card h3 {
  color: #001F5B;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 15px;
  color: #555;
}


.about section {
  hieght: 100vh;
}

.about-video video {
  display: block;
}

.about-section {
  padding-bottom: 40px; /* reduce from 80 if needed */
}

.why-section {
  padding-top: 40px;
}

.about-section {
  margin-bottom: 0;
}

.why-section {
  margin-top: 0;
}

.about-section {
  padding: 60px 20px;
  height: auto; /* FORCE FIX */
}



@media (max-width: 768px) {
  .why-cards {
    flex-direction: column;
    align-items: center;
  }
}

.about-flex {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
}

.about-video {
  flex: 1;
}

.about-video video {
  width: 100%;  
  border-radius:16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.about-section {
  background: linear-gradient(135deg, #f5f7fa, #e4ecf7);
  padding: 80px 0;
}

.about-text {
  background: rgba(255, 255, 255, 0.6);
  padding: 30px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.why-card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  transition: 0.3s;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
  .about-flex {
    flex-direction: column;
  }
}


.main-heading {
  color: white;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}


.logo-img {
  border: 2px solid white;
}

.nav-btn {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
}


.nav-btn {
  background-color: #C5A059; /* original gold */
  color: white;
  border-radius: 6px;
  padding: 10px 16px;
  transition: 0.3s;
}

/* premium glass hover */
.nav-btn:hover {
  background-color: #a88445;
  transform: translateY(-2px);
}



.who-we-are {
  position: relative;
  padding: 80px 20px;

  background: url("your-background.jpeg") center/cover no-repeat;
}

/* 50% tint */
.who-we-are::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* layout */
.who-content {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

/* text */
.who-text {
  flex: 1;
  color: white;
}

/* image */
.who-image {
  flex: 1;
}

.who-image img {
  width: 100%;
  border-radius: 10px;
}

/* mobile */
@media (max-width: 768px) {
  .who-content {
    flex-direction: column;
    text-align: center;
  }
}

/* 🌟 GLASSMORPHISM BOX */
.glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 20px;
  color: white;
}

/* image */
.who-image img {
  width: 100%;
  border-radius: 10px;
}


.glass {
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border-radius: 16px;
  padding: 20px;
  color: white;
  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.15);

  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* 🌟 GLOW EFFECT */
.glass::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 16px;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(0, 255, 255, 0.4),
    rgba(255, 0, 255, 0.4),
    transparent
  );

  z-index: 0;
  filter: blur(8px);
  animation: glowMove 4s linear infinite;
}

/* keep content above glow */
.glass > * {
  position: relative;
  z-index: 1;
}

/* hover effect */
.glass:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* animation */
@keyframes glowMove {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


/* Mobile responsive */
@media (max-width: 768px) {
  .who-content {
    flex-direction: column;
    text-align: center;
  }
}


.our-vision {
  position: relative;
  padding: 80px 20px;

  background: url("our-background.jpeg") center/cover no-repeat;
}

/* 50% black tint */
.our-vision::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* layout */
.vision-content {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

/* image left */
.vision-image {
  flex: 1;
}

.vision-image img {
  width: 100%;
  border-radius: 10px;
}

/* text right */
.vision-text {
  flex: 1;
  color: white;
}

/* mobile */
@media (max-width: 768px) {
  .vision-content {
    flex-direction: column;
    text-align: center;
  }
}



.our-mission {
  position: relative;
  padding: 80px 20px;

  background: url("mission-background.jpeg") center/cover no-repeat;
}

/* 50% black tint */
.our-mission::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* layout */
.mission-content {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

/* text */
.mission-text {
  flex: 1;
  color: white;
}

/* image */
.mission-image {
  flex: 1;
}

.mission-image img {
  width: 100%;
  border-radius: 10px;
}

/* mobile */
@media (max-width: 768px) {
  .mission-content {
    flex-direction: column;
    text-align: center;
  }
}




/* HERO */
.submit-hero {
  text-align: center;
  padding: 100px 20px;

  background: url("submit-bg.jpeg") center/cover no-repeat;
  position: relative;
}

.submit-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.submit-hero h1,
.submit-hero p {
  position: relative;
  z-index: 2;
  color: white;
}

/* FORM SECTION */
.submit-form-section {
  padding: 80px 20px;
  background: #0f172a; /* dark background */
}

/* GLASS FORM */
.form-container {
  max-width: 600px;
  margin: auto;

  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);

  padding: 30px;
  border-radius: 15px;

  color: white;
}

/* INPUTS */
form input,
form textarea {
  width: 100%;
  margin: 10px 0;
  padding: 12px;

  border-radius: 8px;
  border: none;
  outline: none;
}

/* BUTTON */
form button {
  width: 100%;
  padding: 12px;
  margin-top: 10px;

  border: none;
  border-radius: 8px;

  background: linear-gradient(45deg, #00f5ff, #ff00ff);
  color: white;
  font-weight: bold;

  cursor: pointer;
  transition: 0.3s;
}

form button:hover {
  transform: scale(1.05);
}


.manuscript-form {
  max-width: 800px;
  margin: auto;

  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);

  padding: 30px;
  border-radius: 15px;
  color: white;
}

.manuscript-form h2 {
  margin-top: 30px;
}

.manuscript-form input,
.manuscript-form textarea,
.manuscript-form select {
  width: 100%;
  margin: 10px 0;
  padding: 12px;

  border-radius: 8px;
  border: none;
  outline: none;
}

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.manuscript-form button {
  margin-top: 20px;
  padding: 12px;

  width: 100%;
  border: none;
  border-radius: 8px;

  background: linear-gradient(45deg, #00f5ff, #ff00ff);
  color: white;
  font-weight: bold;
  cursor: pointer;
}

input, textarea, select, button {
  font-family: inherit;
}


.thank-you {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;

  background: url("submit-bg.jpeg") center/cover no-repeat;
  position: relative;
}

.thank-you::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.thank-box {
  position: relative;
  z-index: 2;

  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);

  padding: 40px;
  border-radius: 15px;
  text-align: center;
  color: white;
}




.manuscript-form {
  position: relative;
  overflow: hidden;
}

.manuscript-form::before {
  content: "";
  position: absolute;
  inset: -2px;

  background: linear-gradient(
    45deg,
    #00f5ff,
    #ff00ff,
    #00ff85,
    #00f5ff
  );

  z-index: -1;
  filter: blur(10px);
  opacity: 0.6;

  animation: glowMove 6s linear infinite;
}

@keyframes glowMove {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  box-shadow: 0 0 10px rgba(0,255,255,0.6);
}


.nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100vh;
  background: #0f172a;
  display: flex;
  flex-direction: column;
  padding: 30px;
  transition: 0.4s;
  z-index: 999;
}

.nav-menu.active {
  right: 0;
}

.menu-toggle {
  display: block;
  cursor: pointer;
}

@media (min-width: 768px) {
  .nav-menu {
    position: static;
    flex-direction: row;
    height: auto;
    width: auto;
    background: none;
  }

  .menu-toggle {
    display: none;
  }
}



.form-container {
  width: 100%;
  padding: 20px;
}

.manuscript-form {
  width: 100%;
}

/* inputs spacing */
.manuscript-form input,
.manuscript-form textarea,
.manuscript-form select {
  width: 100%;
}

@media (max-width: 768px) {

  /* Who / Vision / Mission */
  .who-content,
  .vision-content,
  .mission-content {
    flex-direction: column;
    text-align: center;
  }

  /* cards */
  .why-cards {
    grid-template-columns: 1fr;
  }

  /* checkbox grid */
  .checkbox-group {
    grid-template-columns: 1fr;
  }

}

h1 {
  font-size: 28px;
}

h2 {
  font-size: 22px;
}

p {
  font-size: 14px;
}

@media (min-width: 768px) {
  h1 { font-size: 40px; }
  h2 { font-size: 28px; }
  p  { font-size: 16px; }
}


.submit-hero {
  padding: 60px 20px;
  text-align: center;
}

@media (min-width: 768px) {
  .submit-hero {
    padding: 100px 20px;
  }
}

section {
  padding: 60px 15px;
}

@media (min-width: 768px) {
  section {
    padding: 80px 20px;
  }
}



.services-hero {
  position: relative;

  height: 70vh;

  display: flex;
  justify-content: center;
  align-items: center;

  text-align: center;

  background: url("services-bg.jpeg") center/cover no-repeat;

  overflow: hidden;
}

.services-overlay {
  position: absolute;
  inset: 0;

  background: rgba(0,0,0,0.55);
}

.services-hero-content {
  position: relative;
  z-index: 2;

  color: white;

  max-width: 800px;
  padding: 20px;
}

.services-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.services-hero-content p {
  font-size: 1.1rem;
  line-height: 1.7;
}




.services-section {
  padding: 100px 20px;
  background: #081120;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.service-category {
  position: relative;

  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);

  border-radius: 20px;

  padding: 35px 25px;

  overflow: hidden;

  transition: 0.4s ease;
}

.service-category:hover {
  transform: translateY(-10px);
}

.service-category::before {
  content: "";

  position: absolute;
  inset: -2px;

  background: linear-gradient(
    45deg,
    #00f5ff,
    #ff00ff,
    #00ff85,
    #00f5ff
  );

  z-index: -1;

  filter: blur(15px);

  opacity: 0.5;

  animation: rotateGlow 6s linear infinite;
}

@keyframes rotateGlow {
  100% {
    transform: rotate(360deg);
  }
}

.service-category h3 {
  color: white;
  font-size: 2rem;
  margin-bottom: 25px;
}

.service-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.service-links a {
  text-decoration: none;

  color: white;

  padding: 12px 18px;

  border-radius: 10px;

  background: rgba(255,255,255,0.08);

  transition: 0.3s ease;
}

.service-links a:hover {
  background: rgba(0,245,255,0.2);

  transform: translateX(5px);
}



/* TOGGLE BUTTON */
.service-toggle {
  width: 100%;

  display: flex;
  justify-content: space-between;
  align-items: center;

  background: transparent;
  border: none;

  color: white;

  font-size: 1.8rem;
  font-weight: 600;

  cursor: pointer;
}

/* ARROW */
.service-toggle i {
  transition: 0.4s ease;
}

/* DROPDOWN */
.service-dropdown {
  max-height: 0;
  overflow: hidden;

  display: flex;
  flex-direction: column;

  gap: 12px;

  margin-top: 20px;

  transition: max-height 0.5s ease;
}

/* LINKS */
.service-dropdown a {
  text-decoration: none;

  color: white;

  padding: 12px 18px;

  border-radius: 10px;

  background: rgba(255,255,255,0.08);

  transition: 0.3s ease;
}

.service-dropdown a:hover {
  background: rgba(0,245,255,0.2);

  transform: translateX(5px);
}

/* ACTIVE */
.service-category.active .service-dropdown {
  max-height: 500px;
}

.service-category.active .service-toggle i {
  transform: rotate(180deg);
}




