@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* ----------------------------------------------
   BRAND COLOR SYSTEM
---------------------------------------------- */
:root {
   --primary-dark: #022C56;
   --primary-mid: #035589;

   --gradient-start: #01C9B8;
   --gradient-end: #009BCE;

   --white: #ffffff;
   --gray-light: #f7f9fc;
   --gray-dark: #6b7a88;

   --text-dark: #022C56;
   --text-light: #ffffff;

   --shadow-light: rgba(0, 0, 0, 0.08);
   --shadow-medium: rgba(0, 0, 0, 0.18);
}

/* GLOBAL RESET */
* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
   font-family: 'Poppins', sans-serif;
}

body {
   overflow-x: hidden;
}

/* HEADER / NAVBAR */
header {
   width: 100%;
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 16px 6%;
   background: var(--white);
   position: fixed;
   top: 0;
   z-index: 1000;
   box-shadow: 0px 2px 8px var(--shadow-light);
}

.logo img {
   height: 55px;
}

/* Desktop Navigation */
.desktop-nav ul {
   display: flex;
   gap: 25px;
   list-style: none;
}

.desktop-nav ul li a {
   text-decoration: none;
   color: var(--primary-dark);
   font-weight: 600;
   transition: 0.3s;
}

.desktop-nav ul li a:hover {
   color: var(--gradient-end);
}

/* HAMBURGER MENU */
.menu-toggle {
   display: none;
   flex-direction: column;
   gap: 6px;
   cursor: pointer;
}

.menu-toggle span {
   width: 30px;
   height: 3px;
   background: var(--primary-dark);
   border-radius: 4px;
   transition: 0.3s;
}

/* Hamburger → X animation */
.menu-toggle.active span:nth-child(1) {
   transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
   opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
   transform: translateY(-9px) rotate(-45deg);
}

/* MOBILE NAV DRAWER */
.mobile-nav {
   position: fixed;
   top: 0;
   right: -100%;
   width: 70%;
   max-width: 320px;
   height: 100vh;
   background: var(--white);
   padding: 120px 40px;
   display: flex;
   flex-direction: column;
   gap: 25px;
   box-shadow: -3px 0 18px var(--shadow-medium);
   border-top-left-radius: 20px;
   border-bottom-left-radius: 20px;
   transition: 0.4s ease;
   z-index: 1100;
}

.mobile-nav.active {
   right: 0;
}

.mobile-nav a {
   text-decoration: none;
   color: var(--primary-dark);
   font-size: 1.25rem;
   font-weight: 600;
   transition: 0.3s;
}

.mobile-nav a:hover {
   color: var(--gradient-end);
   transform: translateX(4px);
}

/* BACKDROP */
.backdrop {
   position: fixed;
   inset: 0;
   background: rgba(0, 0, 0, 0.45);
   backdrop-filter: blur(3px);
   opacity: 0;
   visibility: hidden;
   transition: 0.3s ease;
   z-index: 1000;
}

.backdrop.active {
   opacity: 1;
   visibility: visible;
}

/* ----------------------------------------------
   ABOUT PAGE SECTIONS
---------------------------------------------- */

/* ABOUT HERO */
.about-hero {
   padding: 140px 6% 80px;
   text-align: center;
   background: var(--primary-dark);
   color: var(--white);
}

.about-hero h1 {
   font-size: 2.75rem;
   font-weight: 700;
   margin-bottom: 12px;
   line-height: 1.2;
}

.about-hero p {
   font-size: 1.15rem;
   line-height: 1.7;
   margin-bottom: 30px;
   opacity: 0.9;
}

/* UNIFORM BODY SECTIONS */
.vision-section,
.values-section,
.services-section {
   padding: 80px 4%;
   background: var(--gray-light);
   color: var(--primary-dark);
   text-align: center;
}

/* SECTION HEADINGS */
.vision-section h2,
.values-section h2,
.services-section h2 {
   font-size: 2.6rem;
   font-weight: 700;
   color: var(--primary-dark);
   margin-bottom: 16px;
}

.vision-section p,
.values-section p,
.services-section p {
   max-width: 900px;
   margin: 0 auto 40px;
   font-size: 1.15rem;
   line-height: 1.8;
   color: var(--gray-dark);
}

/* -----------------------------
   VALUES SECTION - GRID
------------------------------ */
.values-list {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 30px;
   width: 100%;
   max-width: 100%;
   margin: 20px 0 40px;
}

.values-list li {
   list-style: none;
   font-size: 1.1rem;
   font-weight: 500;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   gap: 12px;
   padding: 28px 20px;
   border-radius: 14px;
   background: rgba(2, 44, 86, 0.08);
   height: 100%;
   transition: 0.3s;
}

.values-list li i {
   font-size: 1.6rem;
   color: var(--primary-mid);
}

.values-list li:hover {
   transform: translateY(-6px);
   box-shadow: 0 8px 25px var(--shadow-light);
}

