/* styles.css - Blue & White modern theme */

/* RESET */
* { margin:0; padding:0; box-sizing:border-box; font-family:"Poppins",sans-serif; }
html,body { height:100%; }

body {
  background:#f4f7fc;
  color:#111827;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

/* Header */
.header {
  background:#fff;
  padding:18px 28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  border-bottom:3px solid #e6ecf9;
  position:sticky;
  top:0;
  z-index:1000;
}

.logo {
  display:flex;
  align-items:center;
  gap:10px;
}

.logo img { height:40px; width:auto; display:block; }
.brand { font-size:20px; font-weight:700; color:#0a4bff; }

.nav {
  display:flex;
  gap:18px;
  align-items:center;
}

.nav a {
  text-decoration:none;
  color:#111827;
  font-weight:500;
  padding:6px 4px;
}

.nav a.active {
  color:#0a4bff;
  border-bottom:2px solid #0a4bff;
  padding-bottom:4px;
}

.btn-primary {
  background:#0a4bff;
  color:#fff !important;
  padding:9px 16px;
  border-radius:8px;
  text-decoration:none;
  font-weight:600;
}

/* Hamburger */
.menu-icon {
  font-size:28px;
  cursor:pointer;
  color:#0a4bff;
  display:none;
  background:transparent;
  border:none;
}

/* Mobile menu */
.mobile-menu {
  display:none;
  flex-direction:column;
  gap:8px;
  background:#fff;
  border-top:1px solid #e6ecf9;
  padding:14px 18px;
  position:relative;
}

.mobile-menu a {
  padding:12px 6px;
  border-radius:6px;
  text-decoration:none;
  color:#111827;
  font-weight:600;
}

.mobile-menu.show { display:flex; }

/* HERO */
.hero-simple {
  width: 100%;
  height: 70vh;
background: url('ot.webp') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

.hero-simple .hero-content h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.hero-simple .hero-content p {
  font-size: 18px;
  margin-bottom: 20px;
}

.hero-simple .btn-primary {
  background-color: #0a4bff;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 6px;
}

.hero-simple .btn-primary:hover {
  background-color: #0536b3;
}

/* Mobile Responsive */
@media(max-width: 600px) {
  .hero-simple {
    height: 50vh;
  }
  .hero-simple .hero-content h1 {
    font-size: 24px;
  }
  .hero-simple .hero-content p {
    font-size: 16px;
  }
}
















/* Page header */
.page-header {
  text-align:center;
  padding:70px 20px;
  background:#eaf1ff;
  color:#0a4bff;
}
/* SECTION */
.services-section {
  padding: 80px 20px;
  background: #f8fafc;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* HEADINGS */
.kicker {
  display: inline-block;
  color: #2563eb;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 40px;
}

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

/* CARD */
.service-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px 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 30px 60px rgba(15, 23, 42, 0.15);
}

/* IMAGE */
.service-image {
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover img {
  transform: scale(1.08);
}

/* CONTENT */
.service-content {
  padding: 24px;
}

.service-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 12px;
}

.service-content p {
  color: #475569;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* LINK */
.service-content a {
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
}

.service-content a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .section-title {
    font-size: 1.7rem;
  }
}


/* Testimonials */
.testimonials {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:18px;
}

.testimonial {
  text-align:center;
  padding:20px;
  border-radius:12px;
  background:#fff;
  box-shadow:0 6px 18px rgba(11,23,70,0.06);
}

.testimonial img {
  width:84px;
  height:84px;
  border-radius:50%;
  object-fit:cover;
  margin:0 auto 12px;
}

/* Forms */
.form {
  background:#fff;
  padding:22px;
  border-radius:12px;
  box-shadow:0 6px 18px rgba(11,23,70,0.06);
}

.form input, .form textarea, .form select {
  width:100%;
  padding:12px;
  margin-top:10px;
  border:1px solid #e6ecf9;
  border-radius:8px;
  font-size:15px;
}

/* Footer */
.footer {
  background:#0a4bff;
  color:#fff;
  padding:26px 20px;
  text-align:center;
}

/* Small UI touches */
.kicker { font-size:13px; color:#6b7280; margin-bottom:8px; display:block; }

/* Responsive */
@media (max-width: 920px) {
  .nav { display:none; }
  .menu-icon { display:block; }
  .hero h1 { font-size:32px; }
  .hero { height:54vh; }
}

@media (max-width: 520px) {
  .hero h1 { font-size:28px; }
  .container { padding:20px; }
}



/* ================================
   MOBILE RESPONSIVE – PHONE VIEW
   ================================ */

@media(max-width: 600px) {

    /* BODY */
    body {
        font-size: 16px;
    }

    /* HEADER */
    header {
        padding: 14px 20px;
    }

    .logo {
        font-size: 22px;
    }

    .menu-icon {
        font-size: 32px;
    }

    /* NAV DESKTOP HIDDEN */
    nav {
        display: none !important;
    }

    /* MOBILE MENU */
    .mobile-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #fff;
        padding: 10px 20px;
        border-top: 2px solid #e1e6f9;
        box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    }

    .mobile-menu.show {
        display: flex !important;
    }

    .mobile-menu a {
        padding: 15px 0;
        border-bottom: 1px solid #f0f2ff;
        font-size: 17px;
        color: #0a0a0a;
    }

    .mobile-menu a:last-child {
        border-bottom: none;
    }

    /* HERO */
    .hero {
        height: 55vh;
        padding: 40px 20px;
    }

    .hero h1 {
        font-size: 28px;
        line-height: 1.3;
    }

    .hero p {
        font-size: 15px;
    }

    .hero .btn-primary {
        padding: 10px 18px;
        font-size: 15px;
    }

    /* PAGE HEADER */
    .page-header {
        padding: 45px 15px;
    }

    .page-header h1 {
        font-size: 26px;
    }

    /* CONTENT SECTION */
    .content-section {
        padding: 30px 18px;
    }

    .content-section h2 {
        font-size: 22px;
    }

    /* SERVICE GRID */
    .service-grid {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .service-card {
        padding: 22px;
    }

    /* TESTIMONIAL CARDS */
    .testimonials-container {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .testimonial-card {
        padding: 22px;
    }

    .testimonial-card img {
        width: 80px;
        height: 80px;
    }

    /* CONTACT FORM */
    form {
        width: 100%;
        margin: 0;
        padding: 25px;
        border-radius: 10px;
    }

    form input,
    form textarea {
        padding: 12px;
        font-size: 15px;
    }

    /* FOOTER */
    footer {
        padding: 18px;
        font-size: 14px;
        text-align: center;
    }
}




/* the border section */

/* --- Layout --- */
.success-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 100px 80px;
  background: linear-gradient(to right, #f5f7ff, #ffecec);
  gap: 60px;
}

.success-left h2 {
  font-size: 48px;
  color: #1c3faa;
  font-weight: 700;
}

.success-left p {
  font-size: 28px;
  margin-top: 20px;
  line-height: 1.4;
}

.highlight {
  color: #e63946;
  font-weight: 700;
}

/* --- Testimonial Card --- */
.success-right {
  width: 50%;
}

.testimonial-slider {
  position: relative;
  width: 100%;
}

.testimonial {
  background: white;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  opacity: 0;
  transform: translateY(20px);
  transition: 0.5s ease;
  position: absolute;
}

.testimonial.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
}

/* --- Profile Section --- */
.profile {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.circle {
  width: 70px;
  height: 70px;
  background: #e8b800;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 35px;
  font-weight: 700;
}

.profile h3 {
  font-size: 24px;
  color: #1a3fa6;
  margin: 0;
}

.profile span {
  font-size: 18px;
  color: #000;
  opacity: 0.7;
}

/* --- Message --- */
.message {
  font-size: 20px;
  line-height: 1.6;
}

/* --- Dots --- */
.dots {
  margin-top: 20px;
  text-align: center;
}

.dot {
  width: 14px;
  height: 14px;
  display: inline-block;
  background: #d0d0d0;
  border-radius: 50%;
  margin: 0 6px;
  cursor: pointer;
  transition: 0.3s;
}

.dot.active {
  background: #1c3faa;
  transform: scale(1.2);
}


.profile-photo {
  width: 70px;  
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  background: #eee;
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* crops and centers the image perfectly */
}




/* --- Responsive --- */
@media (max-width: 900px) {
  .success-section {
    flex-direction: column;
    text-align: center;
  }
  .success-right {
    width: 100%;
  }
}





/* why choose us codes */


/* Section background */
.why-choose-section {
  position: relative;
  padding: 90px 0 120px;
  background: #eaf6ff; /* subtle blue tint */
}

/* Center container */
.container {
  width: 85%;
  max-width: 1400px;
  margin: auto;
  text-align: center;
}

/* Title */
.title {
  font-size: 42px;
  color: #1c3faa;
  font-weight: 700;
  margin-bottom: 15px;
}

/* Subtitle text */
.subtitle {
  font-size: 18px;
  color: #333;
  max-width: 900px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

/* Stats row */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 120px;
  margin-bottom: 70px;
}

/* Individual stat box */
.stat-box {
  text-align: center;
}

.stat-icon {
  width: 120px;
  height: auto;
  margin-bottom: 15px;
}

.stat-box h3 {
  font-size: 40px;
  color: #1c3faa;
  margin: 10px 0;
  font-weight: 700;
}

.stat-box p {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  opacity: 0.9;
}

/* Logo Row */
.logo-row {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.logo-box {
  background: white;
  padding: 30px 40px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.logo-box img {
  height: 60px;
}

/* Background shapes */
.shape {
  position: absolute;
  width: 260px;
  height: 260px;
  background: #d7ecff;
  border-radius: 35%;
  z-index: 0;
}

.shape-left {
  top: 40%;
  left: 0;
  border-bottom-right-radius: 120px;
  border-top-right-radius: 120px;
}

.shape-right {
  top: 10%;
  right: 0;
  background: #ff6060;
  border-bottom-left-radius: 200px;
  border-top-left-radius: 200px;
}

/* Bring content above shapes */
.container {
  position: relative;
  z-index: 2;
}

/* Responsive */
@media (max-width: 900px) {
  .stats-row {
    flex-direction: column;
    gap: 40px;
  }
  .logo-row {
    flex-direction: column;
  }
}



/* Section for web codes  */
.web-stories {
  text-align: center;
  padding: 60px 0 90px;
}

.ws-title {
  font-size: 42px;
  font-weight: 700;
  color: #1c3faa;
  margin-bottom: 10px;
}

.ws-subtitle {
  font-size: 22px;
  font-weight: 500;
  color: #000;
  margin-bottom: 40px;
}

.ws-subtitle span {
  color: #e63946;
  font-weight: 700;
}

/* Slider Container */
.ws-slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

.ws-slider {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
}

.ws-card {
  min-width: 260px;
  height: 430px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  background: #ddd;
  cursor: pointer;
}

.ws-card img {
  
  width: 300px;
  height: 500px;
  object-fit: cover;
  border-radius: 16px;
}







/* Button */
.ws-btn-box {
  text-align: center;
  margin-top: 40px;
}

.ws-btn {
  padding: 14px 35px;
  background: #1c3faa;
  color: white;
  font-size: 18px;
  border-radius: 10px;
  font-weight: 600;
  display: inline-block;
  text-decoration: none;
  transition: 0.3s;
}

.ws-btn:hover {
  background: #163283;
}

/* Responsive */
@media (max-width: 768px) {
  .ws-card {
    min-width: 200px;
    height: 330px;
  }
}






/* Wrapper */
.migration-wrapper {
  width: 100%;
  padding: 80px 5%;
  background: linear-gradient(90deg, #fff 0%, #f6f7ff 100%);
  font-family: 'Inter', sans-serif;
}

/* Container */
.migration-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1400px;
  margin: auto;
}

/* Left Illustration */
.migration-illustration img {
  width: 480px;
  max-width: 100%;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/* Right Content */
.migration-content {
  max-width: 650px;
}

.migration-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1b2a4e;
}

.migration-subtitle {
  font-size: 34px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
}

.migration-subtitle span {
  color: #eb2b3c;
}

.migration-text {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #3d3d3d;
}

/* Visa Buttons */
.visa-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

.visa-btn {
  border: none;
  background: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  padding: 14px 22px;
  border-radius: 12px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.25s ease;
}

.visa-btn:hover {
  background: #2447f9;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.16);
}

/* Know More Button */
.know-more-btn {
  padding: 16px 32px;
  background: transparent;
  border: 2px solid #2447f9;
  color: #2447f9;
  border-radius: 12px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.25s ease;
}

.know-more-btn:hover {
  background: #2447f9;
  color: #fff;
  transform: translateY(-4px);
}

/* Responsiveness */


@media (max-width: 992px) {
  .migration-container {
    flex-direction: column;
    text-align: center;
  }

  /* Keep buttons small on mobile */
  .visa-btn {
    width: auto;      /* ← restores original size */
    min-width: 180px; /* ← optional: keeps consistent size */
    justify-content: center;
  }
}




/* Testimonials Section */
.testimonials-section {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: bold;
  color: #333;
}


/* adjust height to fit your cards 


.testimonials-wrapper {
  position: relative;   
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  height: 320px; 
}

*/

.testimonials-wrapper {
  position: relative;
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  min-height: 550px; /* enough to fit larger images */
}





.testimonial-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.5s ease;
}

.testimonial-card.active {
  opacity: 1;
  transform: scale(1);
  z-index: 10;  /* make sure active card is on top */
}

















.client-photo img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

.client-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 6px 0;
}

.client-role {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 8px;
}

.stars {
  color: #ffc107;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.review-text {
  font-size: 1rem;
  line-height: 1.5;
  color: #444;
  
}

.review-link {
  font-size: 0.9rem;
  color: white;
  text-decoration: none;
  border: 1px solid black;
  width: 40%;
  padding: 10px 15px;
  background-color: black;
  font-weight: bold;
  
}

.review-link:hover {
  text-decoration: underline;
  color: #0077ff;
  background-color: white;
}

.controls {
  margin-top: 20px;
}

.controls button {
  background: #0077ff;
  color: white;
  border: none;
  padding: 10px 15px;
  font-size: 1.2rem;
  cursor: pointer;
  border-radius: 6px;
  margin: 0 6px;
  transition: background 0.3s ease;
}

.controls button:hover {
  background: #005fcc;
}

@media (min-width: 768px) {
  .testimonials-wrapper {
    flex-wrap: nowrap;
  }
}




.faq-section {
  max-width: 780px;
  margin: 60px auto;
  padding: 20px;
}

.faq-title {
  font-size: 36px;
  text-align: center;
  color: #0b5dd7;
  margin-bottom: 10px;
}

.faq-subtitle {
  text-align: center;
  color: #5f6b7b;
  margin-bottom: 40px;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  padding: 0 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  overflow: hidden;
  transition: 0.3s ease;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 0;
  font-size: 18px;
  text-align: left;
  color: #0a2850;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question .icon {
  font-size: 22px;
  transition: transform 0.3s ease;
}

.faq-item.active .icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  color: #4d5766;
  padding-bottom: 0;
}

.faq-item.active .faq-answer {
  padding-bottom: 18px;
}

.faq-answer p {
  margin: 0;
  padding: 0 0 10px 0;
}




/*contact codes */


/* Hero Section */
.contact-hero {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #0b5dd7, #003b88);
  color: white;
}

.contact-hero h1 {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
}

.contact-hero p {
  margin-top: 12px;
  font-size: 18px;
  opacity: 0.9;
}

/* Wrapper */
.contact-wrapper {
  max-width: 1200px;
  margin: 40px auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 20px;
}

@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

/* Contact Info */
.contact-info h2 {
  font-size: 26px;
  color: #003b88;
  margin-bottom: 4px;
}

.tagline {
  color: #555;
  margin-bottom: 18px;
}

.info-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 18px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.info-card h3 {
  margin: 0 0 8px 0;
  color: #0b5dd7;
}

/* Form Section */
.contact-form h2 {
  font-size: 26px;
  color: #003b88;
}

.contact-form form {
  margin-top: 12px;
}

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

.input-group.half {
  width: 49%;
  display: inline-block;
}

@media (max-width: 600px) {
  .input-group.half {
    width: 100%;
  }
}

input, textarea {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid #ccd6e3;
  font-size: 16px;
  outline: none;
  background: #fff;
}

input:focus, textarea:focus {
  border-color: #0b5dd7;
  box-shadow: 0 0 4px rgba(11,93,215,0.3);
}

.submit-btn {
  width: 100%;
  padding: 16px;
  background: #0b5dd7;
  border: none;
  color: white;
  font-size: 18px;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #003b88;
}

/* Map */
.map-section {
  text-align: center;
  padding: 40px 20px;
}

.map-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #003b88;
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Footer */
.footer {
  text-align: center;
  padding: 20px;
  background: #0b5dd7;
  color: white;
  font-size: 14px;
  margin-top: 40px;
}



/**/

.consult-container {
  width: 100%;
  padding: 40px 20px;
  max-width: 1250px;
  margin: auto;
  font-family: "Inter", sans-serif;
}

.consult-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 25px;
}

/* CARD */
.card {
  background: #fff;
  padding: 22px 25px;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.07);
}

.card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.card ul {
  margin-top: 10px;
  padding-left: 18px;
}

.card p {
  line-height: 1.6;
  margin-top: 10px;
}

/* FORM */
.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 12px;
  margin-top: 12px;
  border-radius: 8px;
  border: 1px solid #ccd1d7;
  font-size: 15px;
}

.btn-primary {
  width: 100%;
  padding: 14px;
  background: #0359ff;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 15px;
}

.btn-primary:hover {
  background: #0044cc;
}

/* ------------- FIXED MOBILE RESPONSIVE ------------- */
@media (max-width: 900px) {
  .consult-grid {
    grid-template-columns: 1fr;     /* STACK EVERYTHING */
  }

  aside {
    order: 2;                        /* FORM GOES UNDER */
  }

  .consult-grid > div {
    order: 1;                        /* TEXT GOES FIRST */
  }
}

/* EXTRA SMALL PHONES */
@media (max-width: 480px) {
  .card {
    padding: 18px 20px;
  }

  .card h3 {
    font-size: 20px;
  }
}




.footer {
  background: #0b5dd7;
  color: #fff;
  padding: 40px 20px 20px 20px;
  font-family: "Inter", sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer h3 {
  margin-bottom: 12px;
  font-size: 20px;
  color: #fff;
}

.footer p, .footer a {
  color: #f0f0f0;
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 14px;
  display: block;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-map iframe {
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  width: 100%;
  max-width: 350px;
  height: 220px;
}

/* Footer Links Column */
.footer-links a {
  margin-bottom: 6px;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 13px;
  opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-map iframe {
    max-width: 100%;
  }

  .footer-links, .footer-info {
    margin-top: 20px;
  }
}



/*the best hereo codes */


:root{
  --bg1:#0f172a;
  --bg2:#1e293b;
  --ink:#f8fafc;
  --muted:#cbd5e1;
  --accent:#e11d48;
}



    /* Centered max-width container */
    .promo-container{
      max-width: 1120px;
      margin: 0 auto;
      display: grid;
      gap: clamp(1.25rem, 2.5vw, 2rem);
    }

    /* Two-column on larger screens */
    @media (min-width: 900px){
      .promo-container{
        grid-template-columns: 1.1fr 1fr;
        align-items: center;
      }
    }

    /* Copy block */
    .promo-copy{
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      padding: clamp(1rem, 2.5vw, 2rem);
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.25);

    }
    .promo-copy h1{
      margin: 0 0 .6rem 0;
      line-height: 1.1;
      font-size: clamp(1.8rem, 3.5vw, 3rem);
    }
    .promo-copy p{
      margin: 0 0 1rem 0;
      color: var(--muted);
      font-size: clamp(1rem, 1.4vw, 1.125rem);
    }
    .promo-actions{
      margin-top: .75rem;
      display: flex;
      gap: .75rem;
      flex-wrap: wrap;
    }
    .btn{
      appearance: none;
      border: 0;
      border-radius: 999px;
      padding: .75rem 1.1rem;
      font-weight: 600;
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      transition: transform .12s ease, box-shadow .12s ease, background .2s ease;
      box-shadow: 0 6px 16px rgba(0,0,0,.25);
    }
    .btn-primary{ background: var(--accent); color: white; }
    .btn-primary:hover{ transform: translateY(-1px); box-shadow: 0 10px 22px rgba(0,0,0,.3); }
    .btn-ghost{ background: transparent; color: var(--ink); border: 1px solid rgba(255,255,255,.2); }
    .btn-ghost:hover{ background: rgba(255,255,255,.06); transform: translateY(-1px); }

    /* Video card */
    .promo-media{
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 20px;
      padding: clamp(.75rem, 1.5vw, 1rem);
      box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    }
    .video-frame{
      position: relative;
      width: 100%;
      border-radius: 14px;
      overflow: hidden;
      background: #000;
      /* use modern aspect-ratio */
      aspect-ratio: 16 / 9;
    }
    .video-frame iframe{
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }
    /* Fallback for older browsers without aspect-ratio */
    @supports not (aspect-ratio: 16/9){
      .video-frame{ height: 0; padding-bottom: 56.25%; }
      .video-frame iframe{ position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
    }



    /*about consultants codes*/

.consultants-section {
  padding: 90px 20px;
  background: #ffffff;
}

.consultants-section h2 {
  font-size: 2.2rem;
  margin-bottom: 50px;
  color: #0f172a;
}

.consultants-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
}

.consultant-card {
  background: #f8fafc;
  border-radius: 18px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  transition: transform 0.3s ease;
}

.consultant-card:hover {
  transform: translateY(-8px);
}

.consultant-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 18px;
}

.consultant-card h3 {
  font-size: 1.25rem;
  margin-bottom: 6px;
}

.designation {
  font-size: 0.9rem;
  color: #2563eb;
  font-weight: 600;
  margin-bottom: 10px;
}

.stars {
  color: #fbbf24;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.bio {
  font-size: 0.95rem;
  color: #475569;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* REVIEWS */
.review-slider {
  position: relative;
  min-height: 60px;
}

.review {
  display: none;
  font-style: italic;
  color: #334155;
}

.review.active {
  display: block;
}



.verify-btn {
  margin-top: 10px;
  padding: 10px 18px;
  background: #2563eb;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.verify-btn:hover {
  background: #1e40af;
}














