* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}


body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Header Styles */
.header {
    background: white;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: transform 0.3s ease;
    width: 100%;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
}



.logo img {
    width: 30%;
    
}



.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 1px;
}

.nav-toggle span {
    
    background: #333;
    transition: 0.3s;
    border-radius: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 10px;
    width: 100%;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: #e53e3e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229, 62, 62, 0.3);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 aspect ratio */
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.353);
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 3;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 800;
    color: #333;
    color: black;
    margin-bottom: 20px;
    line-height: 1.2;
    
}

.hero-text .highlight {
    color: #e53e3e;
    position: relative;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    color: black;
    
}

.hero-description {
    font-size: 16px;
    line-height: 1.7;
    color: black;
    text-align: justify;
   
}

.hero-form {
    background: white;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border: 3px solid #e53e3e;
    position: relative;
}

.form-header {
    background: #e53e3e;
    color: white;
    padding: 16px 24px;
    margin: -32px -32px 24px -32px;
    border-radius: 17px 17px 0 0;
}

.form-header h3 {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e53e3e;
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

.submit-btn {
    width: 100%;
    background: #e53e3e;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background: #c53030;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(229, 62, 62, 0.4);
}

/* Dreams Section */
.dreams-section {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.dreams-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #333;
    margin-bottom: 0px;
    line-height: 1.2;
}

.dream-line {
    margin-bottom: 20px;
}

.dreams-header .highlight {
    color: #e53e3e;
}

.country-flags {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.country-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.flag-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.flag-circle:hover {
    transform: scale(1.1);
}

.flag-circle.canada {
    background-image: url('assets/flags/canada.png');
    background-size: cover;
     background-position: center;
}

.flag-circle.australia {
    background-image: url('assets/flags/australia.png');
    background-size: cover;
     background-position: center;
}

.flag-circle.uk {
    background-image: url('assets/flags/uk.png');
    background-size: cover;
     background-position: center;
}

.flag-circle.usa {
    background-image: url('assets/flags/usa.png');
    background-size: cover;
     background-position: center;
}

.flag-circle.europe {
    background-image: url('assets/flags/europe.png');
    background-size: cover;
     background-position: center;
}

.country-item span {
    font-weight: 700;
    font-size: 14px;
    color: #333;
}

.services-title {
    font-size: 36px;
    font-weight: 800;
    color: #333;
    margin-bottom: 0px;
}

.service-title-line {
    margin-bottom: 20px;
}

.button-container {
    text-align: center;
    margin-top: 30px;
  }

  .custom-button {
    padding: 10px 20px;
    margin: 10px;
    font-size: 16px;
    background-color: #1A1A3B;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .custom-button:hover {
    background-color: #2d2d5a;
  }

.visa-types {
    background: #e53e3e;
    color: white;
    padding: 20px 40px;
    border-radius: 15px;
    font-size: 20px;
    font-weight: 700;
    display: inline-block;
    text-align: center;
    line-height: 1.4;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.services-section h2 {
    font-size: 36px;
    font-weight: 800;
    color: #333;
    margin-bottom: 40px;
}

.services-grid {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.service-btn {
    background: #e53e3e;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #e53e3e;
}

.service-btn:hover {
    background: white;
    color: #e53e3e;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(229, 62, 62, 0.3);
}

/* Destinations Section */
.destinations-section {
    padding: 80px 0;
    background: white;
}

.destinations-section h2 {
    font-size: 36px;
    font-weight: 800;
    color: #333;
    text-align: center;
    margin-bottom: 50px;
}

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

.destination-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border-color: #e53e3e;
}

.destination-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.destination-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    padding: 20px 20px 10px;
}

.destination-card ul {
    padding: 0 20px 20px;
    list-style: none;
}

.destination-card li {
    padding: 6px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.destination-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #e53e3e;
    font-weight: bold;
}

/* Success Stories */
.success-stories {
    padding: 80px 0;
    background: #f8f9fa;
}

.success-stories h2 {
    font-size: 36px;
    font-weight: 800;
    color: #333;
    text-align: center;
    margin-bottom: 50px;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.story-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.story-card:hover {
    transform: scale(1.05);
}

.story-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.story-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 20px;
    text-align: center;
}

.story-overlay h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.story-overlay p {
    font-size: 14px;
    opacity: 0.9;
}

/* IELTS Success Stories */
.ielts-success {
    padding: 80px 0;
    background: #e53e3e;
    color: white;
}

.ielts-success h2 {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
}

.ielts-stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.ielts-story-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    background: white;
}

.ielts-story-card:hover {
    transform: scale(1.05);
}

.ielts-story-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.score-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #28a745;
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 16px;
}

.story-info {
    padding: 15px;
    color: #333;
    text-align: center;
}

.story-info h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.story-info p {
    font-size: 12px;
    color: #666;
}

.load-more-btn {
    display: block;
    margin: 0 auto;
    background: #e53e3e;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background: #c53030;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229, 62, 62, 0.4);
}

.load-more-btn.dark {
    background: #333;
}

.load-more-btn.dark:hover {
    background: #222;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.about-section h2 {
    font-size: 36px;
    font-weight: 800;
    color: #333;
    margin-bottom: 30px;
}

.about-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #666;
    max-width: 800px;
    margin: 0 auto 30px;
}

.cta-btn {
    background: #e53e3e;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #c53030;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229, 62, 62, 0.4);
}




