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

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);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-info {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
}

.contact-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-header img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
}

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

.contact-header p {
    font-size: 14px;
    color: #666;
}

.address {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    text-align: center;
}

.call-text {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin-bottom: 15px;
}

.phone-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.phone-number i {
    font-size: 30px;
    color: #25d366;
}

.phone-number span {
    font-size: 32px;
    font-weight: 800;
    color: #e53e3e;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* 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;
}