/* ==============================
   GLOBAL VARIABLES
================================ */
:root {
  --gt-primary: #0F6B6F;
  --gt-primary-dark: #0C585B;
  --gt-primary-light: #1A8A8F;

  --gt-text-dark: #1f2933;
  --gt-bg-light: #f8f9fa;
  --gt-white: #ffffff;
}

/* ==============================
   BASE STYLES
================================ */
body {
  font-family: "Inter", sans-serif;
  color: var(--gt-text-dark);
}

a {
  color: var(--gt-primary);
  text-decoration: none;
}

a:hover {
  color: var(--gt-primary-dark);
}

/* ==============================
   UTILITIES
================================ */
.text-gt {
  color: var(--gt-primary) !important;
}

.bg-gt {
  background-color: var(--gt-primary) !important;
}

.border-gt {
  border-color: var(--gt-primary) !important;
}

.icon-brand {
  color: var(--gt-primary);
}

/* ==============================
   NAVBAR
================================ */
.navbar {
  background-color: var(--gt-primary);
}

.navbar .nav-link {
  color: var(--gt-white);
  font-weight: 500;
}

.navbar .nav-link:hover {
  color: #d6f2f3;
}

/* ==============================
   BUTTONS
================================ */
.btn-primary,
.btn-gt {
  background-color: var(--gt-primary);
  border-color: var(--gt-primary);
  color: var(--gt-white);
  font-weight: 600;
}

.btn-primary:hover,
.btn-gt:hover {
  background-color: var(--gt-primary-dark);
  border-color: var(--gt-primary-dark);
}

/* ==============================
   HERO SECTION
================================ */
.gt-hero {
  min-height: 100vh;
  padding: 100px 0;
  background:
    linear-gradient(
      to right,
      rgba(15, 107, 111, 0.95),
      rgba(15, 107, 111, 0.85)
    ),
    url("https://www.cdc.gov/yellow-book/media/images/2025/02/8.5-Study-Abroad-and-Other-International-Student-Travel.jpg") center / cover no-repeat;
}

.gt-hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--gt-white);
}

.gt-hero-text {
  font-size: 1.1rem;
  color: var(--gt-white);
  opacity: 0.95;
}

/* ==============================
   BADGES & LISTS
================================ */
.gt-badge {
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--gt-white);
}

.gt-list {
  list-style: none;
  padding: 0;
  color: var(--gt-white);
}

.gt-list li {
  margin-bottom: 10px;
}

.gt-list i {
  color: #9ff3f5;
  margin-right: 8px;
}

/* ==============================
   FORM CARD
================================ */
.gt-form-card {
  background: var(--gt-white);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.gt-form-card .form-label {
  font-weight: 500;
}

.gt-form-card .form-control,
.gt-form-card .form-select {
  border-radius: 6px;
}

/* ==============================
   STATS SECTION
================================ */
.gt-stats {
  background: #f9fbfc;
}

.gt-stat i {
  font-size: 2rem;
  color: var(--gt-primary);
  margin-bottom: 10px;
}

.gt-stat h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #0b2c5d;
}

/* ==============================
   SERVICES
================================ */
.gt-services {
  background: #ffffff;
}

.gt-service-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gt-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.1);
}

