/* GLOBAL RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #171010, #1f1f41);
    color: #ffffff;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}


/* Navbar */
.navbar {
  background: #111;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 9999;
}

.nav-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  text-decoration: none;
}

/* Nav Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li {
  position: relative;
}

.nav-links a,
.dropdown-toggle {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}

.nav-links a:hover,
.dropdown-toggle:hover {
  color: #ceab5d;
}

/* Dropdown */
.submenu {
  display: none;
  position: absolute;
  top: 35px;
  left: 0;
  background: #312C51;
  min-width: 220px;
  padding: 10px 0;
  border-radius: 6px;
}

.submenu li {
  padding: 8px 15px;
}

.submenu li a {
  color: #fff;
  font-size: 13px;
}

/* Desktop Hover */
@media (min-width: 769px) {
  .dropdown:hover .submenu {
    display: block;
  }
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

/* Mobile */
@media (max-width: 768px) {

  .hamburger {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    background: #111;
    width: 100%;
    flex-direction: column;
    display: none;
    padding: 20px 0;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    padding: 10px 20px;
  }

  .submenu {
    position: static;
    background: #222;
  }

  .dropdown.active .submenu {
    display: block;
  }
}


/* HERO */
.hero {
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 42px;
    font-weight: 900;
    background: linear-gradient(90deg,#483AA0,#ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.hero p {
    max-width: 700px;
    margin: auto;
    color: #ffffff;
}

/* ABOUT WRAPPER */
.about-wrapper {
display: grid;
grid-template-columns: 1fr 1.5fr;
gap: 40px;
align-items: center;
margin-top: 40px;
}

/* PHOTO */
.photo-box {
width: 100%;
aspect-ratio: 1 / 1;
background: #312C51;
border-radius: 16px;
overflow: hidden;
border: 1px solid rgba(255,255,255,0.05);
display: flex;
align-items: center;
justify-content: center;
}

.photo-box img {
width: 100%;
height: 100%;
object-fit: cover;
}

/* ABOUT CARD */
.about-card {
background: #312C51;
padding: 35px;
border-radius: 16px;
border: 1px solid rgba(255,255,255,0.05);
line-height: 1.7;
color: #ffffff;
font-size: 15px;
transition: 0.3s ease;
}

.about-card:hover {
border-color: #ceab5d;
box-shadow: 0 0 25px rgba(0,85,255,0.1);
}

/* RESPONSIVE */
@media (max-width: 992px) {
.about-wrapper {
grid-template-columns: 1fr;
}

.about-photo {
max-width: 350px;
margin: 0 auto;
}

.about-card {
margin-top: 20px;
}
}

/* SECTIONS */
section {
    padding: 80px 0;
}

h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    border: 1px solid #ceab5d;
    box-shadow: 0 0 20px rgba(0,85,255,.3);
}

/* BUTTON */
.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    border: 1px solid #ceab5d;
    border-radius: 30px;
    text-decoration: none;
    color: #fff;
    transition: 0.3s ease;
}

.btn:hover {
    background: #ceab5d;
    box-shadow: 0 0 15px rgba(0,85,255,.5);
}

/* FOOTER */
footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,.1);
    font-size: 13px;
    color: #777;
}

/* MOBILE */


@media (max-width: 768px) {

    .nav-links {
        position: absolute;
        top: 70px;
        right: 0;
        background: #312C51;
        flex-direction: column;
        width: 260px;
        padding: 20px;
        gap: 20px;
        display: none;
        border-radius: 12px;
    }

    .nav-links.active {
        display: flex;
    }

    
}


/* BUTTON BASE */
.btn-primary,
.btn-outline {
display: inline-block;
padding: 12px 24px;
border-radius: 8px;
font-weight: 500;
text-decoration: none;
font-size: 14px;
transition: all 0.3s ease;
cursor: pointer;
}

/* PRIMARY BUTTON */
.btn-primary {
background: #ceab5d;
color: #fff;
border: 2px solid #ceab5d;
}

.btn-primary:hover {
background: #003fcc;
border-color: #003fcc;
transform: translateY(-2px);
}

/* OUTLINE BUTTON */
.btn-outline {
background: transparent;
color: #fff;
border: 2px solid #ceab5d;
}