.destinations-section {
    width: 100vw;
    padding: 32px 0 32px 0;
    background: #fff;
}
.destinations-title {
    text-align: center;
    font-weight: 800;
    font-size: 1.6rem;
    color: #8d0000;
    margin-bottom: 30px;
    margin-top: 0;
    letter-spacing: .2px;
}
.destinations-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    align-items: flex-start;
}
.destination-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(80,80,80,0.07);
    padding: 14px 18px 16px 18px;
    width: 215px;
    min-width: 200px;
    max-width: 225px;
    margin-bottom: 6px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.destination-card img {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    object-fit: cover;
    margin-bottom: 11px;
    box-shadow: 0 2px 6px rgba(160,160,160,0.06);
}
.destination-card h3 {
    font-size: 1.09rem;
    font-weight: 800;
    margin: 0 0 10px 0;
    color: #a50303;
    letter-spacing: .15px;
    text-align: center;
}
.destination-card ul {
    margin: 0;
    padding: 0 0 0 18px;
    font-size: 0.97rem;
    color: #222;
}
.destination-card li {
    margin-bottom: 4px;
    line-height: 1.36;
}

/* Responsive styles */
@media (max-width: 900px) {
    .destinations-grid {
        gap: 18px;
        flex-wrap: wrap;
    }
    .destination-card {
        width: 46vw;
        min-width: 150px;
        max-width: 260px;
        padding: 12px 6px 13px 6px;
    }
}
@media (max-width: 600px) {
    .destinations-title { font-size: 1.08rem; }
    .destinations-grid { flex-direction: column; align-items: center; }
    .destination-card { width: 96vw; max-width: 97vw; }
}