/* Values Button */
.values-section .btn,
.services-section .btn {
   display: inline-block;
   padding: 14px 32px;
   border-radius: 10px;
   background: var(--primary-mid);
   color: var(--white);
   font-weight: 600;
   text-decoration: none;
   transition: 0.3s;
}

.values-section .btn:hover,
.services-section .btn:hover {
   background: var(--primary-dark);
   color: var(--white);
}

/* -----------------------------
   SERVICES SECTION - GRID
------------------------------ */
.service-points {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
   grid-auto-rows: 1fr;
   gap: 25px;
   width: 100%;
   max-width: 100%;
   margin: 20px 0 40px;
}

.service-points .point {
   background: var(--white);
   border-radius: 14px;
   padding: 28px 20px;
   font-weight: 600;
   color: var(--primary-dark);
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   gap: 14px;
   box-shadow: 0px 3px 12px var(--shadow-light);
   transition: 0.35s;
   height: 100%;
}

.service-points .point i {
   font-size: 1.8rem;
   color: var(--primary-mid);
}

.service-points .point:hover {
   transform: translateY(-6px);
   box-shadow: 0px 10px 28px var(--shadow-medium);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {

   .values-list,
   .service-points {
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
   }

   .about-hero h1 {
      font-size: 2.3rem;
   }

   .vision-section h2,
   .values-section h2,
   .services-section h2 {
      font-size: 2.2rem;
   }
}

@media (max-width: 600px) {

   .values-list,
   .service-points {
      grid-template-columns: 1fr;
      gap: 20px;
   }

   .values-list li,
   .service-points .point {
      padding: 20px;
   }

   .values-list li i,
   .service-points .point i {
      font-size: 1.4rem;
   }

   .about-hero h1 {
      font-size: 2rem;
   }

   .vision-section h2,
   .values-section h2,
   .services-section h2 {
      font-size: 1.9rem;
   }

   .vision-section p,
   .values-section p,
   .services-section p {
      font-size: 1rem;
      line-height: 1.6;
   }
}

/* ----------------------------------------------
   FOOTER
---------------------------------------------- */
.footer-section {
   background: var(--primary-dark);
   padding: 70px 6% 35px;
   color: var(--white);
   font-size: 0.95rem;
   line-height: 1.65;
}

.footer-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
   gap: 55px;
   margin-bottom: 40px;
}

.footer-logo {
   height: 60px;
   margin-bottom: 18px;
   display: block;
}

.footer-col h4 {
   font-weight: 600;
   margin-bottom: 20px;
   font-size: 1.05rem;
   display: flex;
   align-items: center;
   gap: 8px;
}

.footer-col ul {
   list-style: none;
   padding: 0;
   margin: 0;
}

.footer-col li {
   margin-bottom: 12px;
}

.footer-col a {
   text-decoration: none;
   color: var(--white);
   opacity: 0.88;
   transition: 0.3s ease;
   display: flex;
   align-items: center;
   gap: 8px;
   font-size: 0.95rem;
}

.footer-col a:hover {
   opacity: 1;
   transform: translateX(6px);
}

/* Footer Copy */
.footer-copy {
   text-align: center;
   opacity: 0.75;
   font-size: 0.85rem;
   border-top: 1px solid rgba(255, 255, 255, 0.15);
   padding-top: 22px;
}

.footer-credit {
   margin-top: 6px;
   font-size: 0.8rem;
   opacity: 0.65;
}

.footer-credit a {
   color: var(--white);
   text-decoration: none;
   border-bottom: 1px dashed rgba(255, 255, 255, 0.4);
   transition: 0.3s;
}

.footer-credit a:hover {
   opacity: 1;
   border-bottom-color: var(--primary-mid);
}

/* ---------- MOBILE RESPONSIVE ---------- */
@media (max-width: 600px) {
   .footer-section {
      padding: 50px 7% 30px;
   }

   .footer-grid {
      gap: 35px;
   }

   .footer-col h4 {
      font-size: 1rem;
   }

   .footer-col a {
      font-size: 0.95rem;
   }
}

/* ----------------------------------------------
   SCROLL REVEAL ANIMATION
---------------------------------------------- */
.reveal {
   opacity: 0;
   transform: translateY(40px);
   transition: 0.8s ease-out;
}

.reveal.visible {
   opacity: 1;
   transform: translateY(0px);
}

/* ----------------------------------------------
   RESPONSIVE
---------------------------------------------- */

/* Tablet & below */
@media (max-width: 1024px) {
   .values-grid {
      grid-template-columns: repeat(2, 1fr);
   }
}

/* Navigation & Hero adjustments */
@media (max-width: 900px) {
   .desktop-nav {
      display: none;
   }

   .menu-toggle {
      display: flex;
   }

   .hero h1 {
      font-size: 2rem;
   }

   .hero .lead {
      font-size: 1rem;
   }
}