.btn-outline:hover {
background: #ceab5d;
color: #fff;
transform: translateY(-2px);
}

/* Button group spacing */
.hero-buttons {
display: flex;
gap: 16px;
flex-wrap: wrap;
margin-top: 20px;
}

/* Mobile full-width button */
@media (max-width: 768px) {
.hero-buttons {
flex-direction: column;
}

.btn-primary,
.btn-outline {
width: 100%;
text-align: center;
}
}
/* Center hero content */
.hero-inner {
display: flex;
justify-content: center;
text-align: center;
}

/* Center button group */
.hero-buttons {
display: flex;
justify-content: center;
align-items: center;
gap: 16px;
flex-wrap: wrap;
margin-top: 24px;
}
@media (max-width: 768px) {

.hero-buttons {
flex-direction: column;
align-items: center;
}

.btn-primary,
.btn-outline {
width: 100%;
max-width: 300px;
text-align: center;
}

}
/* SECTION TITLE */
.section-title {
text-align: center;
margin-bottom: 50px;
font-size: 28px;
font-weight: 700;
}

/* SERVICES GRID */
.services-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}

/* CARD */
.service-card {
background: #312C51;
padding: 30px;
border-radius: 12px;
display: flex;
flex-direction: column;
justify-content: space-between;
min-height: 280px;
transition: 0.3s ease;
border: 1px solid rgba(255,255,255,0.05);
}

.service-card:hover {
transform: translateY(-5px);
border-color: #ceab5d;
}

/* CARD CONTENT */
.card-content h3 {
margin-bottom: 15px;
font-size: 18px;
}

.card-content p {
color: #ffffff;
line-height: 1.6;
font-size: 14px;
}

/* CARD BUTTON */
.btn-card {
display: inline-block;
margin-top: 25px;
padding: 10px 18px;
border-radius: 6px;
font-size: 13px;
text-decoration: none;
border: 1px solid #ceab5d;
color: #ceab5d;
transition: 0.3s ease;
align-self: flex-start;
}

.btn-card:hover {
background: #ceab5d;
color: #fff;
}

/* MOBILE RESPONSIVE */
@media (max-width: 992px) {
.services-grid {
grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 768px) {
.services-grid {
grid-template-columns: 1fr;
}

.service-card {
min-height: auto;
}

.btn-card {
width: 100%;
text-align: center;
}
}
/* BENEFITS GRID */
.benefits-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 25px;
margin-top: 40px;
}

/* BENEFIT CARD */
.benefit-card {
background: #312C51;
padding: 25px;
border-radius: 12px;
border: 1px solid rgba(255,255,255,0.05);
transition: 0.3s ease;
}

.benefit-card:hover {
transform: translateY(-5px);
border-color: #ceab5d;
box-shadow: 0 0 20px rgba(0,85,255,0.1);
}

.benefit-card h3 {
font-size: 16px;
margin-bottom: 12px;
}

.benefit-card p {
font-size: 14px;
color: #93ceff;
line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
.benefits-grid {
grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 768px) {
.benefits-grid {
grid-template-columns: 1fr;
}
}

/* Dropdown base */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  background: none;
  border: none;
  color: white;
  font-size: 14px;
  cursor: pointer;
  padding: 0;
}

/* Submenu hidden by default */
.submenu {
  display: none;
  list-style: none;
}

/* Desktop hover */
@media (min-width: 769px) {
  .submenu {
    position: absolute;
    top: 35px;
    left: 0;
    background: #312C51;
    min-width: 220px;
    padding: 10px 0;
    border-radius: 6px;
  }

  .dropdown:hover .submenu {
    display: block;
  }
}

/* Mobile style */
@media (max-width: 768px) {

  .submenu {
    background: #222;
    padding-left: 15px;
  }

  .dropdown.active .submenu {
    display: block;
  }
}

/* Desktop */
@media (min-width: 769px) {
  .submenu {
    display: none;
    position: absolute;
    top: 35px;
    left: 0;
    background: #312C51;
    min-width: 220px;
    padding: 10px 0;
    border-radius: 8px;
  }

  .dropdown:hover .submenu {
    display: block;
  }
}

/* Mobile - always visible */
@media (max-width: 768px) {
  .submenu {
    display: block;
    position: static;
    background: transparent;
    padding-left: 15px;
  }
}
