* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #ffffff;
  background: #0f172a;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

/*Hero Section*/

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0;
}

/* HERO SECTION */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(rgba(10, 15, 30, 0.3), rgba(10, 15, 30, 0.4)),
    url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1600&q=80")
    center/cover no-repeat;
  display: flex;
  flex-direction: column;
}

/* NAVBAR */
.navbar {
  width: 100%;
  margin: 0 0;
  padding: 0 0;
  background: transparent;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1200;
  transition: all 0.3s ease;
}

.logo img {
  height: 60px;
  width: auto;
  display: block;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  transition: 0.3s ease;
}

.nav-links a:hover {
  color: #38bdf8;
}

/* HERO CONTENT */
.hero-content {
  flex: 1;
  display: flex;
  align-items: center;
}

.hero-text {
  max-width: 650px;
  text-align: left;
}

.hero-text h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 580px;
  color: #e2e8f0;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-primary {
  background: #38bdf8;
  color: #0f172a;
}

.btn-primary:hover {
  background: #0ea5e9;
}

.btn-secondary {
  border: 2px solid #ffffff;
  color: #ffffff;
  background: transparent;
}

.btn-secondary:hover {
  background: #ffffff;
  color: #0f172a;
}

/* ANIMATION */
.slide-in-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 1s ease;
}

.slide-in-left.show {
  opacity: 1;
  transform: translateX(0);
}

/* MOBILE MENU */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: white;
  border-radius: 3px;
}




/* =========================
   RESPONSIVE
========================= */

/* Tablets and smaller screens */
@media (max-width: 992px) {
  .menu-toggle {
    display: flex;
    z-index: 1100;
  }

  .nav-content {
    position: relative;
  }

  .hero-content {
    justify-content: center;
    text-align: center;
  }

  .hero-text {
    max-width: 700px;
    text-align: center;
    margin: 0 auto;
  }

  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }
}

