/* =========================
   THEME VARIABLES (edit here)
   ========================= */
:root{
  --bg: #000000;          /* HERO background (plain black) */
  --text: #ffffff;        /* Text on dark */
  --accent: #ffe500;      /* Yellow highlight */
  --muted: #cfcfcf;       /* Grey for subhead */

  --about-strip-bg: #ffffff;     /* White band */
  --about-strip-text: #000000;   /* Text on white */
  --reason-strip-bg: #000000;    /* Black band */
  --reason-strip-text: #ffffff;  /* Text on black */

  --contact-bg: #0a0a0a;         /* Contact strip near-black */
  --contact-text: #ffffff;

  --footer-bg: #0b0e10;          /* Footer band */
  --footer-text: #b7c0c9;
  --footer-link: #d7df28;        /* Footer nav yellow-green */

  --rule-color: #1f1f1f;         /* Divider on white */
  --rule-color-dark: #2a2a2a;    /* Divider on black */

  --container-w: 1200px;         /* Max content width */
}

/* Base */
* { box-sizing: border-box; }
html, body { height: 100%; margin: 0; }
body{
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);   /* <-- change black if needed */
  color: var(--text);
  line-height: 1.45;
  overflow-x: hidden;
}
a{ color: inherit; text-decoration: none; }
 
