
/*GOOGLE FONT (Montserrat)*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");





.float-contact {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.float-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: 0.3s;
}

.float-btn:hover {
  transform: scale(1.1);
}

/* Button Colors */
.whatsapp { background: #25D366; }
.call { background: #007bff; }
.email { background: #ff3b3b; }

/* Mobile adjustment */
@media (max-width: 768px) {
  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }


  .embedded-section {
    padding: 10px ;
    margin: 10px ;
}


.ai-section {
    padding: 40px 20px;
    /* padding-left: 0px; */
    background: #ffffff;
}


  .embedded-section .deliver-item {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    padding: 2px 5px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
}

}


a{
  text-decoration: none !important;
}





* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #020617;
  overflow-x: hidden;
}

.container {
  width: 90%;
  margin: auto;
}

/* TOP BAR */
.top-bar {
  background: #0f172b;
  color: #fff;
  padding: 10px 0;
}

.top-bar-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-info {
  display: flex;
  gap: 25px;
  font-size: 14px;
}



.top-bar-info span a {
  color: white !important;
}

.enroll-btn {
  background: #193cb8;
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 15px;
  border: none;
  cursor: pointer;
}




/* ====================================== */


.vm_modern_section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f9fafc, #eef3f8);
}

.vm_modern_container {
  width: 90%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  text-align: justify;
}

/* Cards */
.vm_card {
  background: #fff;
  padding: 45px 35px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
}

.vm_card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 6px;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, #00bcd4, #4caf50);
}

.vm_card:hover {
  transform: translateY(-10px);
}

/* Icons */
.vm_icon {
  width: 70px;
  height: 70px;
  background: #e0f7fa;
  color: #00bcd4;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 25px;
}

/* Text */
.vm_card h2 {
  font-size: 30px;
  margin-bottom: 15px;
  color: #222;
}

.vm_card p {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .vm_modern_container {
    grid-template-columns: 1fr;
  }
}

/* =============================== */




.three_image_section {
  padding: 80px 20px;
  background-color: #f8f9fb;
}

.three_image_wrap {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.image_card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  /* box-shadow: 0 8px 25px rgba(0,0,0,0.08); */
  transition: transform 0.3s ease;
}

.image_card:hover {
  transform: translateY(-6px);
}

.image_card img {
  width: 100%;
  /* height: 240px; */
  object-fit: cover;
}

.image_card p {
  padding: 15px;
  font-size: 18px;
  font-weight: 600;
  color: #222;
}

/* Tablet */
@media (max-width: 992px) {
  .three_image_wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .three_image_wrap {
    grid-template-columns: 1fr;
  }

  .image_card img {
    height: 200px;
  }
}








