:root {
    --bg-dark: #050b1d;
    --accent-yellow: #ffcc00;
    --text-white: #ffffff;
    --text-gray: #a0a8b3;
    --card-bg: rgba(255, 255, 255, 0.05);
    --text-secondary: #000;
    --bg-contact:radial-gradient(circle at center, #1a2a3a 0%, #050b1d 100%);
}
@media (prefers-color-scheme: light) {
    :root {
    --bg-dark: #FFFFFF;
    --accent-yellow: #ffcc00;
    --text-white: #000000;
    --text-gray: #53585e;
    --card-bg: rgba(255, 255, 255, 0.05);
    --text-secondary: #FFFFFF;
    --bg-contact:radial-gradient(circle at center, #bfc6ce 0%, #5f6066 100%);
  }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: transparent;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-yellow);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-white);
    font-size: 14px;
}

.nav-links a.active {
    color: var(--accent-yellow);
}

.btn-get-started {
  margin-right: 20px;
    background: var(--accent-yellow);
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    color: var(--bg-dark);
    font-weight: 600;
}

/* ================= CHECKBOX ================= */
#menu-toggle {
    display: none;
}

/* ================= HAMBURGER ICON ================= */
.hamburger {
    display: none;
    position: relative;
    width: 28px;
    height: 28px;
    cursor: pointer;
}