/* Mobile and tablet menu overlay */
@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: whitesmoke;
    backdrop-filter: blur(6px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    z-index: 1050;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.35s ease;
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links a {
    font-size: 1.2rem;
    font-weight: 600;
    background: linear-gradient(135deg, #0826C9 0%, #0F5BFF 50%, #33D6FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

/* Mobile devices */
@media (max-width: 768px) {
  .hero-section {
    min-height: 100vh;
    padding-bottom: 40px;

    /* keeps image filling screen */
    background-size: cover;


    background-position: center center;
  }


  .logo {
    font-size: 1.3rem;
    position: relative;
    z-index: 1100;
  }

  .hero-content {
    padding-top: 20px;
    justify-content: center;
    text-align: center;
  }

  .hero-text {
    text-align: center;
    max-width: 100%;
  }

  .hero-text h1 {
    font-size: 2.3rem;
    line-height: 1.2;
  }

  .hero-text p {
    font-size: 1rem;
    line-height: 1.7;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .btn {
    width: 100%;
    max-width: 260px;
    text-align: center;
  }
}

/* Smaller mobile screens */
@media (max-width: 480px) {
  .container {
    width: 92%;
  }

  .hero-section {

    background-position: center top;
  }

  .hero-text h1 {
    font-size: 1.9rem;
  }

  .hero-text p {
    font-size: 0.95rem;
  }

  .hero-buttons {
    margin-top: 10px;
  }

  .btn {
    padding: 13px 20px;
    font-size: 0.95rem;
  }

  .nav-links a {
    font-size: 1.1rem;
  }
}

/*End of Hero Section *?

/*Our Services Section*/
/* =========================
   SERVICES SECTION
========================= */
.services-section {
  padding: 100px 0;
  background: linear-gradient(to bottom, #f8fafc, #e2e8f0);
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #0ea5e9;
  margin-bottom: 14px;
}

.section-header h2 {
  font-size: 2.4rem;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 18px;
}

.section-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #475569;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.service-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

.service-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #cbd5e1;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-content {
  padding: 24px 22px 28px;
}

.service-content h3 {
  font-size: 1.25rem;
  line-height: 1.4;
  color: #0f172a;
  margin-bottom: 14px;
}

.service-content p {
  font-size: 0.98rem;
  line-height: 1.8;
  color: #475569;
}

/* =========================
   SERVICES RESPONSIVE
========================= */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .services-section {
    padding: 80px 0;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .section-header {
    margin-bottom: 45px;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .section-text {
    font-size: 1rem;
  }

  .service-image {
    height: 210px;
  }

  .service-content {
    padding: 22px 18px 24px;
  }

  .service-content h3 {
    font-size: 1.15rem;
  }

  .service-content p {
    font-size: 0.96rem;
    line-height: 1.7;
  }
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-section {
    padding: 70px 0;
  }

  .section-header h2 {
    font-size: 1.6rem;
  }

  .service-image {
    height: 220px;
  }
}
/*End of our Services Section*/

/* Who we are Section */

/* =========================
   VISION / MISSION / VALUES
========================= */
.values-section {
  padding: 100px 0;
  background: #f8fafc;
}

.values-layout {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-top: 50px;
  position: relative;
}

/* base card */
.value-card {
  width: 32%;
  min-height: 320px;
  padding: 34px 28px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.value-card h3 {
  font-size: 2rem;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 20px;
}

.value-card p {
  font-size: 1rem;
  line-height: 1.9;
  color: #334155;
}

/* staggered positioning like screenshot */
.vision-card {
  background: #dbeafe;
  margin-top: 0;
}

.mission-card {
  background: #bfdbfe;
  margin-top: 60px;
}

.core-card {
  background: #93c5fd;
  margin-top: 130px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
  .values-section {
    padding: 80px 0;
  }

  .values-layout {
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
  }

  .value-card {
    width: 100%;
    min-height: auto;
    margin-top: 0 !important;
    padding: 28px 22px;
  }

  .value-card h3 {
    font-size: 1.7rem;
  }

  .value-card p {
    font-size: 0.98rem;
    line-height: 1.8;
  }
}

@media (max-width: 768px) {
  .values-section {
    padding: 70px 0;
  }

  .value-card h3 {
    font-size: 1.5rem;
  }

  .value-card p {
    font-size: 0.96rem;
  }
}

@media (max-width: 480px) {
  .value-card {
    padding: 24px 18px;
    border-radius: 14px;
  }

  .value-card h3 {
    font-size: 1.35rem;
  }

  .value-card p {
    font-size: 0.95rem;
    line-height: 1.75;
  }
}

/* Who we are Section ends here */

/*Contact Us Section */

/* =========================
   CONTACT SECTION
========================= */
.contact-section {
  padding: 100px 0;
  background: linear-gradient(to bottom, #f1f5f9, #e2e8f0);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  margin-top: 50px;
  align-items: start;
}

/* Contact Details */
.contact-details {
  background: #0f172a;
  color: #ffffff;
  padding: 40px 30px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.1);
}

.contact-details h3 {
  font-size: 1.6rem;
  margin-bottom: 25px;
}

.contact-item {
  margin-bottom: 25px;
}

.contact-item h4 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #38bdf8;
  margin-bottom: 8px;
}

.contact-item p {
  font-size: 1rem;
  line-height: 1.7;
  color: #e2e8f0;
}

.contact-item a {
  color: #e2e8f0;
  transition: 0.3s;
}

.contact-item a:hover {
  color: #38bdf8;
}

/* Text Content */
.contact-text {
  padding: 10px 10px;
}

.contact-text h3 {
  font-size: 1.8rem;
  color: #0f172a;
  margin-bottom: 20px;
}

.contact-text p {
  font-size: 1rem;
  line-height: 1.9;
  color: #475569;
  margin-bottom: 18px;
}

.contact-note {
  font-weight: 600;
  color: #0f172a;
  margin-top: 10px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
  .contact-section {
    padding: 80px 0;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .contact-details {
    text-align: center;
  }

  .contact-item h4 {
    font-size: 0.9rem;
  }

  .contact-text {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .contact-text h3 {
    font-size: 1.6rem;
  }

  .contact-text p {
    font-size: 0.96rem;
    line-height: 1.8;
  }

  .contact-details {
    padding: 30px 22px;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 70px 0;
  }

  .contact-text h3 {
    font-size: 1.4rem;
  }

  .contact-text p {
    font-size: 0.94rem;
  }

  .contact-details h3 {
    font-size: 1.4rem;
  }
}

/*Contact Us Section ends here*/

/* Footer Section Start here */

/* =========================
   FOOTER
========================= */
.footer-section {
  position: relative;
  background: url("https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=1600&q=80")
    center/cover no-repeat;
  color: #ffffff;
  padding: 90px 0 25px;
  overflow: hidden;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.82);
}

.footer-content {
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1.4fr;
  gap: 40px;
  align-items: start;
}

.footer-column h3,
.footer-column h4 {
  color: #ffffff;
  margin-bottom: 18px;
}

.footer-company h3 {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.3;
}

.footer-column h4 {
  font-size: 1.2rem;
  font-weight: 600;
}

.footer-column p,
.footer-column li,
.footer-column a {
  font-size: 0.97rem;
  line-height: 1.9;
  color: #e2e8f0;
}

.footer-column a {
  transition: 0.3s ease;
}

.footer-column a:hover {
  color: #38bdf8;
}

.footer-links ul {
  padding: 0;
  margin: 0;
}

.footer-links li {
  list-style: none;
  margin-bottom: 10px;
}

.footer-about p {
  margin-bottom: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 45px;
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.95rem;
  color: #cbd5e1;
}

/* =========================
   FOOTER RESPONSIVE
========================= */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-column {
    width: 100%;
  }

  .footer-company,
  .footer-links,
  .footer-about {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .footer-section {
    padding: 70px 0 20px;
  }

  .footer-company h3 {
    font-size: 1.45rem;
  }

  .footer-column h4 {
    font-size: 1.1rem;
  }

  .footer-column p,
  .footer-column li,
  .footer-column a {
    font-size: 0.95rem;
    line-height: 1.8;
  }

  .footer-bottom {
    margin-top: 35px;
    padding-top: 18px;
  }

  .footer-bottom p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .footer-section {
    padding: 60px 0 18px;
  }

  .footer-company h3 {
    font-size: 1.3rem;
  }

  .footer-column h4 {
    font-size: 1.05rem;
  }
}

/* Footer Section end here */

/* Fixed Nav when Scrolled */
/* =========================
   STICKY NAV ON SCROLL
========================= */

.navbar.scrolled {
  background: white;

}

.navbar.scrolled .nav-links a {
  background: linear-gradient(135deg, #0826C9 0%, #0F5BFF 50%, #33D6FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.navbar.scrolled .nav-links a:hover {
  color: #38bdf8;
  -webkit-text-fill-color: #38bdf8;
  background: none;
}


.navbar.scrolled .menu-toggle span {
  background: linear-gradient(135deg, #0826C9 0%, #0F5BFF 50%, #33D6FF 100%);
}


.menu-toggle.open span {
  background: linear-gradient(135deg, #0826C9 0%, #0F5BFF 50%, #33D6FF 100%) !important;
}