/* Navbar Styling - Same as other pages */
.navbar {
  background: linear-gradient(135deg, #213749 0%, #37556F 50%, #213749 100%);
  border-bottom: 1px solid #37556F;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 2px 0;
  min-height: 50px;
}

.navbar-brand {
  color: #3ed3fa !important;
  font-weight: bold;
  font-size: 1rem;
  text-shadow: 0 0 3px rgba(62, 211, 250, 0.2);
}

.navbar-brand img {
    height: 48px;
    margin-left: 44px;
    border-radius: 2px;
    width: 200px;
}

.navbar-nav .nav-link {
  color: white !important;
  font-weight: 500;
  margin: 0 8px;
  position: relative;
  transition: all 0.3s ease;
  font-size: 0.85rem;
}

.navbar-nav .nav-link:hover {
  color: #3ed3fa !important;
  transform: translateY(-1px);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #3ed3fa, #37556F);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}


/* HERO (about) */
.hero{
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 88px 20px 72px;
}
.hero-inner{
  width: 100%;
  max-width: var(--container-w);
  text-align: center;
}
.hero h1{
  margin: 0 0 20px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--accent);
  font-size: clamp(2.25rem, 5.6vw, 4.875rem);
  line-height: 1.08;
}
.impact{
  display: block;
  margin-top: .35em;
  font-size: clamp(2.5rem, 7vw, 4.75rem);
  line-height: 1.05;
}
.subtitle{
  margin: 0 auto 36px;
  max-width: min(980px, 90vw);
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.25rem);
  line-height: 1.6;
  text-wrap: balance;
}
.cta{
  display: inline-block;
  padding: 14px 28px;
  border-radius: 10px;
  background: #ffffff;
  color: #000000;
  font-weight: 700;
  font-size: 1rem;
  border: 1px solid transparent;
  transition: transform .12s ease, background .2s ease, box-shadow .2s ease;
  box-shadow: 0 6px 20px rgba(255,255,255,0.08);
}
.cta:hover{ background: #eaeaea; transform: translateY(-1px); }
.cta:active{ transform: translateY(0) scale(.99); }
.cta:focus-visible{ outline: 2px solid var(--accent); outline-offset: 3px; }
/* About Page Styling */
    .about-hero {
        background: linear-gradient(135deg, #213749 0%, #37556F 50%, #3ed3fa 100%);
        padding: 80px 0;
        color: white;
        position: relative;
        overflow: hidden;
        margin-top: 50px;
        text-align: left;
        height: 100vh;
    }
    
    .about-hero .hero-title {
        font-size: 3.5rem;
        font-weight: bold;
        margin-bottom: 25px;
        color: white;
        line-height: 1.2;
    }
    
    .about-hero .hero-subtitle {
        font-size: 1.3rem;
        color: #e0e0e0;
        margin-bottom: 40px;
        line-height: 1.6;
    }
    
    .hero-stats {
        display: flex;
        gap: 30px;
        margin-top: 40px;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .stat-number {
        font-size: 2.5rem;
        font-weight: bold;
        color: #3ed3fa;
        margin-bottom: 5px;
    }
    
    .stat-label {
        font-size: 0.9rem;
        color: #ccc;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .hero-visual {
        position: relative;
        height: 400px;
    }
    
    .floating-elements {
        position: relative;
        width: 100%;
        height: 100%;
    }
    
    .element {
        position: absolute;
        font-size: 4rem;
        animation: float 6s ease-in-out infinite;
    }
    
    .element-1 { top: 20%; left: 20%; animation-delay: 0s; }
    .element-2 { top: 60%; right: 20%; animation-delay: 1.5s; }
    .element-3 { bottom: 20%; left: 30%; animation-delay: 3s; }
    .element-4 { top: 40%; right: 40%; animation-delay: 4.5s; }
    
    @keyframes float {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-20px); }
    }
    
    .about-section {
        background-color: #373435;
        padding: 100px 0;
        color: white;
    }
    
    .section-badge {
        display: inline-block;
        background: linear-gradient(45deg, #3ed3fa, #37556F);
        color: white;
        padding: 8px 20px;
        border-radius: 25px;
        font-size: 0.9rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 20px;
    }
    
    .section-title {
        font-size: 2.8rem;
        font-weight: bold;
        margin-bottom: 25px;
        color: #3ed3fa;
        line-height: 1.2;
    }
    
    .section-description {
        font-size: 1.2rem;
        color: #ccc;
        margin-bottom: 40px;
        line-height: 1.6;
    }
    
    .about-features {
        margin-top: 40px;
    }
    
    .feature-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 25px;
        padding: 20px;
        background-color: #2b2a28;
        border-radius: 15px;
        transition: transform 0.3s ease;
    }
    
    .feature-item:hover {
        transform: translateX(10px);
    }
    
    .feature-icon {
        font-size: 2rem;
        margin-right: 20px;
        color: #3ed3fa;
    }
    
    .feature-text h4 {
        color: white;
        font-weight: bold;
        margin-bottom: 8px;
    }
    
    .feature-text p {
        color: #ccc;
        margin: 0;
    }
    
    .about-image {
        position: relative;
        height: 400px;
    }
    
    /* Reviews Section Styling */
    .reviews-section {
        background-color: #2b2a28;
        padding: 100px 0;
        color: white;
    }
    
    .review-card {
        background: linear-gradient(135deg, #373435, #2b2a28);
        border-radius: 25px;
        padding: 50px 40px;
        margin: 20px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        border: 2px solid transparent;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .review-card::before {
        content: '"';
        position: absolute;
        top: 20px;
        left: 30px;
        font-size: 8rem;
        color: rgba(62, 211, 250, 0.1);
        font-family: serif;
        line-height: 1;
    }
    
    .review-card:hover {
        transform: translateY(-10px);
        border-color: #3ed3fa;
        box-shadow: 0 25px 50px rgba(62, 211, 250, 0.2);
    }
    
    .review-content {
        position: relative;
        z-index: 2;
    }
    
    .review-stars {
        text-align: center;
        font-size: 1.5rem;
        margin-bottom: 25px;
        color: #ffd700;
    }
    
    .review-text {
        font-size: 1.2rem;
        line-height: 1.8;
        color: #e0e0e0;
        margin-bottom: 30px;
        text-align: center;
        font-style: italic;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .review-author {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }
    
    .author-photo {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        overflow: hidden;
        border: 3px solid #3ed3fa;
        box-shadow: 0 5px 15px rgba(62, 211, 250, 0.3);
    }
    
    .author-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .author-info {
        text-align: left;
    }
    
    .author-info h4 {
        color: #3ed3fa;
        font-weight: bold;
        margin-bottom: 5px;
        font-size: 1.2rem;
    }
    
    .author-info p {
        color: #ccc;
        margin: 0;
        font-size: 0.95rem;
        font-style: italic;
    }
    
    /* Carousel Controls Styling */
    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
        background: linear-gradient(45deg, #3ed3fa, #37556F);
        border-radius: 50%;
        border: none;
        top: 50%;
        transform: translateY(-50%);
        opacity: 0.8;
        transition: all 0.3s ease;
    }
    
    .carousel-control-prev:hover,
    .carousel-control-next:hover {
        opacity: 1;
        transform: translateY(-50%) scale(1.1);
        box-shadow: 0 5px 15px rgba(62, 211, 250, 0.4);
    }
    
    .carousel-control-prev {
        left: -25px;
    }
    
    .carousel-control-next {
        right: -25px;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 20px;
        height: 20px;
    }
    
    /* Carousel Indicators Styling */
    .carousel-indicators {
        bottom: -50px;
    }
    
    .carousel-indicators button {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: #37556F;
        border: 2px solid #3ed3fa;
        margin: 0 5px;
        transition: all 0.3s ease;
    }
    
    .carousel-indicators button.active {
        background-color: #3ed3fa;
        transform: scale(1.2);
    }
    
    .carousel-indicators button:hover {
        background-color: #3ed3fa;
        transform: scale(1.1);
    }
    
    /* Mobile Responsiveness for Reviews */
    @media (max-width: 768px) {
        .review-card {
            padding: 30px 20px;
            margin: 10px;
        }
        
        .review-text {
            font-size: 1.1rem;
        }
        
        .review-author {
            flex-direction: column;
            text-align: center;
            gap: 15px;
        }
        
        .author-info {
            text-align: center;
        }
        
        .carousel-control-prev,
        .carousel-control-next {
            width: 40px;
            height: 40px;
        }
        
        .carousel-control-prev {
            left: -20px;
        }
        
        .carousel-control-next {
            right: -20px;
        }
    }
    
    .image-card {
        background: linear-gradient(135deg, #37556F, #3ed3fa);
        border-radius: 20px;
        padding: 40px;
        height: 100%;
        display: flex;
        align-items: center;
        box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    }
    
    .card-content h3 {
        color: white;
        font-weight: bold;
        margin-bottom: 20px;
        font-size: 1.8rem;
    }
    
    .card-content p {
        color: #e0e0e0;
        font-size: 1.1rem;
        line-height: 1.6;
        margin: 0;
    }
    
    .services-overview {
        background-color: #2b2a28;
        padding: 100px 0;
        color: white;
    }
    
    .service-overview-card {
        background-color: #373435;
        border-radius: 20px;
        padding: 40px 30px;
        text-align: center;
        height: 100%;
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }
    
    .service-overview-card:hover {
        transform: translateY(-10px);
        border-color: #3ed3fa;
        box-shadow: 0 15px 30px rgba(62, 211, 250, 0.2);
    }
    
    .service-overview-card .card-icon {
        font-size: 3rem;
        color: #3ed3fa;
        margin-bottom: 20px;
    }
    
    .service-overview-card h3 {
        color: white;
        font-weight: bold;
        margin-bottom: 15px;
        font-size: 1.4rem;
    }
    
    .service-overview-card p {
        color: #ccc;
        margin-bottom: 20px;
        line-height: 1.6;
    }
    
    .learn-more {
        color: #3ed3fa;
        text-decoration: none;
        font-weight: 600;
        transition: color 0.3s ease;
    }
    
    .learn-more:hover {
        color: #2bb8d9;
    }
    
    .why-choose-section {
        background-color: #373435;
        padding: 100px 0;
        color: white;
    }
    
    .benefits-list {
        margin-top: 30px;
    }
    
    .benefit-item {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
        padding: 15px;
        background-color: #2b2a28;
        border-radius: 10px;
        transition: transform 0.3s ease;
    }
    
    .benefit-item:hover {
        transform: translateX(10px);
    }
    
    .benefit-icon {
        font-size: 1.2rem;
        color: #3ed3fa;
        margin-right: 15px;
    }
    
    .benefit-item span {
        color: #e0e0e0;
        font-weight: 500;
    }
    
    .why-choose-visual {
        position: relative;
        height: 400px;
    }
    
    .achievement-cards {
        position: relative;
        width: 100%;
        height: 100%;
    }
    
    .achievement-card {
        position: absolute;
        background: linear-gradient(135deg, #37556F, #3ed3fa);
        border-radius: 15px;
        padding: 25px;
        text-align: center;
        color: white;
        box-shadow: 0 10px 25px rgba(0,0,0,0.3);
        transition: transform 0.3s ease;
    }
    
    .achievement-card:hover {
        transform: scale(1.05);
    }
    
    .card-1 { top: 10%; left: 10%; }
    .card-2 { top: 50%; right: 10%; }
    .card-3 { bottom: 10%; left: 20%; }
    
    .achievement-number {
        font-size: 2rem;
        font-weight: bold;
        margin-bottom: 8px;
    }
    
    .achievement-text {
        font-size: 0.9rem;
        opacity: 0.9;
    }
    
    .contact-section {
        background-color: #2b2a28;
        padding: 100px 0;
        color: white;
    }
    
    .contact-card {
        background-color: #373435;
        border-radius: 20px;
        padding: 40px 30px;
        text-align: center;
        height: 100%;
        transition: transform 0.3s ease;
        border: 2px solid transparent;
    }
    
    .contact-card:hover {
        transform: translateY(-10px);
        border-color: #3ed3fa;
        box-shadow: 0 15px 30px rgba(62, 211, 250, 0.2);
    }
    
    .contact-card .contact-icon {
        font-size: 3rem;
        color: #3ed3fa;
        margin-bottom: 20px;
    }
    
    .contact-card h3 {
        color: white;
        font-weight: bold;
        margin-bottom: 15px;
        font-size: 1.4rem;
    }
    
    .contact-card p {
        color: #ccc;
        margin-bottom: 15px;
        font-size: 1.1rem;
    }
    
    .contact-link {
        color: #3ed3fa;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        transition: color 0.3s ease;
    }
    
    .contact-link:hover {
        color: #2bb8d9;
    }
    
    .contact-details p {
        color: #888;
        font-size: 0.9rem;
        margin: 0;
        font-style: italic;
    }
    
    .site-footer {
        background-color: #213749;
        padding: 40px 0;
        color: white;
    }
    .back-to-top { position: fixed; right: 16px; bottom: 16px; background: linear-gradient(45deg, #37556F, #3ed3fa); color: #12202b; border: none; border-radius: 50%; width: 42px; height: 42px; font-weight: 800; box-shadow: 0 8px 18px rgba(62,211,250,0.25); cursor: pointer; display: none; }
    .back-to-top.show { display: inline-flex; align-items: center; justify-content: center; }

    /* Reveal on scroll */
    .reveal { opacity: 0; transform: translateY(20px); transition: all 600ms ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    
    .footer-brand {
        display: flex;
        align-items: center;
        font-size: 1.3rem;
        font-weight: bold;
        margin-bottom: 10px;
    }
    
    .footer-tagline {
        color: #ccc;
        margin: 0;
        font-style: italic;
    }
    
    .social-links {
        margin-bottom: 15px;
    }
    
    .social-link {
        display: inline-block;
        font-size: 1.5rem;
        margin: 0 10px;
        transition: transform 0.3s ease;
    }
    
    .social-link:hover {
        transform: scale(1.2);
    }
    
    .footer-copyright {
        color: #888;
        margin: 0;
        font-size: 0.9rem;
    }
    
    /* Mobile Responsiveness */
    @media (max-width: 768px) {
        .about-hero .hero-title {
            font-size: 2.5rem;
        }
        
        .hero-stats {
            flex-direction: column;
            gap: 20px;
        }
        
        .section-title {
            font-size: 2.2rem;
        }
        
        .achievement-cards {
            height: 300px;
        }
        
        .achievement-card {
            position: relative;
            margin-bottom: 20px;
        }
        
        .card-1, .card-2, .card-3 {
            position: relative;
            top: auto;
            left: auto;
            right: auto;
            bottom: auto;
        }
    }
/* ABOUT STRIP (white band) */
.about-strip{
  background: var(--about-strip-bg);
  color: var(--about-strip-text);
}
.about-strip__inner{
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 56px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.about-strip__rule{
  height: 1px;
  width: clamp(140px, 25vw, 320px);
  background: var(--rule-color);
  margin: 0 0 18px;
}
.about-strip__title{
  margin: 0;
  font-weight: 800;
  letter-spacing: 0.01em;
  font-size: clamp(1.75rem, 3.2vw, 2.25rem);
}
.about-strip__right{
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.about-strip__desc{
  margin: 0;
  font-size: clamp(1rem, 1.25vw, 1.125rem);
  line-height: 1.6;
  max-width: 780px;
}

/* REASON STRIP (black band) */
.reason-strip{
  background: var(--reason-strip-bg);
  color: var(--reason-strip-text);
}
.reason-strip__inner{
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 72px 20px 88px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
}
.reason-strip__para{
  margin: 0;
  font-size: clamp(1rem, 1.25vw, 1.125rem);
  line-height: 1.85;
  max-width: 860px;
}
.reason-strip__toprule{
  height: 1px;
  width: clamp(160px, 22vw, 300px);
  background: var(--rule-color-dark);
  margin: 0 0 18px;
}
.reason-strip__title{
  margin: 0;
  font-weight: 900;
  letter-spacing: 0.01em;
  font-size: clamp(1.9rem, 3.2vw, 2.5rem);
  line-height: 1.15;
}

/* CONTACT STRIP */
.contact-strip{
  background: var(--contact-bg);
  color: var(--contact-text);
}
.contact-strip__inner{
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 72px 20px 64px;
}
.contact-strip__heading{
  text-align: center;
  margin: 0 0 36px;
  color: var(--accent);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  letter-spacing: .02em;
  font-weight: 900;
}
.contact-strip__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.contact-card{
  text-align: center;
}
.contact-card__icon{
  display: grid;
  place-items: center;
  height: 64px;
  margin-bottom: 12px;
}
.contact-card__title{
  margin: 8px 0 6px 0;
  font-weight: 800;
  letter-spacing: .02em;
}
.contact-card__meta{
  margin: 0;
  color: #cfd2d6;
}
.link{ color: #cfd2d6; text-decoration: underline; }
.link:hover{ color: #ffffff; }

/* FOOTER */
.site-footer{
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 22px 0 28px;
  position: relative;
}
.site-footer__inner{
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 20px;
}
.footer-nav{
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 16px 0 14px;
}
.footer-link{
  color: var(--footer-link);
  font-weight: 700;
  font-size: .95rem;
}
.footer-link.active{ text-decoration: underline; }
.footer-bottom{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid #151a1f;
  padding-top: 14px;
}
.socials{ display: flex; gap: 10px; }
.social{
  display: inline-grid;
  place-items: center;
  width: 28px; height: 28px;
  border-radius: 6px;
  background: #12161b;
  color: #bfc6cf;
  font-size: 12px;
  font-weight: 800;
}
.social:hover{ background:#1a2128; color:#ffffff; }
.to-top{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #0f1317;
  color: #cbd5e1;
  border: 1px solid #1f2730;
  cursor: pointer;
}
.to-top:hover{ background:#171e24; color:#fff; }

/* Responsive */
@media (max-width: 1024px){
  .reason-strip__inner{ gap: 40px; }
}
@media (max-width: 900px){
  .about-strip__inner,
  .reason-strip__inner{
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .about-strip__right{ justify-content: flex-start; text-align: left; }
  .contact-strip__grid{ grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom{ justify-content: center; text-align: center; }
}
@media (max-width: 520px){
  .hero{ padding: 72px 16px 64px; }
  .subtitle{ margin-bottom: 28px; }
  .about-strip__inner{ padding: 44px 16px; }
  .reason-strip__inner{ padding: 56px 16px 72px; }
  .contact-strip__inner{ padding: 56px 16px 48px; }
}
.socials{
  display: flex;
  gap: 10px;
  justify-content: flex-end; /* <-- right-align icons within the block */
  width: 100%;               /* if you want the row to span full width */
}

/* Mobile navbar improvements */
@media (max-width: 768px) {
  .navbar {
    padding: 5px 0;
  }
  
  .navbar-toggler {
    padding: 4px 8px;
    font-size: 0.9rem;
  }
  
  .navbar-collapse {
    background: rgba(33, 55, 73, 0.95);
    margin-top: 10px;
    border-radius: 8px;
    padding: 15px;
  }
  
  .navbar-nav .nav-link {
    padding: 10px 15px;
    margin: 2px 0;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  
  .navbar-nav .nav-link:hover {
    background: rgba(62, 211, 250, 0.1);
    transform: none;
  }
  
  .dropdown-menu {
    background: rgba(43, 42, 40, 0.95);
    border: 1px solid rgba(62, 211, 250, 0.2);
    margin-top: 5px;
  }
  
  .dropdown-item {
    color: white !important;
    padding: 8px 15px;
  }
  
  .dropdown-item:hover {
    background: rgba(62, 211, 250, 0.1);
    color: #3ed3fa !important;
  }
}