.services-section {
    background: #f8f9fa;
    padding: 48px 0 36px 0;
}
.services-title {
    text-align: center;
    font-weight: 800;
    font-size: 2.4rem;
    color: #262626;
    margin: 0 0 40px 0;
    letter-spacing: .8px;
}
.services-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px 28px;
    margin-top: 0;
}
.service-btn {
    display: inline-block;
    background: linear-gradient(90deg, #d62b20 10%, #e84341 90%);
    color: #fff;
    font-weight: 700;
    font-size: 1.25rem;
    border-radius: 38px;
    padding: 18px 38px;
    min-width: 120px;
    margin: 0;
    text-align: center;
    text-decoration: none;
    letter-spacing: 1px;
    box-shadow: 0 3px 16px rgba(224,50,45,0.13);
    transition: background 0.16s, transform 0.14s, box-shadow 0.14s;
    border: 2px solid transparent;
    position: relative;
}
.service-btn:hover, .service-btn:focus {
    background: linear-gradient(90deg, #f0491d 10%, #ec5656 90%);
    color: #fff;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 32px rgba(229,10,50,0.13);
    border-color: #fff;
    outline: none;
}
@media (max-width: 900px) {
    .services-bar {
        gap: 18px 14px;
    }
    .service-btn {
        font-size: 1rem;
        padding: 13px 16px;
        min-width: 90px;
    }
}
@media (max-width: 600px) {
    .services-title {
        font-size: 1.15rem;
        margin-bottom: 22px;
    }
    .service-btn {
        font-size: 0.95rem;
        padding: 10px 10px;
        min-width: 74px;
    }
    .services-section {
        padding: 28px 0 14px 0;
    }
}

.why-choose-section {
    background: linear-gradient(90deg,#fbf8f5 90%,#fff 100%);
    padding: 54px 0 41px 0;
    width: 100vw;
}
.why-choose-title {
    font-size: 2.12rem;
    font-weight: 900;
    color: #1e232c;
    text-align: center;
    margin-bottom: 38px;
}
.why-choose-title span { color: #e82323; }
.why-choose-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
    justify-content: center;
}
.why-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 6px 28px rgba(232,35,35,0.11);
    padding: 38px 22px 27px 22px;
    width: 233px;
    text-align: center;
    position: relative;
    transition: box-shadow 0.22s, transform 0.15s;
    cursor: pointer;
}
.why-card:hover {
    box-shadow: 0 16px 44px rgba(232,35,35,0.20);
    transform: translateY(-5px) scale(1.04);
}
.why-card i {
    font-size: 2.8rem;
    color: #e82323;
    margin-bottom: 22px;
    transition: color 0.16s;
}
.why-card:hover i {
    color: #242424;
}
.why-card h3 {
    font-weight: 800;
    font-size: 1.21rem;
    color: #e82323;
    margin-bottom: 8px;
}
.why-card p {
    font-size: 1.01rem;
    color: #363636;
    margin: 0;
    line-height: 1.56;
}
@media (max-width: 900px) { 
  .why-choose-grid { gap: 14px; }
  .why-card { width: 92vw; max-width: 350px; }
}
@media (max-width: 600px) { .why-choose-title { font-size: 1.15rem; } }








.reviews-section {
  background: linear-gradient(90deg,#f6fbff 70%,#fff 100%);
  padding: 56px 0 52px 0;
  width: 100vw;
  box-sizing: border-box;
  font-family: 'Roboto', Arial, sans-serif;
  overflow: hidden;
}

.reviews-title {
  font-size: 2.05rem;
  color: #e82323;
  font-weight: 900;
  text-align: center;
  margin-bottom: 24px;
}

.reviews-slider-wrapper {
  overflow: hidden;
  max-width: 960px;
  margin: 0 auto 20px auto;
  position: relative;
}

.reviews-slider {
  display: flex;
  gap: 28px;
  transition: transform 0.48s cubic-bezier(.6,.1,.14,.93);
  will-change: transform;
  scroll-behavior: smooth;
}

.review-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(36,36,36,0.09);
  padding: 36px 25px 26px 25px;
  min-width: 296px;
  max-width: 296px;
  font-size: 1.11rem;
  color: #232323;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.review-avatar {
  font-size: 3rem;
  color: #e82323;
  background: #f7eaea;
  border-radius: 50%;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.review-text {
  font-style: italic;
  line-height: 1.7;
  color: #444;
  margin-bottom: 18px;
}

.review-client {
  color: #e82323;
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: 0;
}

.reviews-dots {
  text-align: center;
  margin-top: 6px;
}

.reviews-dots button {
  border: none;
  background-color: #E82323;
  opacity: 0.75;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: opacity 0.16s;
}

.reviews-dots button.active,
.reviews-dots button:hover {
  opacity: 1;
}

@media (max-width: 1024px) {
  .review-card {
    min-width: 270px;
    max-width: 270px;
  }
  .reviews-slider-wrapper {
    max-width: 86vw;
  }
}

@media (max-width: 700px) {
  .reviews-section {
    padding: 42px 10px 42px 10px;
  }
  .reviews-slider-wrapper {
    max-width: 98vw;
  }
  .review-card {
    min-width: 88vw;
    max-width: 88vw;
  }
  .reviews-title {
    font-size: 1.35rem;
    margin-bottom: 14px;
  }
}










.insta-section {
    background: linear-gradient(90deg, #ce001a 0%, #e82323 100%);
    padding: 54px 0 54px 0;
    width: 100vw;
    box-sizing: border-box;
}
.insta-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.insta-heading-row {
    text-align: center;
    margin-bottom: 28px;
}
.insta-heading-row h2 {
    font-size: 2.2rem;
    color: #fff;
    font-weight: 800;
    margin: 0;
}
.insta-heading-row p {
    font-size: 1.07rem;
    color: #fff;
    margin-top: 5px;
    margin-bottom: 0;
    font-weight: 400;
}
.insta-embed {
    width: 100%;
    max-width: 810px;
    margin: 0 auto 34px auto;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 28px rgba(200,0,20,0.09);
    transition: box-shadow 0.21s;
}
.insta-btn-row {
    text-align: center;
}
.insta-cta-btn {
    display: inline-block;
    background: #181818;
    color: #fff;
    font-size: 1.13rem;
    font-weight: 700;
    padding: 12px 32px;
    border-radius: 9px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(30,30,30,0.12);
    margin-top: 16px;
    transition: background 0.15s;
}
.insta-cta-btn:hover {
    background: #e82323;
    color: #fff;
}
/* Responsive */
@media (max-width: 800px) {
    .insta-section { padding: 32px 0;}
    .insta-heading-row h2 { font-size: 1.27rem;}
    .insta-embed { min-height: 350px;}
    .insta-wrapper { padding: 0 4px;}
}
@media (max-width: 450px) {
    .insta-section { padding: 16px 0;}
    .insta-heading-row h2 { font-size: 1.08rem;}
    .insta-heading-row p { font-size: 0.98rem;}
    .insta-btn-row { margin-top: 8px;}
    .insta-cta-btn { font-size: 0.97rem; padding: 7px 16px;}
    .insta-embed { min-height: 240px;}
}




/* Footer styling */
.footer-white {
  background: #fff;
  color: #353535;
  font-family: 'Roboto', Arial, sans-serif;
  padding: 46px 0 0 0;
  width: 100vw;
  box-sizing: border-box;
  border-top: 6px solid #e82323;
  box-shadow: 0 -2px 28px rgba(142,21,37,0.07);
}
.footer-row-white {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 26px 22px 26px;
  gap: 35px;
  flex-wrap: wrap;
}
.footer-col {
  flex: 1 1 200px;
  min-width: 200px;
}
.footer-logo-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 13px;
}
.footer-logo {
  width: 350px;
  transition: filter 0.2s;
}
.footer-logo-wrap:hover .footer-logo {
  filter: drop-shadow(0 2px 12px #e823236d);
}
.footer-brand {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 1.5px;
}
.footer-links-col {
  display: flex;
  gap: 45px;
  justify-content: center;
}
.footer-links-col h4 {
  font-weight: bold;
  margin-bottom: 11px;
  margin-top: 0;
  font-size: 1.1rem;
  letter-spacing: 1px;
}
.footer-links-col ul {
  list-style: none;
  padding: 0;
  margin: 0 0 14px 0;
}
.footer-links-col li {
  margin-bottom: 8px;
  transition: transform 0.14s;
}
.footer-links-col a {
  color: #222;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.22s, background 0.17s, padding-left 0.14s, box-shadow 0.15s;
  border-radius: 4px;
  padding: 2px 6px;
}
.footer-links-col a:hover {
  color: #e82323;
  background: #ffe5e8;
  padding-left: 16px;
  box-shadow: 2px 8px 20px #ffb7bd25;
  font-weight: bold;
}
.footer-social-col h4 {
  font-weight: bold;
  margin-bottom: 13px;
}
.footer-socials {
  display: flex;
  gap: 20px;
  align-items: center;
}
.footer-socials a {
  color: #e82323;
  background: #fff4f4;
  border: 1.8px solid #eee;
  font-size: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px; height: 45px;
  transition: color 0.16s, box-shadow 0.18s, background 0.18s, transform 0.14s, border 0.16s;
  box-shadow: 0 1px 8px #e8232315;
}
.footer-socials a:hover {
  color: #fff;
  background: linear-gradient(90deg, #ff5b72 0, #e82323 100%);
  border: 1.8px solid #e82323;
  transform: scale(1.13) rotate(-5deg);
  box-shadow: 0 5px 24px #e823236a;
  outline: none;
}

.footer-bottom-white {
  margin: 0;
  text-align: center;
  font-size: 0.98rem;
  color: #e82323;
  background: #fff7f7;
  border-top: 1px solid #f7d6d6;
  margin-top: 18px;
  padding: 15px 6px 12px 6px;
  letter-spacing: .3px;
}
.footer-bottom-white a {
  color: #e82323;
  text-decoration: underline;
  font-weight: 700;
  transition: color 0.18s;
}
.footer-bottom-white a:hover {
  color: #b30000;
  text-decoration: none;
}

@media (max-width: 950px) {
  .footer-row-white { flex-direction: column; gap: 36px; align-items: center; }
  .footer-links-col { flex-direction: column; gap: 0; text-align: center;}
  .footer-links-col ul { margin-bottom: 0;}
  .footer-socials { justify-content: center; }
  .footer-col { min-width: 150px;}
}
@media (max-width: 600px) {
  .footer-white { padding: 26px 0 0 0; }
  .footer-row-white { padding: 0 2vw 10px 2vw; gap: 16px; }
  .footer-logo { width: 137px;}
  .footer-brand { font-size: 1.04rem;}
}


/* ------------------------Contact Section------------------- */

.contact-title {
    text-align: center;
    color: #e82323;
    font-size: 2.15rem;
    font-weight: 700;
    margin-top: 100px;
    margin-bottom: 8px;
    letter-spacing: 1px;
}
.contact-desc {
    text-align: center;
    font-size: 1.07rem;
    color: #444;
    margin: 0 0 16px 0;
}
.contact-main-section {
    display: flex;
    gap: 48px;
    justify-content: center;
    align-items: flex-start;
    width: 97vw;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 25px;
}
.contact-left {
    flex: 1 1 340px;
    display: flex;
    flex-direction: column;
    gap: 11px;
}
.contact-whatsapp-box {
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(180,30,30,0.09);
    padding: 13px 14px 10px 14px;
    border: 1px solid #ddd;
    margin-bottom: 12px;
}
.contact-whatsapp-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}
.contact-whatsapp-icon {
    width: 32px;
    height: 32px;
}
.contact-whatsapp-info {
    color: #222;
    font-weight: 700;
    font-size: 1.07rem;
}
.contact-phone {
    color: #e82323;
    font-weight: 900;
    font-size: 2.1rem;
   
    margin: 3px 0;
}
.contact-address {
    font-size: 0.98rem;
    color: #222;
}
.contact-map-container {
    margin-top: 11px;
    background: #fff;
    border-radius: 7px;
    box-shadow: 0 2px 10px rgba(40,40,40,0.07);
    border: 1px solid #ddd;
    padding: 7px;
}
.contact-map {
    width: 100%;
    min-width: 295px;
    height: 295px;
    border: none;
    border-radius: 6px;
}
.contact-form {
    flex: 1 1 350px;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 7px;
    box-shadow: 0 2px 14px rgba(30,30,30,0.08);
    padding: 19px 20px 16px 17px;
    border: 1px solid #ddd;
    max-width: 400px;
    min-width: 250px;
}
.contact-label-group {
    margin-bottom: 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.contact-label-group label {
    font-size: 1.01rem;
    font-weight: 600;
    color: #444;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 7px;
    border: 1px solid #cccccc;
    font-size: 1rem;
    margin-top: 3px;
    margin-bottom: 0;
    resize: none;
    background: #f5f5fa;
}
.contact-form textarea {
    min-height: 44px;
    max-height: 120px;
}
.contact-submit-btn {
    width: 95%;
    background: #e82323;
    color: #fff;
    font-size: 1.18rem;
    font-weight: 700;
    padding: 10px 0;
    border-radius: 7px;
    border: none;
    box-shadow: 0 2px 8px rgba(232,35,35,0.13);
    margin: 18px auto 0 auto;
    cursor: pointer;
    transition: background 0.15s;
}
.contact-submit-btn:hover {
    background: #b32c31;
}
/* Responsive */
@media (max-width: 900px) {
    .contact-main-section {
        flex-direction: column;
        gap: 25px;
        max-width: 99vw;
        align-items: stretch;
    }
    .contact-form {
        max-width: 97vw;
        min-width: 80vw;
        margin: 0 auto;
    }
    .contact-left {
        max-width: 98vw;
        margin: 0 auto;
    }
}
@media (max-width: 600px) {
    .contact-title {
        font-size: 1.17rem;
        margin-top: 13px;
    }
    .contact-whatsapp-box {
        font-size: 0.91rem;
        padding: 10px 6px;
    }
    .contact-phone {
        font-size: 1.3rem;
        margin: 2px 0;
    }
    .contact-desc {
        padding: 0 8px;
    }
    .contact-map {
        height: 126px;
    }
    .contact-form {
        padding: 10px 6px;
        font-size: 0.96rem;
    }
    .contact-submit-btn {
        font-size: 1rem;
        padding: 7px 0;
    }
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.reviews-section h2 {
    font-size: 36px;
    font-weight: 800;
    color: #333;
    margin-bottom: 40px;
}

.review-card {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 20px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.reviewer-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.reviewer-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: #e53e3e;
}

.google-logo i {
    font-size: 30px;
    color: #4285f4;
}

.review-text {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    font-style: italic;
}

/* Instagram Section */
.instagram-section {
    padding: 80px 0;
    background: #e53e3e;
    color: white;
    text-align: center;
}

.instagram-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
}

.instagram-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.instagram-btn {
    background: #333;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.instagram-btn:hover {
    background: #222;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-section h3 {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-link.facebook {
    background: #1877f2;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.footer-info {
    text-align: right;
    font-size: 14px;
    color: #ccc;
}

.footer-info p:first-child {
    margin-bottom: 8px;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .header .container {
        padding: 12px 15px;
    }

    .logo-text h1 {
        font-size: 18px;
    }

    .logo-text p {
        font-size: 10px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        gap: 10px;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-form {
        padding: 24px;
    }

    .form-header {
        margin: -24px -24px 20px -24px;
        padding: 12px 20px;
    }

    .dreams-header h2 {
        font-size: 28px;
    }

    .country-flags {
        gap: 20px;
    }

    .flag-circle {
        width: 60px;
        height: 60px;
    }

    .services-title {
        font-size: 24px;
    }

    .visa-types {
        font-size: 16px;
        padding: 15px 25px;
    }

    .services-grid {
        gap: 10px;
    }

    .service-btn {
        padding: 10px 16px;
        font-size: 12px;
    }

    .destinations-section h2,
    .success-stories h2,
    .ielts-success h2,
    .about-section h2,
    .reviews-section h2,
    .instagram-content h2 {
        font-size: 28px;
    }

    .destinations-grid,
    .stories-grid,
    .ielts-stories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-info {
        padding: 30px 20px;
    }

    .phone-number span {
        font-size: 24px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-info {
        text-align: center;
    }

    .about-content p {
        font-size: 16px;
    }

    .review-card {
        padding: 30px 20px;
    }

    .reviewer-info h3 {
        font-size: 20px;
    }

    .review-text {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .dreams-header h2 {
        font-size: 24px;
    }

    .country-flags {
        gap: 15px;
    }

    .flag-circle {
        width: 50px;
        height: 50px;
    }

    .country-item span {
        font-size: 12px;
    }

    .services-title {
        font-size: 20px;
    }

    .visa-types {
        font-size: 14px;
        padding: 12px 20px;
    }

    .destinations-section h2,
    .success-stories h2,
    .ielts-success h2,
    .about-section h2,
    .reviews-section h2,
    .instagram-content h2 {
        font-size: 24px;
    }

    .phone-number span {
        font-size: 20px;
    }

    .contact-header h3 {
        font-size: 20px;
    }

    .reviewer-info h3 {
        font-size: 18px;
    }

    .review-text {
        font-size: 14px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.dreams-header,
.destinations-grid > *,
.stories-grid > *,
.ielts-stories-grid > * {
    animation: fadeInUp 0.6s ease-out;
}

.destinations-grid > *:nth-child(2) { animation-delay: 0.1s; }
.destinations-grid > *:nth-child(3) { animation-delay: 0.2s; }
.destinations-grid > *:nth-child(4) { animation-delay: 0.3s; }
.destinations-grid > *:nth-child(5) { animation-delay: 0.4s; }

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #e53e3e;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c53030;
}




/*--------------------ABOUT PAGE ---------------------*/


.about-heading {
    text-align: center;
    color: #b32c31;
    font-size: 2.3rem;
    font-weight: 700;
    margin-top: 100px;
    margin-bottom: 14px;
    letter-spacing: 1px;
    width: 100vw;
}

.about-description {
    background: #fff;
    width: 98vw;
    margin: 0 auto 32px auto;
    padding: 22px 3vw;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border-radius: 10px;
    font-size: 1.12rem;
    line-height: 1.56;
    max-width: 1600px;
}

.profiles-section {
    display: flex;
    flex-wrap: wrap;
    gap: 34px;
    width: 98vw;
    margin: 0 auto 40px auto;
    justify-content: center;
    max-width: 1600px;
}

.profile-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    flex: 1 1 600px;
    min-width: 400px;
    max-width: 780px;
    padding: 28px 38px 22px 38px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s;
}
.profile-card:hover {
    box-shadow: 0 4px 20px rgba(179, 44, 49, 0.11);
}
.profile-header {
    color: #b32c31;
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 13px;
    letter-spacing: 1px;
}
.profile-content {
    display: flex;
    flex-direction: row;
    gap: 28px;
    align-items: center;
}
.profile-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 11px;
    background: #d7d7d7;
    margin-top: 2px;
    border: 2px solid #f1f1f1;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
.profile-name {
    font-size: 1.34rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}
.profile-text {
    font-size: 1.12rem;
    line-height: 1.5;
    color: #444;
    margin-bottom: 0;
}

@media (max-width: 1100px) {
    .profiles-section {
        gap: 22px;
        flex-direction: column;
        align-items: center;
        width: 99vw;
    }
    .profile-card {
        max-width: 98vw;
        min-width: 95vw;
    }
    .about-description {
        width: 99vw;
        padding: 16px 4vw;
    }
}
@media (max-width: 700px) {
    .about-heading {
        font-size: 1.5rem;
    }
    .profile-card {
        padding: 14px 6vw;
    }
    .profile-content {
        gap: 12px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .profile-img {
        width: 120px;
        height: 120px;
        margin-bottom: 12px;
    }
    .about-description {
        font-size: 0.97rem;
        padding: 11px 2vw;
    }
}
@media (max-width: 450px) {
    .profile-img {
        width: 78px;
        height: 78px;
    }
    .profile-card {
        padding: 7px 4vw;
    }
}



/*----------------------IELTS PAGE---------------------------*/

.ielts-title {
    margin-top: 100px;
    text-align: center;
    color: #b32c31;
    font-size: 1.63rem;
    font-weight: 700;
    
    padding: 16px 0 12px 0;
    letter-spacing: 1px;
    width: 100vw;
}

.ielts-info-container {
    margin: 0 auto 36px auto;
    background: #fff;
    width: 97vw;
    max-width: 1100px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(42,42,42,0.07);
    padding: 24px 2vw 38px 2vw;
}

.ielts-info-container p {
    font-size: 1.09rem;
    line-height: 1.6;
    margin-top: 0;
    margin-bottom: 18px;
}

.test-pattern-title {
    color: #b32c31;
    font-size: 1.15rem;
    font-weight: 700;
    font-style: italic;
    padding-top: 5px;
    margin-bottom: 13px;
    margin-top: 22px;
}

.test-pattern-list {
    margin: 0 0 25px 0;
    padding: 0 0 0 12px;
    list-style: none;
}

.test-pattern-list li {
    font-size: 1.04rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.pattern-label {
    color: #b32c31;
    font-weight: 700;
    font-style: italic;
}

.ielts-note {
    font-weight: 700;
    font-size: 1.02rem;
    margin: 6px 0 20px 0;
}

.ielts-button {
    display: block;
    width: 96%;
    max-width: 420px;
    margin: 0 auto;
    background: #e82323;
    color: #fff;
    font-size: 1.12rem;
    font-weight: 700;
    text-align: center;
    padding: 13px 0;
    border-radius: 7px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(232,35,35,0.12);
    transition: background 0.17s;
}

.ielts-button:hover {
    background: #b32c31;
}

@media (max-width: 700px) {
    .ielts-title {
        font-size: 1.21rem;
        padding: 14px 0 10px 0;
    }
    .ielts-info-container {
        width: 99vw;
        max-width: 99vw;
        padding: 10px 2vw 30px 2vw;
    }
    .ielts-button {
        font-size: 1rem;
        padding: 11px 0;
    }
}


/*------------------PTE PAGE ---------------------------*/

.pte-title {
    margin-top: 100px;
    text-align: center;
    color: #b32c31;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    width: 100vw;
}
.pte-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    width: 97vw;
    max-width: 1200px;
    margin: 0 auto 35px auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(42,42,42,0.07);
    padding: 28px 3vw;
}
.pte-content {
    flex: 2 1 400px;
    font-size: 1.09rem;
}
.pte-content p {
    margin-top: 0;
    margin-bottom: 16px;
    line-height: 1.6;
}
.test-pattern-title {
    color: #b32c31;
    font-size: 1.12rem;
    font-weight: 700;
    font-style: italic;
    padding-top: 2px;
    margin-bottom: 12px;
    margin-top: 18px;
}
.pte-pattern-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 14px;
}
.pte-pattern-list li {
    font-size: 1rem;
    margin-bottom: 10px;
    line-height: 1.5;
}
.pattern-label {
    color: #b32c31;
    font-weight: 700;
    font-style: italic;
    margin-right: 3px;
}
.pte-score {
    margin-top: 10px;
    font-weight: 700;
    color: #b32c31;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
}
.pte-img-container {
    flex: 1 1 350px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}
.pte-img {
    width: 350px;
    height: 550px;
    max-height: 550px;
    object-fit: cover;
    border-radius: 7px;
    background: #e1e1e1;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    margin-left: 18px;
}
.pte-button {
    display: block;
    width: 97vw;
    max-width: 420px;
    margin: 24px auto 0 auto;
    background: #e82323;
    color: #fff;
    font-size: 1.13rem;
    font-weight: 700;
    text-align: center;
    padding: 13px 0;
    border-radius: 7px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(232,35,35,0.12);
    transition: background 0.17s;
}
.pte-button:hover {
    background: #b32c31;
}
@media (max-width: 900px) {
    .pte-container {
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
        padding: 18px 7vw;
        width: 99vw;
        max-width: 99vw;
    }
    .pte-img-container {
        justify-content: center;
    }
    .pte-img {
        width: 160px;
        height: 260px;
        max-height: 300px;
        margin: 0 auto;
    }
    .pte-button {
        width: 99vw;
    }
}
@media (max-width: 500px) {
    .pte-title {
        font-size: 1.1rem;
    }
    .pte-container {
        padding: 10px 4vw;
    }
    .pte-img {
        width: 90px;
        height: 150px;
    }
}


/*-------------------SPOKEN ENGLISH PAGE ------------------------*/

.spoken-title {
    margin-top: 100px;
    margin-bottom: 12px;
    text-align: center;
    color: #e82323;
    font-size: 2.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    width: 100vw;
}
.spoken-main-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 32px;
    width: 99vw;
    max-width: 1200px;
    margin: 0 auto 35px auto;
    padding: 0 1vw;
}
.spoken-main-content {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
}
.spoken-desc-box {
    background: #fff;
    border: 1px solid #b4b4b4;
    border-radius: 3px;
    padding: 16px 14px 10px 16px;
    font-size: 1.04rem;
    margin-bottom: 0;
}
.spoken-desc-box p {
    margin-top: 0;
    margin-bottom: 11px;
    line-height: 1.45;
}
.spoken-skills {
    margin-top: 13px;
    font-weight: 700;
    font-size: 1.04rem;
}
.spoken-skills span {
    display: inline-block;
    font-weight: 700;
    margin-bottom: 4px;
    color: #444;
}
.spoken-skills ul {
    list-style: disc;
    margin: 3px 0 3px 16px;
    padding: 0;
    font-weight: 400;
    font-size: 1rem;
}
.spoken-skills li {
    margin-bottom: 3px;
    letter-spacing: 0.5px;
}
.spoken-img-box {
    flex: 1 1 320px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}
.spoken-img {
    width: 430px;
    height: 500px;
    object-fit: cover;
    border-radius: 5px;
    background: #e5e5e5;
    box-shadow: 0 2px 12px rgba(80,80,80,0.09);
}
.focus-title {
    text-align: center;
    color: #e82323;
    font-size: 2rem;
    font-weight: 700;
    margin-top: 36px;
    margin-bottom: 13px;
    letter-spacing: 1px;
}
.focus-list-container {
    display: flex;
    justify-content: left;
    margin-bottom: 24px;
    margin-left: 170px;
}
.focus-list {
    background: none;
    padding: 0 8px 0 34px;
    font-size: 1.13rem;
    color: #222;
    max-width: 600px;
}
.focus-list li {
    margin-bottom: 8px;
    line-height: 1.2;
}
.spoken-btn {
    display: block;
    width: 97vw;
    max-width: 410px;
    margin: 30px auto 0 auto;
    background: #e82323;
    color: #fff;
    font-size: 1.13rem;
    font-weight: 700;
    text-align: center;
    padding: 13px 0;
    border-radius: 7px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(232,35,35,0.12);
    transition: background 0.17s;
}
.spoken-btn:hover {
    background: #b32c31;
}

/* Responsive */
@media (max-width: 900px) {
    .spoken-main-section {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        max-width: 99vw;
    }
    .spoken-img-box {
        justify-content: center;
    }
    .spoken-img {
        width: 220px;
        height: 180px;
    }
}
@media (max-width: 500px) {
    .spoken-title, .focus-title {
        font-size: 1.2rem;
    }
    .spoken-desc-box {
        font-size: 0.97rem;
        padding: 7px 5px;
    }
    .spoken-img {
        width: 108px;
        height: 88px;
    }
    .focus-list {
        font-size: 1rem;
        padding-left: 17px;
    }
    .spoken-btn {
        width: 98vw;
        font-size: 1rem;
    }
}


/*-----------------STUDY VISA PAGE -------------------*/

.visa-title {
    margin-top: 100px;
    margin-bottom: 12px;
    text-align: center;
    color: #e82323;
    font-size: 2.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    width: 100vw;
}
.visa-main-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 32px;
    width: 99vw;
    max-width: 1100px;
    margin: 0 auto 20px auto;
    padding: 0 1vw;
}
.visa-main-content {
    flex: 2 1 450px;
    display: flex;
    flex-direction: column;
}
.visa-desc-box {
    background: #fff;
    border: 1px solid #b4b4b4;
    border-radius: 4px;
    padding: 16px 18px 12px 16px;
    font-size: 1.07rem;
    margin-bottom: 0;
}
.visa-desc-box p {
    margin-top: 0;
    margin-bottom: 10px;
    line-height: 1.44;
}
.visa-desc-box ul {
    font-size: 1rem;
    margin: 7px 0 9px 16px;
    padding-left: 16px;
}
.visa-desc-box li {
    margin-bottom: 3px;
    letter-spacing: 0.5px;
}
.visa-img-box {
    flex: 1 1 320px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}
.visa-img {
    width: 380px;
    height: 350px;
    object-fit: cover;
    border-radius: 7px;
    background: #e5e5e5;
    box-shadow: 0 2px 12px rgba(80,80,80,0.09);
}
.visa-btn {
    display: block;
    width: 97vw;
    max-width: 420px;
    margin: 30px auto 0 auto;
    background: #e82323;
    color: #fff;
    font-size: 1.13rem;
    font-weight: 700;
    text-align: center;
    padding: 13px 0;
    border-radius: 7px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(232,35,35,0.12);
    transition: background 0.17s;
}
.visa-btn:hover {
    background: #b32c31;
}
/* Responsive */
@media (max-width: 900px) {
    .visa-main-section {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        max-width: 99vw;
    }
    .visa-img-box {
        justify-content: center;
    }
    .visa-img {
        width: 170px;
        height: 120px;
    }
}
@media (max-width: 500px) {
    .visa-title {
        font-size: 1.2rem;
    }
    .visa-desc-box {
        font-size: 0.97rem;
        padding: 7px 5px;
    }
    .visa-img {
        width: 98px;
        height: 60px;
    }
    .visa-btn {
        width: 98vw;
        font-size: 1rem;
    }
}



/*--------------------------PERMANENT RESIDENCY PAGE --------------------*/

body {
    font-family: 'Roboto', Arial, sans-serif;
    background: #f7f7fa;
    margin: 0;
    padding: 0;
    color: #222;
}
.pr-title {
    margin-top: 100px;
    margin-bottom: 12px;
    text-align: center;
    color: #e82323;
    font-size: 2.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    width: 100vw;
}
.pr-main-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 32px;
    width: 99vw;
    max-width: 1200px;
    margin: 0 auto 20px auto;
    padding: 0 1vw;
}
.pr-main-content {
    flex: 2 1 500px;
    display: flex;
    flex-direction: column;
}
.pr-desc-box {
    background: #fff;
    border: 1px solid #b4b4b4;
    border-radius: 4px;
    padding: 16px 18px 10px 16px;
    font-size: 1.06rem;
    margin-bottom: 0;
}
.pr-desc-box p, .pr-desc-box ul {
    margin-top: 0;
    margin-bottom: 12px;
    line-height: 1.45;
}
.pr-desc-box ul {
    font-size: 1.02rem;
    margin-left: 18px;
    padding-left: 14px;
}
.pr-desc-box li {
    margin-bottom: 3px;
    letter-spacing: 0.5px;
}
.pr-services-title {
    margin-bottom: 3px;
    color: #e82323;
}
.pr-img-box {
    flex: 1 1 320px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}
.pr-img {
    width: 420px;
    height: 510px;
    object-fit: cover;
    border-radius: 7px;
    background: #e5e5e5;
    box-shadow: 0 2px 12px rgba(80,80,80,0.09);
}
.pr-btn {
    display: block;
    width: 97vw;
    max-width: 420px;
    margin: 32px auto 0 auto;
    background: #e82323;
    color: #fff;
    font-size: 1.13rem;
    font-weight: 700;
    text-align: center;
    padding: 13px 0;
    border-radius: 7px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(232,35,35,0.12);
    transition: background 0.17s;
}
.pr-btn:hover {
    background: #b32c31;
}
/* Responsive */
@media (max-width: 900px) {
    .pr-main-section {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        max-width: 99vw;
    }
    .pr-img-box {
        justify-content: center;
    }
    .pr-img {
        width: 200px;
        height: 170px;
    }
}
@media (max-width: 500px) {
    .pr-title {
        font-size: 1.2rem;
    }
    .pr-desc-box {
        font-size: 0.97rem;
        padding: 7px 5px;
    }
    .pr-img {
        width: 95px;
        height: 75px;
    }
    .pr-btn {
        width: 98vw;
        font-size: 1rem;
    }
}



/*-----------------WORK VISA PAGE ---------------------*/


.work-title {
    margin-top: 100px;
    margin-bottom: 14px;
    text-align: center;
    color: #e82323;
    font-size: 2.05rem;
    font-weight: 700;
    letter-spacing: 1px;
    width: 100vw;
}
.work-main-section {
    display: flex;
    justify-content: center;
    width: 99vw;
    max-width: 900px;
    margin: 0 auto 22px auto;
    padding: 0 1vw;
}
.work-desc-box {
    background: #fff;
    border-radius: 4px;
    padding: 22px 19px 16px 20px;
    font-size: 1.07rem;
    margin-bottom: 0;
    box-shadow: 0 2px 12px rgba(42,42,42,0.07);
}
.work-subhead {
    color: #e82323;
    font-weight: 700;
    font-size: 1.13rem;
    margin-bottom: 9px;
}
.work-desc-box p {
    margin-top: 0;
    margin-bottom: 12px;
    line-height: 1.47;
}
.work-highlight {
    color: #e82323;
    font-weight: 700;
}
.work-btn {
    display: block;
    width: 97vw;
    max-width: 420px;
    margin: 32px auto 0 auto;
    background: #e82323;
    color: #fff;
    font-size: 1.13rem;
    font-weight: 700;
    text-align: center;
    padding: 13px 0;
    border-radius: 7px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(232,35,35,0.12);
    transition: background 0.17s;
}
.work-btn:hover {
    background: #b32c31;
}
@media (max-width: 600px) {
    .work-title {
        font-size: 1.15rem;
    }
    .work-desc-box {
        font-size: 0.97rem;
        padding: 10px 7px;
    }
    .work-btn {
        width: 99vw;
        font-size: 1rem;
    }
}



/*-------------------------VISITOR VISA PAGE ----------------*/


.visitor-title {
    margin-top: 100px;
    margin-bottom: 12px;
    text-align: center;
    color: #e82323;
    font-size: 2.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    width: 100vw;
}
.visitor-main-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 32px;
    width: 99vw;
    max-width: 1100px;
    margin: 0 auto 20px auto;
    padding: 0 1vw;
}
.visitor-main-content {
    flex: 2 1 500px;
    display: flex;
    flex-direction: column;
}
.visitor-desc-box {
    background: #fff;
    border-radius: 5px;
    padding: 18px 18px 13px 16px;
    font-size: 1.07rem;
    margin-bottom: 0;
    box-shadow: 0 2px 12px rgba(42,42,42,0.07);
}
.visitor-desc-box p {
    margin-top: 0;
    margin-bottom: 12px;
    line-height: 1.44;
}
.visitor-img-box {
    flex: 1 1 310px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}
.visitor-img {
    width: 360px;
    height: 500px;
    object-fit: cover;
    border-radius: 7px;
    background: #e5e5e5;
    box-shadow: 0 2px 12px rgba(80,80,80,0.09);
}
.visitor-btn {
    display: block;
    width: 97vw;
    max-width: 420px;
    margin: 32px auto 0 auto;
    background: #e82323;
    color: #fff;
    font-size: 1.13rem;
    font-weight: 700;
    text-align: center;
    padding: 13px 0;
    border-radius: 7px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(232,35,35,0.12);
    transition: background 0.17s;
}
.visitor-btn:hover {
    background: #b32c31;
}
/* Responsive */
@media (max-width: 900px) {
    .visitor-main-section {
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
        max-width: 99vw;
    }
    .visitor-img-box {
        justify-content: center;
    }
    .visitor-img {
        width: 140px;
        height: 120px;
    }
}
@media (max-width: 500px) {
    .visitor-title {
        font-size: 1.18rem;
    }
    .visitor-desc-box {
        font-size: 0.97rem;
        padding: 7px 5px;
    }
    .visitor-img {
        width: 82px;
        height: 64px;
    }
    .visitor-btn {
        width: 98vw;
        font-size: 1rem;
    }
}

/* Enable smooth scrolling for the entire page */
html {
    scroll-behavior: smooth;
}

/* Adjust for header fixed position */
section {
    scroll-margin-top: 80px; /* Adjust based on your header height */
}
