 * {
      font-family: 'Poppins', sans-serif;
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
  /* --- Topbar Styling --- */


/* --- Navbar Styling --- */
.navbar {
    background-color: #ffffff;
    padding: 0px 0;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 999;
}


.navbar-brand img {
    max-height: 60px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: #00247d !important;
    padding: 10px 18px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #cf142b !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #f4bc4f;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

/* --- Toggler Styling --- */
.navbar-toggler {
    border: none;
    background-color: #00247d;
    padding: 8px 10px;
    border-radius: 6px;
}


/* --- Responsive Adjustments --- */
@media (max-width: 576px) {
    .topbar .left,
    .topbar .right {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .navbar-nav .nav-link {
        padding: 10px 14px;
    }
}

  @media (max-width: 991.98px) {
    .navbar-nav {
      text-align: center;
    }

    .navbar-nav .nav-item {
      padding: 0.5rem 0;
    }
  }

/* hero section  */
.hero-section {
    background: linear-gradient(135deg, #00247d 45%, #ffffff 55%);
    padding: 30px 0;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

.hero-text h1 {
    font-size: 52px;
    font-weight: 800;
    color: #ffffff;
    animation: slideInDown 1s ease-out forwards;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-text p {
    font-size: 20px;
    margin-top: 20px;
    color: #ffffff;
    line-height: 1.7;
    animation: fadeInUp 1.3s ease-out forwards;
}

.changing-word {
    color: #f4bc4f;
    font-weight: 700;
}

.cta-buttons {
    margin-top: 30px;
    animation: fadeInUp 1.6s ease-out forwards;
}

.cta-buttons {
      display: grid;
      grid-template-columns: repeat(2, 150px);
      gap: 20px;
      justify-content: center;
    }

    .cta-buttons a {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 60px;
      color: white;
      font-weight: 600;
      text-decoration: none;
      border-radius: 4px;
      font-size: 18px;
      transition: 0.3s ease;
    }

    .cta-buttons a:nth-child(1) {
      background-color: #fbbc05; /* Yellow-orange (Study) */
      color: black;
    }

    .cta-buttons a:nth-child(2) {
      background-color: #6a1b9a; /* Purple (Migrate) */
    }

    .cta-buttons a:nth-child(3) {
      background-color: #0097a7; /* Teal (Work) */
    }

    .cta-buttons a:nth-child(4) {
      background-color: #7cb342; /* Green (Visit) */
    }

    .cta-buttons a:hover {
      transform: scale(1.05);
      opacity: 0.9;
    }

    @media (max-width: 500px) {
      .cta-buttons {
        grid-template-columns: 1fr;
      }
    }

.zoom-container img {
    max-width: 100%;
    border-radius: 20px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    animation: fadeInZoom 2s ease-out forwards;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);

}

.zoom-container img:hover {
    transform: scale(1.05);
}

/* --- Animations --- */
@keyframes slideInDown {
    0% {
        opacity: 0;
        transform: translateY(-40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInZoom {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* --- Mobile Responsive --- */
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 34px;
        text-align: center;
    }

    .hero-text p {
        font-size: 16px;
        text-align: center;
    }

    .cta-buttons {
        text-align: center;
    }

    .cta-buttons a {
        display: block;
        margin: 10px auto;
        width: 80%;
    }

    .zoom-container {
        margin-top: 30px;
    }
}






/* cta-banner-section  */


.cta-banner-section {
    background-color: #f8f9fa;
    font-family: 'Poppins', sans-serif;
}

.cta-banner {
    background: linear-gradient(135deg, #00247d, #cf142b);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    position: relative;
}

.cta-banner h2 {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.4;
    animation: fadeInUp 1s ease-in-out;
}

.cta-banner .highlight {
    color: #f4bc4f;
    font-weight: 800;
}

.cta-banner p {
    font-size: 18px;
    color: #ffffff;
    animation: fadeInUp 1.2s ease-in-out;
}

.cta-banner .btn-danger {
    background: linear-gradient(to right, #f4bc4f, #cf142b);
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 12px 30px;
    font-size: 16px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
    animation: fadeInUp 1.4s ease-in-out;
}

.cta-banner .btn-danger:hover {
    background-color: #ffffff !important;
    color: black !important;
    box-shadow: 0 8px 20px rgba(244, 188, 79, 0.4);
}

.cta-banner img {
    max-height: 280px;
    border-radius: 16px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    animation: zoomIn 1.2s ease-in-out;
}

.cta-banner img:hover {
    transform: scale(1.05);
}

/* Animations */
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes zoomIn {
    0% { opacity: 0; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
}

/* Responsive */
@media (max-width: 768px) {
    .cta-banner h2 {
        font-size: 28px;
        text-align: center;
    }

    .cta-banner p {
        font-size: 16px;
        text-align: center;
    }

    .cta-banner .btn-danger {
        display: block;
        margin: 0 auto;
    }

    .cta-banner img {
        margin-top: 20px;
    }
}






.visa-card-box {
  background-color: #ffffff;
  padding: 25px 20px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.visa-card-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 45px rgba(0, 0, 0, 0.15);
}

/* Image Box */
.visa-img {
  width: 100%;
  height: 180px;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 12px;
}

.visa-img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* makes it fit perfectly */
  transition: transform 0.4s ease;
  border-radius: 12px;
}

.visa-card-box:hover .visa-img img {
  transform: scale(1.05);
}

/* Title */
.visa-card-box h5 {
  font-size: 22px;
  font-weight: 700;
  color: #00247d; /* UK Navy Blue */
  margin-bottom: 8px;
}

/* Subtitle */
.visa-card-box p {
  font-size: 15px;
  color: #555;
  margin-bottom: 16px;
}

/* Button */
.visa-btn {
  padding: 10px 25px;
  background: linear-gradient(135deg, #f4bc4f, #cf142b); /* Gold to Red */
  color: #ffffff;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.15);
}

.visa-btn:hover {
  background-color: #00247d;
  color: #fff;
}





/* cta-section  */
.cta-section {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 500px;
  position: relative;
}

.bg-overlay {
  background: linear-gradient(
    135deg,
    rgba(0, 36, 125, 0.9),
    rgba(30, 58, 138, 0.9)
  ); /* UK navy blue gradient with transparency */
  color: white;
}

.cta-section h2 {
  color: #f4bc4f; /* UK gold heading */
}

.cta-section p {
  color: #eee;
  font-size: 16px;
  line-height: 1.7;
}

/* CTA Button - UK themed */
.cta-section .btn-warning {
  background: linear-gradient(135deg, #f4bc4f, #cf142b);
  border: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.cta-section .btn-warning:hover {
  background: #ffffff;
  color: #00247d;
}



/* visa proess  */


.step-box {
  background: #ffffff;
  border-radius: 20px;
  border: none;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.step-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

/* Step Number Circle */
.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f4bc4f, #cf142b); /* UK gold to red */
  color: #ffffff;
  border-radius: 50%;
  margin: auto;
  font-size: 24px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}



/* videoo  */
.video-banner {
  background-image: url('./img/visa-video-thumb.jpg'); /* Replace with your image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,36,125,0.7), rgba(30,58,138,0.7)); /* UK theme */
  z-index: 0;
  backdrop-filter: blur(2px);
}

/* Content inside */
.video-banner .content {
  max-width: 700px;
  margin: auto;
}

/* Button Styling */
.video-banner .btn-warning {
  background: linear-gradient(135deg, #f4bc4f, #cf142b);
  border: none;
  color: #000;
  font-weight: 600;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.video-banner .btn-warning:hover {
  background-color: #fff;
  color: #00247d;
}




/* .partner-tabs-section  */
  /* Tabs Buttons */
.tabs-nav .tab-btn {
  background: #fff;
  color: #00247d;
  border: 2px solid #00247d;
  font-weight: 600;
  padding: 10px 20px;
  margin: 5px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.tabs-nav .tab-btn:hover,
.tabs-nav .tab-btn.active {
  background: linear-gradient(135deg, #f4bc4f, #cf142b);
  color: #fff;
  border-color: transparent;
}

/* Hide inactive panes */
.tab-pane {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

.tab-pane.active {
  display: block;
}

/* Partner Boxes */
.partner-box {
  padding: 20px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.partner-box img {
  max-height: 80px;
  object-fit: contain;
}

.partner-box:hover {
  transform: scale(1.05);
}

/* Glass Effect */
.glass-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}




/* f&q    */



/* === FAQ Section with Light White Overlay and Better Text Contrast === */
.faq-section {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
}

.text-gold {
    color: #facc15;
}

.accordion-button {
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background-color: #facc15;
    color: #000;
}

.accordion-body {
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-top: 1px solid #facc15;
}

/* Accordion buttons */
.accordion-button {
    background-color: #ffffff;
    color: #1e3a8a;
    font-weight: 600;
    box-shadow: none;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background-color: #f4bc4f;
    color: #0c0c0c;
}

/* Accordion body text */
.accordion-body {
    background-color: #ffffff;
    color: #333;
    border-top: 1px solid #ddd;
}

/* Accordion item */
.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    overflow: hidden;
}



.client-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #facc15;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.testimonial-item {
  background: #ffffff;
  margin: 0 10px;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s ease;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.testimonial-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  background-color: #fefce8;
}
.testimonial-item p {
  color: #0f172a;
}
@media (max-width: 768px) {
  .testimonial-item {
    padding: 20px 15px;
    min-height: auto;
  }
  .client-img {
    width: 80px;
    height: 80px;
  }
}



.newsletter-section input.form-control {
  border-radius: 0 0.375rem 0.375rem 0;
}
.newsletter-section .btn-warning {
  background-color: #facc15;
  border: none;
  transition: background 0.3s ease;
}
.newsletter-section .btn-warning:hover {
  background-color: #eab308;
}



.contact-section {
  background: #f8f9fa;
  font-family: 'Poppins', sans-serif;
}

.contact-form input,
.contact-form textarea {
  border-radius: 8px;
  border: 1px solid #ccc;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #00247d;
  box-shadow: 0 0 0 0.2rem rgba(0, 36, 125, 0.1);
}

.contact-form .btn-primary {
  background-color: #00247d;
  border-color: #00247d;
  font-weight: 600;
  border-radius: 8px;
}

.contact-form .btn-primary:hover {
  background-color: #cf142b;
  border-color: #cf142b;
}

.map-container iframe {
  border: none;
  min-height: 350px;
}

.footer-section {
  font-family: 'Poppins', sans-serif;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #f4bc4f; /* Gold Yellow */
}




/* contact us pageee  */
.office-info i {
      color: #cf142b;
      margin-right: 10px;
    }
    .map-frame iframe {
      border-radius: 20px;
    }
    .branch-section {
      background-color: #fff;
      padding: 60px 0;
    }
    .branch-title {
      font-size: 28px;
      color: #00247d;
      margin-bottom: 15px;
    }


    /* about page start */


     .small-email {
      font-size: 0.9rem;
      word-break: break-word;
    }

    @media (max-width: 575.98px) {
      .small-email {
        font-size: 0.85rem;
      }
    }
     .profile-wrapper {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      align-items: flex-start;
      justify-content: center;
    }

    .profile-image-box {
      position: relative;
      background: #ffffff;
      padding: 10px;
      border: 6px solid #fff;
      border-left: 8px solid #ccc; /* left side border effect like your image */
      border-right: 8px solid #ccc; /* right side border */
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
      border-radius: 8px;
      transform: rotate(-1.2deg);
      transition: 0.3s ease;
      max-width: 260px;
      margin: auto;
    }

    .profile-image-box:hover {
      transform: rotate(0deg) scale(1.02);
    }

    .profile-image-box img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 4px;
    }

    .top-tape {
      position: absolute;
      top: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 20px;
      background-color: #f2eee8;
      border-radius: 3px;
      box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
      z-index: 10;
    }

    .profile-text-content {
      flex: 1;
      max-width: 700px;
    }

    .profile-text-content h2 {
      color: #00247d;
    }

    .profile-text-content span {
      color: #cf142b;
    }

    .blockquote {
      background-color: #fff;
      padding-left: 1rem;
      border-left: 4px solid #dc3545;
      margin-top: 1.5rem;
      font-style: italic;
      color: #555;
    }

    @media (max-width: 768px) {
      .profile-wrapper {
        flex-direction: column;
        align-items: center;
      }

      .profile-text-content {
        text-align: center;
      }
    }
.about-section {
    background: linear-gradient(to right, #ffffff, #f8f9fa);
    font-family: 'Poppins', sans-serif;
    color: #2e2e2e;
    padding: 80px 0;
}

.about-section h2 {
    font-size: 40px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.about-section h2 strong {
    color: #00247d;
}

.about-section h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    height: 3px;
    width: 60%;
    background-color: #cf142b;
}

.about-section p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    animation: fadeIn 1.2s ease-in-out forwards;
}

.zoom-container img {
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);

    transition: transform 0.4s ease;
    
}

.zoom-container img:hover {
      transform: scale(1.05);

}

.counter {
    font-size: 36px;
    font-weight: 700;
    color: #cf142b;
    animation: fadeInUp 1.2s ease-in-out forwards;
}

.about-section small {
    display: block;
    margin-top: 5px;
    font-size: 14px;
    color: #666;
}

.btn.btn-danger {
    background: linear-gradient(45deg, #cf142b, #f4bc4f);
    border: none;
    font-weight: 600;
    box-shadow: 0 6px 14px rgba(207, 20, 43, 0.3);
    transition: all 0.3s ease-in-out;
}

.btn.btn-danger:hover {
    background: #00247d;
    color: #fff;
    box-shadow: 0 8px 18px rgba(0, 36, 125, 0.3);
}

/* Animations */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .about-section h2 {
        font-size: 32px;
        text-align: center;
    }

    .about-section p {
        font-size: 16px;
        text-align: center;
    }

    .btn.btn-danger {
        display: block;
        margin: 0 auto;
    }

    .counter {
        font-size: 28px;
    }

    .about-section .row.text-center {
        margin-top: 30px;
    }
}


.bg-fixed-about {
      background: url('https://images.unsplash.com/photo-1604085572455-f08fdfd71ec4?auto=format&fit=crop&w=1600&q=80') no-repeat center center fixed;
      background-size: cover;
      position: relative;
    }

    .bg-overlay {
      background: rgba(255, 255, 255, 0.95);
      padding: 80px 0;
    }

    .section-title {
      font-size: 42px;
      font-weight: 800;
      color: #00247d;
    }

    .section-subtitle {
      color: #555;
      font-size: 18px;
      max-width: 800px;
      margin-inline: auto;
      margin-bottom: 30px;
    }

    .about-feature {
      background: #fff;
      padding: 30px;
      border-radius: 20px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      transition: 0.3s ease;
      text-align: center;
    }

    .about-feature:hover {
      transform: translateY(-5px);
      box-shadow: 0 14px 28px rgba(0, 0, 0, 0.15);
    }

    .about-feature i {
      font-size: 30px;
      color: #cf142b;
      margin-bottom: 15px;
    }

    .btn-style {
      background: linear-gradient(135deg, #cf142b, #f4bc4f);
      border: none;
      padding: 12px 30px;
      font-weight: 600;
      color: #fff;
      border-radius: 50px;
      transition: 0.3s ease;
    }

    .btn-style:hover {
      background: #00247d;
      color: #fff;
    }



    .silky-slider-container {
      overflow: hidden;
      position: relative;
      padding: 20px 0;
    }

    .silky-slider-track {
      display: flex;
      width: max-content;
      animation: slideLeft 60s linear infinite;
    }

    .silky-slide {
      flex: 0 0 auto;
      width: 250px;
      height: 400px;
      margin: 0 12px;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
      background: #000;
    }

    .testimonial-video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .testimonial-video:hover {
      transform: scale(1.03);
    }

    @keyframes slideLeft {
      0% {
        transform: translateX(0%);
      }

      100% {
        transform: translateX(-50%);
      }
    }

    @media (max-width: 768px) {
      .silky-slide {
        width: 180px;
        height: 320px;
      }
    }





    .team-card:hover {
      transform: translateY(-5px);
      transition: 0.3s ease;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }




    .contact-section iframe {
      transition: transform 0.3s ease;
    }

    .contact-section iframe:hover {
      transform: scale(1.02);
    }

    /* visa page start  */
     .bg-overlay {
      background-color: rgba(255, 255, 255, 0.88);
      padding: 80px 0;
    }

    .section-title {
      color: #00247d;
      font-weight: 700;
      font-size: 2.3rem;
      text-align: center;
      margin-bottom: 20px;
    }

    .section-subtitle {
      color: #555;
      text-align: center;
      max-width: 750px;
      margin: 0 auto 50px;
    }

    .visa-card-box {
      background-color: #f9f9f9;
      border: 2px solid #e0e0e0;
      padding: 30px;
      border-radius: 16px;
      transition: 0.3s ease;
      text-align: center;
      height: 100%;
    }

    .visa-card-box:hover {
      border-color: #cf142b;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

    .visa-card-box i {
      font-size: 2.2rem;
      color: #cf142b;
      margin-bottom: 20px;
    }

    .visa-card-box h5 {
      font-size: 22px;
      font-weight: 700;
      color: #00247d;
      margin-bottom: 8px;
    }

    .visa-card-box p {
      font-size: 15px;
      color: #555;
      margin-bottom: 16px;
    }

    .visa-btn {
      padding: 10px 25px;
      background: linear-gradient(135deg, #f4bc4f, #cf142b);
      color: #ffffff;
      border-radius: 50px;
      font-weight: 600;
      font-size: 14px;
      text-decoration: none;
      transition: all 0.3s ease;
      display: inline-block;
    }

    .visa-btn:hover {
      background-color: #00247d;
      color: #fff;
    }

    .country-tag {
      display: inline-block;
      background: #00247d;
      color: #fff;
      padding: 10px 20px;
      margin: 5px;
      border-radius: 50px;
      font-size: 14px;
    }

    .highlight-box {
      background: #f3f3f3;
      padding: 25px;
      border-left: 5px solid #cf142b;
      border-radius: 10px;
    }

    .highlight-box ul {
      padding-left: 18px;
      margin-bottom: 0;
    }

    .highlight-box li {
      margin-bottom: 12px;
      color: #444;
    }

    .why-us-box {
      background: #fdfdfd;
      border: 2px solid #ddd;
      border-radius: 12px;
      padding: 25px;
      transition: 0.3s;
    }

    .why-us-box:hover {
      border-color: #00247d;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
    }

    /* Backgrounds */
    .bg-visa-services {
      background: url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d') no-repeat center center;
      background-size: cover;
      background-attachment: fixed;
    }

    .bg-why-us {
      background: url('https://images.unsplash.com/photo-1526948128573-703ee1aeb6fa') no-repeat center center;
      background-size: cover;
      background-attachment: fixed;
    }

    .bg-reject-help {
      background: url('https://images.unsplash.com/photo-1600077091073-7c9b06bfa6b5') no-repeat center center;
      background-size: cover;
      background-attachment: fixed;
    }

    .bg-top-countries {
      background: url('https://images.unsplash.com/photo-1519677100203-a0e668c92439') no-repeat center center;
      background-size: cover;
      background-attachment: fixed;
    }



    /* study page start  */
    .section-title {
            color: #00247d;
            font-weight: 700;
            font-size: 2.3rem;
            text-align: center;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .section-subtitle {
            color: #555;
            text-align: center;
            max-width: 750px;
            margin: 0 auto 50px;
        }

        .info-box {
            background: #f9f9f9;
            border: 2px solid #e0e0e0;
            padding: 30px;
            border-radius: 20px;
            transition: all 0.4s ease-in-out;
            height: 100%;
        }

        .info-box:hover {
            transform: translateY(-10px);
            border-color: #cf142b;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
            background: #ffffff;
        }

        .info-box h5 {
            color: #00247d;
            font-weight: 600;
            font-size: 18px;
            margin-bottom: 12px;
            transition: 0.3s ease;
        }

        .info-box:hover h5 {
            color: #cf142b;
        }

        .info-box p {
            font-size: 15px;
            color: #555;
            transition: 0.3s ease;
        }

        .country-tag {
            display: inline-block;
            background: linear-gradient(135deg, #cf142b, #f4bc4f);

            color: #fff;
            padding: 10px 20px;
            margin: 5px;
            border-radius: 50px;
            font-size: 14px;
            transition: 0.3s ease;
        }

        .country-tag:hover {
            transform: scale(1.08);
            box-shadow: 0 10px 24px rgba(244, 188, 79, 0.6);
            color: #00247d;
            background: #ffffff;
        }

        .study-btn {
            display: inline-block;
            padding: 10px 30px;
            font-size: 16px;
            font-weight: 600;
            color: #fff;
            background: linear-gradient(135deg, #cf142b, #f4bc4f) !important;
            border: none;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease-in-out;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        .study-btn:hover {
            background: linear-gradient(135deg, #00247d, #cf142b);
            color: #fff;
            transform: scale(1.05);
        }

        /* Backgrounds */
        .bg-study-intro {
            background: url('https://images.unsplash.com/photo-1584697964154-e944c4c140b0') no-repeat center center;
            background-size: cover;
            background-attachment: fixed;
        }

        .bg-study-services {
            background: url('https://images.unsplash.com/photo-1581093588401-8ff0d0a40638') no-repeat center center;
            background-size: cover;
            background-attachment: fixed;
        }

        .bg-study-benefits {
            background: url('https://images.unsplash.com/photo-1532187863486-abf9dbad1b69') no-repeat center center;
            background-size: cover;
            background-attachment: fixed;
        }

        .bg-partners {
            background: url('https://images.unsplash.com/photo-1555066931-4365d14bab8c') no-repeat center center;
            background-size: cover;
            background-attachment: fixed;
        }

        /* study page start  */
        .section-title {
      color: #00247d;
      font-weight: 700;
      font-size: 2.3rem;
      text-align: center;
      margin-bottom: 20px;
      text-transform: uppercase;
    }

    .section-subtitle {
      color: #555;
      text-align: center;
      max-width: 750px;
      margin: 0 auto 50px;
    }

    .tour-box {
      background: #fff;
      border: 2px solid #eee;
      padding: 30px;
      border-radius: 20px;
      transition: all 0.4s ease-in-out;
      height: 100%;
    }

    .tour-box:hover {
      transform: translateY(-10px);
      border-color: #cf142b;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    }

    .tour-box h5 {
      color: #00247d;
      font-weight: 600;
      font-size: 18px;
      margin-bottom: 12px;
    }

    .tour-box p {
      font-size: 15px;
      color: #555;
    }

    .tour-btn {
      display: inline-block;
      padding: 10px 30px;
      font-size: 16px;
      font-weight: 600;
      color: #fff;
      background: linear-gradient(135deg, #cf142b, #f4bc4f);
      border-radius: 50px;
      text-decoration: none;
      transition: all 0.3s ease;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .tour-btn:hover {
      background: linear-gradient(135deg, #00247d, #cf142b);
      transform: scale(1.05);
    }

    .country-tag {
      display: inline-block;
      background: linear-gradient(135deg, #cf142b, #f4bc4f);
      color: #fff;
      padding: 10px 20px;
      margin: 5px;
      border-radius: 50px;
      font-size: 14px;
      transition: 0.3s ease;
    }

    .country-tag:hover {
      transform: scale(1.08);
      box-shadow: 0 10px 24px rgba(244, 188, 79, 0.6);
      color: #00247d;
      background: #ffffff;
    }

    /* .bg-tour-intro {
      background: url('../img/Australia.png')
      no-repeat center center;
      background-size: cover;
      background-attachment: fixed;
    } */

    .bg-tour-services {
      background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e') no-repeat center center;
      background-size: cover;
      background-attachment: fixed;
    }

    .bg-tour-destinations {
      background: url('https://images.unsplash.com/photo-1502920514313-52581002a659') no-repeat center center;
      background-size: cover;
      background-attachment: fixed;
    }

    .custom-holidays-section {
  background-color: #f9f9ff;
}

.custom-tour-card {
  background-color: #ffffff;
  border-top: 4px solid #00247d;
  transition: all 0.3s ease;
}

.custom-tour-card:hover {
  transform: translateY(-5px);
  border-color: #c8102e;
}

.custom-tour-card h5 {
  color: #00247d;
}

/* work page start  */
 .section-subtitle {
      color: #555;
      text-align: center;
      max-width: 750px;
      margin: 0 auto 50px;
    }
    .work-card {
      background: #fff;
      border: 2px solid #eee;
      padding: 30px;
      border-radius: 18px;
      transition: 0.4s ease;
      height: 100%;
    }
    .work-card:hover {
      transform: translateY(-10px);
      border-color: #cf142b;
      box-shadow: 0 10px 28px rgba(0,0,0,0.12);
    }
    .work-card h5 {
      color: #00247d;
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 12px;
    }
    .work-card p {
      font-size: 15px;
      color: #555;
    }
    .bg-fixed-1 {
      background: url('../img/canada.png') no-repeat center center;
      background-size: cover;
      background-attachment: fixed;
    }
    .bg-fixed-2 {
      background: url('https://images.unsplash.com/photo-1581093588401-8b0d5c63c889') no-repeat center center;
      background-size: cover;
      background-attachment: fixed;
    }
    .bg-fixed-3 {
      background: url('https://images.unsplash.com/photo-1568605117036-5fe5e7bab0b7') no-repeat center center;
      background-size: cover;
      background-attachment: fixed;
    }


      .custom-video-wrapper {
    position: relative;
    /* width: 100%; */
    /* max-width: 100%; */
    height: auto;
    overflow: hidden;
  }

  .custom-video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    cursor: pointer;
  }

  
.city-tab {
  cursor: pointer;
  padding: 5px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
  color: #555;
}
.city-tab:hover, .city-tab.active {
  background-color: #00247d;
  color: white;
}

    .city-selector h1 {
      font-size: 1.2rem;
      margin: 0 10px;
      padding: 8px 16px;
      border-radius: 20px;
      background-color: #f8f9fa;
      cursor: pointer;
      transition: all 0.3s ease;
      font-weight: 600;
    }

    .city-selector h1.active {
      background-color: #00247d;
      color: white;
    }

    @media (max-width: 767px) {
      .city-selector {
        flex-direction: column;
        gap: 10px;
        text-align: center;
      }

      .city-selector h1 {
        width: 100%;
      }
    }

    .map-container iframe {
      min-height: 300px;
      border: none;
    }

    .contact-section {
      background-color: #f1f1f1;
    }
    
    .silky-slider-buttons .circle-btn {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: none;
    background-color: #00247d;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.silky-slider-buttons .circle-btn:hover {
    background-color: #c8a253;
}

    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    