.gt-service-card .icon {
  width: 48px;
  height: 48px;
  background: rgba(15, 107, 111, 0.1);
  color: var(--gt-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.gt-service-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

/* ==============================
   PRO SERVICES SLIDER
================================ */
.gt-services-pro {
  background: #ffffff;
}

.gt-service-pro {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 30px;
  height: 100%;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gt-service-pro:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.gt-service-pro .icon {
  width: 56px;
  height: 56px;
  background: rgba(15, 107, 111, 0.1);
  color: var(--gt-primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.gt-service-pro h4 {
  font-weight: 700;
  margin-bottom: 12px;
}

.gt-service-pro p {
  color: #555;
  margin-bottom: 20px;
}


/* =========================================
   UK VISA SERVICES – IMAGE + PARALLAX
========================================= */

.gt-services-dynamic {
  position: relative;
  padding: 120px 0;
  /* background:
    linear-gradient(
      rgba(15, 107, 111, 0.88),
      rgba(15, 107, 111, 0.82)
    ),
    url("https://img.freepik.com/free-vector/illustration-uk-flag_53876-18166.jpg?semt=ais_hybrid&w=740&q=80") center / cover no-repeat; */
  background-attachment: fixed;
  overflow: hidden;
  background:  
    linear-gradient(
      rgba(15, 107, 111, 0.88),
      rgba(15, 107, 111, 0.82)
    ) ;
}

/* Mobile image swap */
@media (max-width: 768px) {
  .gt-services-dynamic {
    background:
      linear-gradient(
        rgba(15, 107, 111, 0.9),
        rgba(15, 107, 111, 0.85)
      ),
      url("../images/uk-services-mobile.jpg") center / cover no-repeat;
    background-attachment: scroll;
  }
}

/* Soft highlight texture */
.gt-services-dynamic::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      600px circle at 15% 10%,
      rgba(255,255,255,0.12),
      transparent 40%
    ),
    radial-gradient(
      500px circle at 85% 30%,
      rgba(255,255,255,0.08),
      transparent 45%
    );
  pointer-events: none;
}

/* Keep content above overlays */
.gt-services-dynamic > .container {
  position: relative;
  z-index: 2;
}

/* GLASS ASIDE */
.gt-service-menu {
  position: sticky;
  top: 120px;
  border-radius: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* SERVICE BUTTONS */
.service-btn {
  width: 100%;
  border: none;
  background: transparent;
  padding: 14px 16px;
  border-radius: 12px;
  text-align: left;
  font-weight: 600;
  color: #222;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.service-btn i {
  color: var(--gt-primary);
  font-size: 1.2rem;
}

.service-btn:hover,
.service-btn.active {
  background: rgba(15, 107, 111, 0.16);
  color: var(--gt-primary);
}

/* CONTENT CARD */
.gt-service-content {
  background: #ffffff;
  border-radius: 20px;
  padding: 46px;
  box-shadow:
    0 30px 70px rgba(0,0,0,0.18),
    inset 0 0 0 1px rgba(15, 107, 111, 0.1);
}

/* PANELS */
.service-panel {
  display: none;
  animation: gtFadeUp 0.45s ease;
}

.service-panel.active {
  display: block;
}

@keyframes gtFadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE TWEAKS */
@media (max-width: 991px) {
  .gt-services-dynamic {
    padding: 60px 0;
  }

  .gt-service-menu {
    position: static;
    margin-bottom: 24px;
  }

  .gt-service-content {
    padding: 30px;
  }
}

/* ==============================
   WHY CHOOSE SECTION
================================ */
.gt-why-choose {
  background: #ffffff;
}

.gt-why-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.why-item i {
  font-size: 1.4rem;
  color: var(--gt-primary);
  margin-top: 2px;
}

.why-item h6 {
  font-weight: 600;
  margin-bottom: 4px;
}

.why-item p {
  margin-bottom: 0;
  color: #555;
}

/* Right Highlight Card */
.gt-why-highlight {
  background: linear-gradient(
    135deg,
    rgba(15, 107, 111, 0.08),
    rgba(15, 107, 111, 0.02)
  );
  border-radius: 18px;
  padding: 40px;
}

.gt-why-highlight h3 {
  font-weight: 700;
  margin-bottom: 12px;
}

.gt-why-highlight p {
  color: #555;
}

.gt-why-highlight ul {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.gt-why-highlight li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.gt-why-highlight i {
  color: var(--gt-primary);
}

/* Responsive */
@media (max-width: 991px) {
  .gt-why-highlight {
    padding: 30px;
    margin-top: 20px;
  }
}


/* =========================================
   OUR SIMPLE PROCESS – COMPLETE STYLES
========================================= */

.gt-process {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(
    180deg,
    #f7fbfc 0%,
    #ffffff 100%
  );
}

/* Section heading */
.gt-process h2 {
  margin-bottom: 10px;
}

.gt-process p {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* Steps wrapper */
.gt-process-steps {
  position: relative;
  margin-top: 50px;
}

/* Horizontal connector line (desktop only) */
.gt-process-line {
  position: absolute;
  top: 42px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: linear-gradient(
    to right,
    rgba(15, 107, 111, 0.25),
    rgba(15, 107, 111, 0.15),
    rgba(15, 107, 111, 0.25)
  );
  z-index: 0;
}

/* Individual step */
.gt-process-step {
  position: relative;
  z-index: 1;
  padding: 0 15px;
}

/* Icon circle */
.gt-process-step .icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 14px;
  background: var(--gt-primary);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 10px 25px rgba(15, 107, 111, 0.35);
  transition: transform 0.3s ease;
}

/* Hover effect */
.gt-process-step:hover .icon {
  transform: translateY(-6px);
}

/* Step title */
.gt-process-step h6 {
  font-weight: 600;
  margin-bottom: 6px;
}

/* Step description */
.gt-process-step p {
  font-size: 0.9rem;
  color: #666;
  max-width: 220px;
  margin: 0 auto;
}

/* Mobile adjustments */
@media (max-width: 991px) {
  .gt-process {
    padding: 60px 0;
  }

  .gt-process-line {
    display: none;
  }

  .gt-process-step {
    margin-bottom: 35px;
  }
}



/* ==============================
   TESTIMONIALS SLIDER
================================ */
.gt-testimonials {
  /* background: #ffffff; */
}

.gt-testimonial-card {
  /* background: #ffffff; */
  border: 1px solid #e5eced;
  border-radius: 16px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.gt-testimonial-card i.bi-quote {
  font-size: 2rem;
  color: #b8dede;
  margin-bottom: 10px;
}

.gt-testimonial-card p {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 24px;
}

/* User */
.gt-user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.avatar {
  width: 40px;
  height: 40px;
  background: #e6f3f3;
  color: var(--gt-primary);
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gt-user span {
  font-size: 0.8rem;
  color: #777;
}

/* Stars */
.stars i {
  color: #f4b400;
  font-size: 0.9rem;
}
.swiper {
  width: 100%;
  overflow: hidden;
}

.swiper-slide {
  height: auto;
}


/* Pagination */
.swiper-pagination-bullet {
  background: var(--gt-primary);
  opacity: 0.3;
  margin-top: 60px;
 
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

/* Responsive spacing */
@media (max-width: 768px) {
  .gt-testimonial-card {
    padding: 24px;
  }
}

/* ==============================
   FAQs SECTION
================================ */
.gt-faqs {
  background: #f7fbfc;
}

.gt-faq-accordion .accordion-item {
  border: none;
  border-radius: 14px;
  margin-bottom: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  overflow: hidden;
}

.gt-faq-accordion .accordion-button {
  font-weight: 600;
  padding: 18px 22px;
  background: #ffffff;
  color: #222;
}

.gt-faq-accordion .accordion-button:not(.collapsed) {
  background: rgba(15, 107, 111, 0.1);
  color: var(--gt-primary);
}

.gt-faq-accordion .accordion-button:focus {
  box-shadow: none;
}

.gt-faq-accordion .accordion-body {
  background: #ffffff;
  color: #555;
  padding: 18px 22px;
  line-height: 1.6;
}

/* Remove default icon */
.gt-faq-accordion .accordion-button::after {
  background-image: none;
  content: "+";
  font-size: 1.3rem;
  font-weight: 600;
  transform: none;
}

.gt-faq-accordion .accordion-button:not(.collapsed)::after {
  content: "−";
}

/* Mobile */
@media (max-width: 768px) {
  .gt-faq-accordion .accordion-button {
    padding: 16px 18px;
  }
}




/* ==============================
   FOOTER STYLES
================================ */
.gt-footer {
  background: linear-gradient(
    180deg,
    var(--gt-primary),
    var(--gt-primary-dark)
  );
  color: #ffffff;
  padding: 70px 0 30px;
}

/* Logo */
.footer-logo {
  max-width: 180px;
  margin-bottom: 15px;
}

/* Address & contact */
.footer-address {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #e0f4f4;
}

.footer-contact a {
  color: #ffffff;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

/* Titles */
.footer-title {
  font-weight: 700;
  margin-bottom: 15px;
}

/* Links */
.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.footer-links a {
  color: #e0f4f4;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Divider */
.footer-divider {
  border-color: rgba(255,255,255,0.25);
  margin: 40px 0;
}

/* Small text */
.footer-small {
  font-size: 0.85rem;
  color: #e0f4f4;
}

.footer-small a {
  color: #ffffff;
}

/* Social icons */
.footer-social a {
  color: #ffffff;
  font-size: 1.2rem;
  margin-left: 12px;
  transition: transform 0.3s ease;
}

.footer-social a:hover {
  transform: translateY(-3px);
}

/* Copyright */
.footer-copy {
  margin-top: 25px;
  font-size: 0.8rem;
  color: #d6eeee;
}

/* Mobile */
@media (max-width: 768px) {
  .footer-social {
    text-align: center;
    margin-top: 10px;
  }
}