/* NAVBAR */
.navbar {
  background: #ffffff;
  padding: 15px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  position: relative;
  z-index: 999;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.logo-img {
  width: 42px;
  margin-right: 10px;
}

.nav-brand {
  font-size: 18px;
  font-weight: 600;
}

/* MENU */
.nav-menu {
  display: flex;
  gap: 25px;
  transition: 0.3s;
}

.nav-menu a {
  text-decoration: none;
  font-size: 14px;
  color: #020617;
  transition: 0.3s;
}

.nav-menu a:hover {
  color: #193cb8;
}

/* TOGGLE BUTTON */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* ================= MOBILE ================= */
@media (max-width: 992px) {
  .nav-menu {
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    display: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  }

  .nav-menu.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}



/*HERO SECTION*/





/* HERO */
.hero {
  /* background:
    linear-gradient(rgba(2, 6, 23, 0.85), rgba(2, 6, 23, 0.85)),
    url("../images/9a0dcb6cdb512e1b15149b4923ffbed1dfe92a74.jpg") center/cover no-repeat; */
  color: #fff;
  padding: 120px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 42px;
  line-height: 1.3;
  margin-bottom: 20px;
}

.hero p {
  max-width: 800px;
  margin: auto;
  color: #e2e8f0;
  font-size: 16px;
}

.hero-buttons {
  margin-top: 35px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

 .btn {
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary {
  background: #1d4ed8;
  color: #fff;
}

.btn-primary:hover {
  background: #0f3bb8;
}

.btn-light {
  background: #fff;
  color: #000;
}

.btn-light:hover {
  background: #e5e7eb;
}





/* =============================================== */

.hero-slider {
  position: relative;
  height: 70vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(2,6,23,0.75);
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-content {
  position: relative;
  width: 70%;
  padding: 20px;
}

.hero-buttons {
  margin-top: 25px;
}

.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background:transparent;
  border: none;
  color: white;
  font-size: 28px;
  padding: 10px 16px;
  cursor: pointer;
}

.prev { left: 20px; }
.next { right: 20px; }

@media(max-width:768px){
  .hero-content h1{font-size:26px}
}


/* ====================================== */



/* BREAKTHROUGH */



.breakthrough {
  background: #f8fafc;
  padding: 10px;
}

.bt-container {
  width: 90%;
  margin: auto;
}

.bt-header {
  text-align: center;
  margin-bottom: 60px;
}

.bt-header h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.bt-header p {
  color: #475569;
  text-align: justify;
}

/* GRID */
.bt-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* LEFT */
.bt-left {
  background: linear-gradient(135deg, #1d4ed8, #0ea5e9);
  color: #fff;
  padding: 35px;
  border-radius: 16px;
}

.bt-icon img {
  width: 40px;
  margin-bottom: 20px;
}

.bt-left h3 {
  margin-bottom: 12px;
}

.bt-left p {
  line-height: 1.6;
  margin-bottom: 25px;
}

.bt-stats {
  display: flex;
  gap: 20px;
}

.stat {
  background: rgba(255,255,255,0.15);
  padding: 14px 18px;
  border-radius: 10px;
}

.stat strong {
  display: block;
}

/* RIGHT */
.bt-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bt-card {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  display: flex;
  gap: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  align-items: flex-start;
}

.card-icon img {
  width: 40px;
}

.bt-card h4 {
  margin-bottom: 6px;
}

.bt-card p {
  color: #475569;
  font-size: 14px;
}

/* BUTTON */


.bt_btn {
  margin-top: 35px;
}

.bt_btn_link {
  display: inline-block;
  padding: 14px 36px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, #00bcd4, #4caf50);
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.35s ease;
  box-shadow: 0 10px 25px rgba(0, 188, 212, 0.3);
}

/* Hover */
.bt_btn_link:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 188, 212, 0.45);
}

/* Mobile responsive */
@media (max-width: 768px) {

  .hero-slider {
    position: relative;
    height: 55vh;
  }

  .bt_btn {
    text-align: center;
  }

  .bt_btn_link {
    width: 100%;
    max-width: 320px;
    padding: 14px 20px;
    font-size: 15px;
  }
}


.bt-btn a {
  background: #193cb8;
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
}

/* 🔥 RESPONSIVE */
@media (max-width: 992px) {
  .hero h1 { font-size: 32px; }
  .bt-content { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero { padding: 90px 15px; }
  .hero h1 { font-size: 26px; }
  .hero p { font-size: 14px; }
  .bt-left, .bt-card { padding: 20px; }
}








/* ================= OUR EXPERTISE ================= */







/* SECTION */
.expertise {
  padding: 100px 0;
  background: #ffffff;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.section-header p {
  color: #64748b;
}

/* GRID */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* CARD */
.expertise-card {
  perspective: 1200px;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 260px;
  transition: transform 0.7s ease;
  transform-style: preserve-3d;
}

.expertise-card:hover .card-inner {
  transform: rotateY(180deg);
}

/* FRONT & BACK */
.card-front,
.card-back {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  backface-visibility: hidden;
  overflow: hidden;
}

/* FRONT */
.card-front {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
}

/* IMAGE */
.card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TITLE */
.card-front h4 {
  text-align: center;
  padding: 14px;
  font-size: 18px;
  font-weight: 600;
}

/* BACK */
.card-back {
  background: linear-gradient(135deg, #0f6cf1, #00a6c8);
  color: #ffffff;
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  text-align: center;
}

.card-back p {
  font-size: 15px;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .expertise {
    padding: 70px 0;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
  }
}



/* =================== */



.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 34px;
  margin-bottom: 10px;
  font-weight: 600;
}

.section-header p {
  color: #64748b;
}








/* ================= CTA ================= */
.breakthrough-cta {
  background: linear-gradient(to right, #0976f5, #008ec0);
  color: #fff;
  padding: 110px 0;
  text-align: center;
}

.cta-content h2 {
  font-size: 38px;
  margin-bottom: 15px;
}

.cta-content p {
  max-width: 700px;
  margin: 0 auto 35px;
  line-height: 1.6;
}

/* BUTTONS */
.btn {
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
}

.btn-light {
  background: #fff;
  color: #193cb8;
}

.btn-primary {
  background: #193cb8;
  color: #fff;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {

  
  .cta-content h2 {
    font-size: 30px;
  }
}

/* Mobile */
@media (max-width: 600px) {

  
  .cta-content h2 {
    font-size: 24px;
  }
  .cta-content p {
    font-size: 14px;
  }
}







/* FOOTER */
.footer {
  background: #0f172b;
  color: #cbd5f5;
  padding-top: 80px;
}

/* CONTAINER */
.container {
  width: 100% !important;
  margin: auto;
}

/* GRID LAYOUT */
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap;
  padding-bottom: 50px;
}

/* COLUMNS */
.footer-col {
  flex: 1;
  width: 100%;
}

/* LOGO */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.logo-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.footer-brand {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
}

/* TEXT */
.footer-col p {
  color: #94a3b8;
  line-height: 1.6;
  font-size: 14px;
  max-width: 320px;
}

/* HEADINGS */
.footer-col h4 {
  color: #ffffff;
  margin-bottom: 15px;
  font-size: 17px;
}

/* LINKS */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-col ul li a {
  color: #94a3b8;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #ffffff;
  padding-left: 4px;
}

/* BOTTOM BAR */
.footer-bottom {
  border-top: 1px solid #1e293b;
  text-align: center;
  padding: 22px 0;
  color: #64748b;
  font-size: 13px;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
  .footer-grid {
    gap: 40px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .footer-grid {
    flex-direction: column;
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-col p {
    margin: auto;
  }
}







/* ========== */


.footer-bottom-bar {
  border-top: 1px solid #1e293b;
  padding: 18px 0;
  background: #0f172b;
  color: #94a3b8;
  font-size: 14px;
}

/* FLEX ALIGNMENT */
.footer-bottom-flex {
  display: flex;
  justify-content: space-between; /* LEFT & RIGHT */
  align-items: center;
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* TEXT RESET */
.footer-bottom-flex p {
  margin: 0;
}

/* DESIGNER LINK */
.designer a {
  color: #ffea00ea;
  font-weight: bold;
  text-decoration: none;
}

.designer a:hover {
  text-decoration: underline;
}

/* 📱 MOBILE */
@media (max-width: 768px) {
  .footer-bottom-flex {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}



/* ======================== */


/* Floating Contact Buttons */
.floating-contact {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    color: #fff;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.float-btn:hover {
    transform: scale(1.1);
}

/* Individual colors */
.float-btn.call {
    background: #0d6efd;
}

.float-btn.whatsapp {
    background: #25D366;
}

.float-btn.email {
    background: #dc3545;
}

/* Mobile Optimization */
@media (max-width: 576px) {
    .float-btn {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
}


/* ======================= */



/* ================= GOOGLE MAP ================= */
.map-section {
  width: 100%;
  padding: 60px 20px;
  background: #ffffff;
}

.map-container {
  max-width: 1200px;
  margin: auto;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Responsive iframe */
.map-container iframe {
  width: 100%;
  height: 450px;
  border: 0;
}

/* Mobile view */
@media (max-width: 768px) {
  .map-container iframe {
    height: 300px;
  }
}
/* ================= CONTACT SECTION ================= */


.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 45px;
}

.footer-brand {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}

.footer-social {
  margin-top: 15px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-right: 10px;
  border-radius: 50%;
  background: #1e293b;
  color: #fff;
  font-size: 16px;
  transition: 0.3s ease;
  text-decoration: none;
}

.footer-social a:hover {
  transform: translateY(-3px);
}

/* LinkedIn Color */
.footer-social a:nth-child(1):hover {
  background: #0077b5;
}

/* YouTube Color */
.footer-social a:nth-child(2):hover {
  background: #ff0000;
}