.hamburger i {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 26px;
    color: var(--text-white);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

/* default state */
.hamburger .close-icon {
    opacity: 0;
    transform: rotate(-90deg) scale(0.8);
}


/* Hero Section */
.hero {
    padding: 60px 8%;
    background: var(--bg-contact);
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.welcome-tag {
    color: var(--accent-yellow);
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-content h1 {
    font-size: 46px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.highlight {
    color: var(--accent-yellow);
    text-decoration: underline;
}

.description {
    color: var(--text-gray);
    margin-bottom: 30px;
    text-align: left;
}

/* Buttons */
.hero-btns {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.btn-primary {
    background: var(--accent-yellow);
    padding: 10px 30px;
    border-radius: 30px;
    text-decoration: none;
    color: #000;
    font-weight: 700;
}

.btn-secondary {
    border: 1px solid var(--text-gray);
    padding: 10px 30px;
    border-radius: 30px;
    text-decoration: none;
    color: var(--text-white);
}

/* Stats */
.stats {
    display: flex;
    gap: 20px;
}

.stat-item {
    background: var(--card-bg);
    padding:20px ;
    border-radius: 10px;
    min-width: 140px;
    border-left: 2px solid var(--accent-yellow);
}

.stat-item h3 {
    font-size: 24px;
}

.stat-item p {
    font-size: 12px;
    color: var(--text-gray);
}

/* Hero Image */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    max-width: 100%;
    height: 70vh;
    display: block;
}

.about-section {
    background-color: var(--bg-dark);
    padding: 80px 8%;
    color: var(--text-white);
}

.container {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    flex: 1;
}

.img-box {
    overflow: hidden;
    height: 250px;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Matching the unique rounded corners from your image */
.top-left { border-radius: 40px 0 0 0; }
.top-right { border-radius: 0 40px 0 0; }
.bottom-left { border-radius: 0 0 0 40px; }
.bottom-right { border-radius: 0 0 40px 0; }

/* Content Styling */
.about-content {
    flex: 1.2;
}

.subtitle {
    color: var(--accent-yellow);
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.about-content h2 {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.main-text {
    color: var(--text-gray);
    margin-bottom: 25px;
    font-size: 15px;
}

.btn-learn {
    display: inline-block;
    background: var(--accent-yellow);
    color: var(--text-secondary);
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    margin-bottom: 40px;
}

/* Vision Section Sub-Grid */
.vision-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.vision-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.vision-icon {
    color: var(--accent-yellow);
    font-size: 24px;
    margin-bottom: 10px;
}

.vision-card h3 {
    margin-bottom: 10px;
}

.vision-card p {
    font-size: 13px;
    color: var(--text-gray);
}

.vision-image img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    object-fit: cover;
}

 .services-section {
    background: var(--bg-contact);
    padding: 100px 8%;
    text-align: center;
    color: var(--text-white);
}

.services-header {
    max-width: 800px;
    margin: 0 auto 60px;
}

.services-header .subtitle {
    color: var(--accent-yellow);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 15px;
}

.services-header h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.services-header .intro-text {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.6;
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* FLIP CARD */
.flip-card{
  perspective:1000px;
}

.flip-inner{
  position:relative;
  width:100%;
  height:330px;
  transition:transform 0.8s;
  transform-style:preserve-3d;
}

.flip-card:hover .flip-inner{
  transform:rotateY(180deg);
}

.flip-front,
.flip-back{
  position:absolute;
  width:100%;
  height:100%;
  backface-visibility:hidden;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.3);
}

.flip-front{
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.2);
}

.flip-front img{
  width:100%;
  height:180px;
  object-fit:cover;
}

.flip-front h3{
  color:var(--accent-yellow);
  margin-top:20px;
}

.flip-front p{
  padding:0 20px;
  opacity:0.8;
}

.flip-back{
  background: transparent;
  transform:rotateY(180deg);
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  padding:25px;
  box-sizing:border-box;
  
}

.flip-back h3{
  color:var(--accent-yellow);
}
.flip-back p{
  margin-top:15px;
  line-height:1.6;
}

/* why choose */
.why-section{
  padding:80px 5%;
}

.why-container{
  display:flex;
  align-items:center;
  gap:50px;
  flex-wrap:wrap;
}

.why-left{
  flex:1;
  min-width:300px;
}

.small-title{
  color:var(--accent-yellow);
  font-size:14px;
  letter-spacing:1px;
}

.why-left h2{
  font-size:34px;
  margin:15px 0;
}

.main-desc{
  opacity:0.8;
  margin-bottom:40px;
  line-height:1.6;
}

.feature-box{
  display:flex;
  align-items:center;
  gap:15px;
  background:rgba(0,255,255,0.08);
  padding:18px 20px;
  border-radius:12px;
  margin-bottom:20px;
  border:1px solid rgba(32, 36, 36, 0.2);
  transition:0.3s;
}

.feature-box:hover{
  transform:translateX(8px);
  background:rgba(22, 29, 58, 0.2);
}

.feature-box .icon{
  font-size:24px;
  background:transparent;
  width:45px;
  height:45px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:10px;
  color:#000;
}

.feature-box h4{
  margin:0;
}

.feature-box p{
  margin:5px 0 0;
  font-size:14px;
  opacity:0.8;
}

/* RIGHT IMAGE */

.why-right{
  flex:1;
  min-width:300px;
  position:relative;
}

.why-right img{
  width:100%;
  border-radius:20px;
  object-fit:cover;
}

.image-overlay{
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  padding:20px;
  background:linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  border-radius:0 0 20px 20px;
}


.image-overlay h3{
  margin:0;
  font-size:18px;
}

/* contact-section */
.contact-section{
  padding:80px 5%;
  background: var(--bg-contact);
  color: var(--text-white);
}

.contact-container{
  display:flex;
  gap:60px;
  flex-wrap:wrap;
  align-items:center;
}

.contact-info{
  flex:1;
  min-width:300px;
}

.contact-info h5{
  color: var(--accent-yellow);
  margin-bottom:10px;
}

.contact-info h2{
  font-size:32px;
  margin-bottom:15px;
}

.contact-info p{
  opacity:0.8;
  margin-bottom:25px;
  line-height:1.6;
}

.info-box{
  display:flex;
  align-items:center;
  gap:15px;
  margin-bottom:15px;
  background:rgba(255,255,255,0.05);
  padding:12px 18px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,0.2);
}

.info-box span{
  font-size:20px;
}

/* FORM */

.contact-form{
  flex:1;
  min-width:350px;
  background: rgba(255,255,255,0.05);
  padding:40px;
  border-radius:20px;
  backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,0.2);
}

.input-group{
  margin-bottom:20px;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  padding:12px 15px;
  border:none;
  border-radius:8px;
  outline:none;
  background:rgba(255,255,255,0.1);
  color:white;
  border:1px solid rgba(255,255,255,0.2);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
  color: var(--text-gray);
}

.contact-form button{
  width:100%;
  padding:12px;
  border:none;
  border-radius:8px;
  background:var(--accent-yellow);
  color: var(--text-secondary);
  font-weight:600;
  cursor:pointer;
  transition:0.3s;
}

.contact-form button:hover{
  background:  var(--accent-yellow);
  transform:translateY(-2px);
}




/* ================= FOOTER ================= */
.footer {
  background: var(--bg-footer);
  color: var(--text-nav);
  font-family: "Segoe UI", sans-serif;
}

.footer-follow {
  display: flex;
  border-bottom: 1px solid light-dark(rgba(255,255,255,0.1), rgba(255, 255, 255, 0.1));
  align-items: center;
}

.footer-follow h3 {
  color: var(--text-white); 
  font-size: 18px;
  margin-bottom: 15px;
  padding: 30px 10px 30px 120px;
}

.social-icons { display: flex; gap: 18px; padding: 30px 120px 30px 20px; }
.social-icons a {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--text-gray);
  transition: all 0.3s ease;
}

.social-icons svg {
  width: 20px; height: 20px;
  fill: var(--text-muted);
  transition: all 0.3s ease;
}

.social-icons a:hover { background: #3b82f6; transform: translateY(-4px); }
.social-icons a:hover svg { fill: #ffffff; }

.footer-section { padding: 50px 20px; }
.footer-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-col h4 { 
  color: var(--text-white); 
  font-size: 15px; 
  margin-bottom: 15px; 
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li {
  font-size: 14px;
  color: var(--accent-ygreen);
  margin-bottom: 8px;
  cursor: pointer;
}
.footer-col ul li:hover { color: #38bdf8; }

.footer-bottom {
  text-align: center;
  padding: 25px 20px;
  border-top: 1px solid light-dark(rgba(0,0,0,0.1), rgba(255,255,255,0.1));
  font-size: 13px;
  color: var(--text-white);
}
