    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

    :root {
      --primary: #0364FF;
      --secondary: #00A3FF;
      --accent: #ff6b00;
      --light: #f8faff;
      --dark: #002147;
      --text: #333;
      --gray: #555;
    }
        
        body {
            background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 20px;
            color: #333;
            margin: 0;
        }
        
        .container {
            width: 100%;
        /*    max-width: 1300px;*/
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            position: relative;
        }
        
        header {
            background: white;
            padding: 15px 30px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }
        
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #0364FF 0%, #00A3FF 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 22px;
            font-weight: bold;
            margin-right: 12px;
        }
        
        .logo-text {
            font-size: 24px;
            font-weight: 800;
            color: #0364FF;
        }
        
        .nav-links {
            display: flex;
            align-items: center;
            flex: 1;
            justify-content: flex-start;
            margin-left: 40px;
        }
        
        .nav-links > li {
            list-style: none;
            position: relative;
        }
        
        .nav-links a, .nav-links .dropdown-btn {
            text-decoration: none;
            color: #292e3e;
            font-size: 18px;
            font-weight: 600;
            line-height: 28px;
            position: relative;
            padding: 10px 15px;
            margin: 0 5px;
            transition: all 0.3s ease;
            display: block;
            cursor: pointer;
        }
        
        .nav-links a:hover, .nav-links .dropdown-btn:hover {
            color: #0364FF;
        }
        
        .nav-links a:hover::after, .nav-links .dropdown-btn:hover::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 15px;
            right: 15px;
            height: 3px;
            background: #0364FF;
            border-radius: 2px;
        }
        
        .dropdown-btn {
            background: none;
            border: none;
            outline: none;
        }
        
        .dropdown-btn i {
            font-size: 12px;
            margin-left: 5px;
        }
        
        .dropdown-content {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 220px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
            border-radius: 8px;
            padding: 15px 0;
            z-index: 100;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
        }
        
        .dropdown:hover .dropdown-content {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .dropdown-content li {
            list-style: none;
            padding: 10px 25px;
            transition: all 0.2s ease;
        }
        
        .dropdown-content li:hover {
            background: #f0f7ff;
        }
        
        .dropdown-content a {
            padding: 0;
            margin: 0;
            display: block;
            font-weight: 500;
            font-size: 16px;
        }
        
        .dropdown-content a:hover::after {
            display: none;
        }
        
        .btn-group {
            display: flex;
            gap: 15px;
        }
        
        .btn {
            padding: 12px 25px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            text-align: center;
        }
        
        .register {
            background: white;
            border: 2px solid #0364FF;
            color: #0364FF;
        }
        
        .register:hover {
            background: #f0f7ff;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(3, 100, 255, 0.2);
        }
        
        .login {
            background: #0364FF;
            color: white;
            border: 2px solid #0364FF;
        }
        
        .login:hover {
            background: #0254d6;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(3, 100, 255, 0.3);
        }
        
        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 24px;
            color: #0364FF;
            background: none;
            border: none;
            outline: none;
        }
        
        .mobile-menu {
            display: none;
            background: white;
            padding: 20px;
            border-top: 1px solid #eee;
            width: 100%;
        }
        
        .mobile-menu li {
            list-style: none;
        }
        
        .mobile-menu a, .mobile-menu .mobile-dropdown-btn {
            display: block;
            padding: 12px 0;
            text-decoration: none;
            color: #292e3e;
            font-weight: 600;
            border-bottom: 1px solid #f0f0f0;
            cursor: pointer;
        }
        
        .mobile-menu .mobile-dropdown-btn {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            background: none;
            border: none;
            outline: none;
        }
        
        .mobile-dropdown {
            padding-left: 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .mobile-dropdown.active {
            max-height: 500px;
        }
        
        .mobile-dropdown li {
            padding: 8px 0;
        }
        
        .mobile-dropdown a {
            font-weight: 500;
            font-size: 16px;
            padding: 5px 0;
            border: none;
        }
        
        /* Search Container Styles */
        .search-container {
            background: linear-gradient(135deg, #0364FF 0%, #00A3FF 100%);
            padding: 50px 40px;
            border-radius: 15px;
            margin: 40px;
            position: relative;
            z-index: 10;
            box-shadow: 0 15px 30px rgba(3, 100, 255, 0.25);
        }
        
        .search-container h1 {
            color: white;
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 35px;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
        }
        
        .form-container {
            display: flex;
            justify-content: center;
            gap: 20px;
        }
        
        .form-item {
            position: relative;
            flex: 1;
            max-width: 400px;
        }
        
        .form-item .item {
            position: relative;
            height: 60px;
            display: flex;
            align-items: center;
            background: white;
            border-radius: 10px;
            padding: 0 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .form-item .item:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        
        .form-item i {
            color: #0364FF;
            font-size: 20px;
            width: 30px;
        }
        
        .form-item input, .form-item select {
            flex: 1;
            height: 100%;
            border: none;
            outline: none;
            font-size: 16px;
            background: transparent;
            padding-left: 10px;
            color: #333;
        }
        
        .form-item select {
            appearance: none;
            cursor: pointer;
        }
        
        .form-item .item::after {
            content: "\f107";
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: #0364FF;
            pointer-events: none;
        }
        
        .search-button {
            display: block;
            width: 180px;
            height: 60px;
            background: #ff6b00;
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 18px;
            font-weight: 600;
            margin: 30px auto 0;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
        }
        
        .search-button:hover {
            background: #e05a00;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 107, 0, 0.4);
        }
        
        /* New Content Styles */
        .content-container {
            display: flex;
            padding: 60px 40px;
            align-items: center;
            gap: 50px;
        }
        
        .text-content {
            flex: 1;
            text-align: left;
        }
        
        .text-content h1 {
            color: #0364FF;
            font-size: 3rem;
            margin-bottom: 25px;
            line-height: 1.2;
            position: relative;
            padding-bottom: 15px;
        }
        
        .text-content h1::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #0364FF, #00A3FF);
            border-radius: 2px;
        }
        
        .text-content p {
            color: #555;
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 30px;
            max-width: 600px;
        }
        
        .highlight {
            color: #0364FF;
            font-weight: 700;
        }
        
        .stats {
            display: flex;
            gap: 30px;
            margin-top: 40px;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-size: 2.2rem;
            font-weight: 700;
            color: #0364FF;
            line-height: 1;
        }
        
        .stat-label {
            font-size: 1rem;
            color: #666;
            margin-top: 5px;
        }
        
        .image-content {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .image-placeholder {
            width: 100%;
          /*  max-width: 500px;
            height: 400px;*/
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
            position: relative;
            background: linear-gradient(135deg, #f0f7ff 0%, #e0eeff 100%);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
           /* padding: 20px;*/
            text-align: center;
            color: #0364FF;
        }
        
        .image-placeholder i {
            font-size: 80px;
            margin-bottom: 20px;
            opacity: 0.7;
        }
        
        .image-placeholder p {
            font-size: 18px;
            max-width: 300px;
            color: #0364FF;
        }
        
        .cta-button {
            display: inline-block;
            background: #0364FF;
            color: white;
            padding: 15px 35px;
            border-radius: 8px;
            font-size: 18px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            margin-top: 20px;
            box-shadow: 0 5px 15px rgba(3, 100, 255, 0.3);
        }
        
        .cta-button:hover {
            background: #0254d6;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(3, 100, 255, 0.4);
        }
        
        /* Statistics Cards Section */
        .stats-section {
            padding: 40px;
            text-align: center;
        }
        
        .stats-section h2 {
            color: #0364FF;
            font-size: 2.5rem;
            margin-bottom: 50px;
            position: relative;
            display: inline-block;
        }
        
        .stats-section h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #0364FF, #00A3FF);
            border-radius: 2px;
        }
        
        .stats-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 30px;
        }
        
        .stat-card {
            background: linear-gradient(135deg, #0364FF 0%, #00A3FF 100%);
            border-radius: 15px;
            padding: 30px 25px;
            width: 220px;
            box-shadow: 0 10px 20px rgba(3, 100, 255, 0.2);
            transition: all 0.3s ease;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(3, 100, 255, 0.3);
        }
        
        .stat-card::before {
            content: '';
            position: absolute;
            top: -20px;
            right: -20px;
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }
        
        .stat-card i {
            font-size: 40px;
            background: white;
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin: 0 auto 20px;
            color: #0364FF;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .stat-card .number {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }
        
        .stat-card .label {
            font-size: 1.1rem;
            font-weight: 600;
        }
        
        /* Responsive styles */
        @media (max-width: 992px) {
            .nav-links {
                margin-left: 20px;
            }
            
            .nav-links a, .nav-links .dropdown-btn {
                padding: 10px 12px;
                font-size: 16px;
            }
            
            .btn {
                padding: 10px 20px;
            }
            
            .content-container {
                gap: 30px;
                padding: 40px 30px;
            }
            
            .text-content h1 {
                font-size: 2.5rem;
            }
            
            .search-container {
                padding: 40px 30px;
                margin: 40px 30px;
            }
            
            .search-container h1 {
                font-size: 2.2rem;
            }
            
            .stat-card {
                width: 200px;
            }
        }
        
        @media (max-width: 768px) {
            .nav-links, .btn-group {
                display: none;
            }
            
            .hamburger {
                display: block;
            position: absolute;
                top: 20px;
                right: 20px;
            }
            
            .mobile-menu {
                display: block;
            }
            
            .content-container {
                flex-direction: column;
                padding: 40px 20px;
            }
            
            .text-content {
                text-align: center;
            }
            
            .text-content h1::after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .text-content p {
                margin-left: auto;
                margin-right: auto;
            }
            
            .stats {
                justify-content: center;
            }
            
            .image-placeholder {
                height: 350px;
            }
            
            .search-container {
                margin: 30px 20px;
                padding: 30px 20px;
            }
            
            .form-container {
                flex-direction: column;
                align-items: center;
            }
            
            .form-item {
                width: 100%;
                max-width: 500px;
            }
            
            .stats-container {
                gap: 20px;
            }
            
            .stat-card {
                width: calc(50% - 20px);
                max-width: 250px;
            }
        }
        
        @media (max-width: 480px) {
            .logo-text {
                font-size: 20px;
            }
            
            .btn {
                padding: 8px 16px;
                font-size: 14px;
            }
            
            .text-content h1 {
                font-size: 2rem;
            }
            
            .stats {
                flex-direction: column;
                gap: 20px;
            }
            
            .image-placeholder {
                height: 300px;
            }
            
            .cta-button {
                padding: 12px 25px;
                font-size: 16px;
            }
            
            .search-container {
                padding: 25px 15px;
                margin: 30px 15px;
            }
            
            .search-container h1 {
                font-size: 1.8rem;
            }
            
            .form-item .item {
                height: 55px;
            }
            
            .stats-section h2 {
                font-size: 2rem;
            }
            
            .stat-card {
                width: 100%;
                max-width: 300px;
            }
        }

            .study-abroad-section {
        padding: 80px 40px;
        background: #f8faff;
        border-radius: 15px;
        margin: 40px;
    }
    
    .study-abroad-container {
        display: flex;
        align-items: center;
        gap: 60px;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .study-abroad-text {
        flex: 1;
    }
    
    .study-abroad-text h1 {
        color: #0364FF;
        font-size: 2.8rem;
        margin-bottom: 25px;
        position: relative;
        padding-bottom: 15px;
    }
    
    .study-abroad-text h1::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100px;
        height: 4px;
        background: linear-gradient(90deg, #0364FF, #00A3FF);
        border-radius: 2px;
    }
    
    .study-abroad-text p {
        color: #555;
        font-size: 1.1rem;
        line-height: 1.7;
        margin-bottom: 30px;
    }
    
    .feature-list {
        list-style: none;
        padding: 0;
        margin: 0 0 35px;
    }
    
    .feature-list li {
        position: relative;
        padding-left: 45px;
        margin-bottom: 20px;
        font-size: 18px;
        line-height: 1.6;
        color: #292e3e;
    }
    
    .feature-list li i {
        position: absolute;
        left: 0;
        top: 0;
        width: 32px;
        height: 32px;
        background: #0364FF;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
    }
    
    .study-abroad-image {
        flex: 1;
        display: flex;
        justify-content: center;
    }
    
    .study-image-placeholder {
        width: 100%;
        max-width: 500px;
        height: 350px;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        position: relative;
        background: linear-gradient(135deg, #f0f7ff 0%, #e0eeff 100%);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px;
        text-align: center;
        color: #0364FF;
    }
    
    .study-image-placeholder i {
        font-size: 70px;
        margin-bottom: 20px;
        opacity: 0.7;
    }
    
    .study-image-placeholder p {
        font-size: 18px;
        max-width: 300px;
        color: #0364FF;
    }
    
    /* Responsive adjustments */
    @media (max-width: 992px) {
        .study-abroad-container {
            gap: 40px;
        }
        
        .study-abroad-text h1 {
            font-size: 2.4rem;
        }
        
        .feature-list li {
            font-size: 17px;
        }
    }
    
    @media (max-width: 768px) {
        .study-abroad-section {
            margin: 30px 20px;
            padding: 50px 20px;
        }
        
        .study-abroad-container {
            flex-direction: column;
        }
        
        .study-abroad-text {
            text-align: center;
        }
        
        .study-abroad-text h1::after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        .feature-list li {
            text-align: left;
        }
    }
    
    @media (max-width: 480px) {
        .study-abroad-section {
            margin: 20px 15px;
            padding: 40px 15px;
        }
        
        .study-abroad-text h1,.solutions h1 {
            font-size: 2rem;
        }
        
        .feature-list li {
            padding-left: 40px;
            font-size: 16px;
        }
    }


    /* Client Testimonials Section Styles */
.client-testimonies {
    padding: 80px 40px;
    text-align: center;
    background: #f8faff;
}

.client-testimonies h1 {
    color: #0364FF;
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.client-testimonies h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0364FF, #00A3FF);
    border-radius: 2px;
}

.client-testimonies > p {
    color: #555;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.testimonials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: #f1f5f9; /* Light gray background */
    border-radius: 15px;
    padding: 40px 30px 30px;
    width: 100%;
    max-width: 350px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
    text-align: left;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(3, 100, 255, 0.1);
}

.testimonial-card i.fa-quote-left {
    color: #0364FF;
    font-size: 40px;
    position: absolute;
    top: 20px;
    left: 30px;
    opacity: 0.2;
}

.testimonial-card .title {
    color: #0364FF;
    font-size: 1.4rem;
    margin-bottom: 20px;
    padding-top: 10px;
}

.testimonial-card .testimony {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #0364FF;
}

.client-info p {
    font-weight: 600;
    color: #292e3e;
}

.client-info p span {
    display: block;
    font-weight: normal;
    color: #777;
    font-size: 0.9rem;
    margin-top: 5px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .client-testimonies {
        padding: 60px 30px;
    }
    
    .client-testimonies h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .client-testimonies {
        padding: 50px 20px;
    }
    
    .testimonial-card {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .client-testimonies h1 {
        font-size: 2rem;
    }
    
    .client-testimonies > p {
        font-size: 1rem;
    }
    
    .testimonial-card {
        padding: 35px 25px 25px;
    }
}


.universities-section {
  padding: 80px 40px;
  background: #f8faff;
  border-radius: 15px;
  margin: 40px;
  text-align: center;
}

.universities-section h2 {
  color: #0364FF;
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.universities-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #0364FF, #00A3FF);
  border-radius: 2px;
}

.universities-section > p {
  color: #555;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

.countries {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin: 30px 0;
}

.country-btn {
  padding: 10px 20px;
  border: 2px solid #dbe0e4;
  border-radius: 30px;
  background: white;
  color: #333;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.country-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.country-btn.active {
  background: #0364FF;
  color: white;
  border-color: #0364FF;
  box-shadow: 0 5px 15px rgba(3, 100, 255, 0.25);
}

.country-btn img {
  width: 24px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: left;
  position: relative;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(3, 100, 255, 0.2);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.featured-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #0364FF;
  color: white;
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 600;
}

.card-content {
  padding: 25px;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.4rem;
  color: #0364FF;
}

.location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  color: #666;
  margin-bottom: 15px;
}

.location i {
  color: #0364FF;
}

.card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #eee;
  padding-top: 15px;
}

.rating {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  color: #0364FF;
}

.rating i {
  color: #FFC107;
}

.view-btn {
  padding: 8px 20px;
  background: #0364FF;
  color: white;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.view-btn:hover {
  background: #0254d6;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(3, 100, 255, 0.3);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .universities-section {
    padding: 60px 30px;
  }
  
  .universities-section h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .universities-section {
    padding: 50px 20px;
    margin: 30px 20px;
  }
  
  .countries {
    gap: 10px;
  }
  
  .country-btn {
    padding: 8px 15px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .universities-section h2 {
    font-size: 2rem;
  }
  
  .universities-section > p {
    font-size: 1rem;
  }
  
  .country-btn {
    padding: 6px 12px;
  }
}

    .banner-section {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      background: linear-gradient(to right, #0052cc, #007bff);
      color: white;
      border-radius: 20px;
      margin: 40px auto;
      padding: 40px 20px;
      max-width: 1100px;
      overflow: hidden;
    }

    .banner-image {
      flex: 1 1 300px;
      text-align: center;
      padding: 10px;
    }

    .banner-image img {
      max-width: 250px;
      border-radius: 20px;
    }

    .banner-content {
      flex: 1 1 400px;
      padding: 20px;
    }

    .banner-content h2 {
      font-size: 28px;
      margin-bottom: 15px;
    }

    .banner-content p {
      font-size: 16px;
      line-height: 1.5;
      margin-bottom: 25px;
    }

    .cta-button {
      background: white;
      color: #0046b3;
      padding: 12px 24px;
      font-weight: bold;
      border: none;
      border-radius: 6px;
      text-decoration: none;
      transition: 0.3s ease;
    }

    .cta-button:hover {
      background: #e6e6e6;
    }

    @media (max-width: 768px) {
      .banner-section {
        flex-direction: column;
        text-align: center;
        padding: 30px 15px;
      }

      .banner-content h2 {
        font-size: 22px;
      }

      .banner-content p {
        font-size: 15px;
      }
    }

    .faq-container {
      width: 100%;
   /*   max-width: 1200px;*/
      background: white;
      border-radius: 20px;
      box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      position: relative;
      padding: 60px;
    }
    
    .faq-header {
      text-align: center;
      margin-bottom: 50px;
      position: relative;
    }
    
    .faq-header h2 {
      font-size: 2.8rem;
      color: #0364FF;
      margin-bottom: 15px;
      position: relative;
      display: inline-block;
    }
    
    .faq-header h2::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: linear-gradient(90deg, #0364FF, #00A3FF);
      border-radius: 2px;
    }
    
    .faq-header p {
      color: #555;
      font-size: 1.2rem;
      max-width: 700px;
      margin: 25px auto 0;
      line-height: 1.7;
    }
    
    .faq-content {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
    }
    
    .faq-text {
      flex: 1;
      min-width: 300px;
      padding: 30px;
      border-radius: 15px;
      background: #f8faff;
      box-shadow: 0 10px 30px rgba(3, 100, 255, 0.08);
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    
    .faq-text h3 {
      font-size: 1.8rem;
      color: #0364FF;
      margin-bottom: 25px;
    }
    
    .faq-text p {
      color: #555;
      font-size: 1.1rem;
      line-height: 1.7;
      margin-bottom: 30px;
    }
    
    .faq-contact {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-top: 20px;
      padding: 15px;
      background: white;
      border-radius: 12px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
    }
    
    .faq-contact:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(3, 100, 255, 0.15);
    }
    
    .contact-icon {
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, #0364FF 0%, #00A3FF 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 20px;
    }
    
    .contact-info h4 {
      font-size: 1.1rem;
      color: #0364FF;
      margin-bottom: 5px;
    }
    
    .contact-info p {
      margin: 0;
      font-size: 1rem;
      color: #666;
    }
    
    .faq-accordion {
      flex: 1;
      min-width: 500px;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    
    .accordion-item {
      background: white;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      border: 2px solid #e9f0ff;
    }
    
    .accordion-item:hover {
      border-color: #0364FF;
    }
    
    .accordion-item.active {
      border-color: #0364FF;
      box-shadow: 0 10px 30px rgba(3, 100, 255, 0.15);
      transform: translateY(-3px);
    }
    
    .accordion-header {
      padding: 25px 30px;
      cursor: pointer;
      font-weight: 600;
      font-size: 1.2rem;
      color: #1f1f1f;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: white;
      transition: all 0.3s ease;
    }
    
    .accordion-item.active .accordion-header {
      background: #f0f7ff;
    }
    
    .accordion-header .icon {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: #e9f0ff;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #0364FF;
      transition: all 0.3s ease;
    }
    
    .accordion-item.active .accordion-header .icon {
      background: #0364FF;
      color: white;
      transform: rotate(180deg);
    }
    
    .accordion-content {
      max-height: 0;
      overflow: hidden;
      background: white;
      color: #555;
      padding: 0 30px;
      transition: max-height 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), padding 0.4s ease;
    }
    
    .accordion-item.active .accordion-content {
      max-height: 300px;
      padding: 0 30px 25px;
    }
    
    .accordion-content p {
      font-size: 1.1rem;
      line-height: 1.7;
      padding: 15px 0 0;
    }
    
    /* Decorative elements */
    .faq-decor {
      position: absolute;
      z-index: 0;
    }
    
    .decor-1 {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      border: 15px solid rgba(3, 100, 255, 0.08);
      top: 40px;
      right: 80px;
    }
    
    .decor-2 {
      width: 80px;
      height: 80px;
      background: rgba(3, 100, 255, 0.05);
      border-radius: 20px;
      bottom: 60px;
      left: 70px;
      transform: rotate(45deg);
    }
    
    .decor-3 {
      width: 40px;
      height: 40px;
      background: #0364FF;
      border-radius: 50%;
      bottom: 120px;
      right: 150px;
      opacity: 0.1;
    }
    
    /* Responsive design */
    @media (max-width: 992px) {
      .faq-container {
        padding: 40px 30px;
      }
      
      .faq-header h2 {
        font-size: 2.4rem;
      }
      
      .faq-content {
        gap: 30px;
      }
      
      .faq-accordion {
        min-width: 100%;
      }
    }
    
    @media (max-width: 768px) {
      .faq-container {
        padding: 30px 20px;
      }
      
      .faq-header h2 {
        font-size: 2rem;
      }
      
      .faq-header p {
        font-size: 1rem;
      }
      
      .accordion-header {
        padding: 20px;
        font-size: 1.1rem;
      }
      
      .faq-text h3 {
        font-size: 1.5rem;
      }
    }
    
    @media (max-width: 480px) {
      .faq-container {
        padding: 25px 15px;
      }
      
      .faq-header h2 {
        font-size: 1.8rem;
      }
      
      .faq-header p {
        font-size: 0.95rem;
      }
      
      .accordion-header {
        padding: 18px;
        font-size: 1rem;
      }
      
      .accordion-content p {
        font-size: 1rem;
      }
      
      .decor-1, .decor-2, .decor-3 {
        display: none;
      }
    }

        .services-section {
      width: 100%;
   /*   max-width: 1200px;*/
      background: white;
      border-radius: 20px;
      box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      position: relative;
      padding: 80px 60px;
      margin: 40px 0;
    }
    
    .services-header {
      text-align: center;
      margin-bottom: 60px;
      position: relative;
    }
    
    .services-header h1 {
      font-size: 2.8rem;
      color: #0364FF;
      margin-bottom: 15px;
      position: relative;
      display: inline-block;
    }
    
    .services-header h1::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: linear-gradient(90deg, #0364FF, #00A3FF);
      border-radius: 2px;
    }
    
    .services-header p {
      color: #555;
      font-size: 1.2rem;
      max-width: 700px;
      margin: 25px auto 0;
      line-height: 1.7;
    }
    
    .services-rows {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 40px;
    }
    
    .services-col {
      flex: 1;
      min-width: 300px;
      max-width: 350px;
      background: #f8faff;
      border-radius: 20px;
      padding: 40px 30px;
      text-align: center;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      position: relative;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(3, 100, 255, 0.1);
      z-index: 1;
    }
    
    .services-col::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: linear-gradient(90deg, #0364FF, #00A3FF);
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    
    .services-col:hover {
      transform: translateY(-15px);
      box-shadow: 0 20px 40px rgba(3, 100, 255, 0.2);
    }
    
    .services-col:hover::before {
      opacity: 1;
    }
    
    .icon-wrapper {
      width: 100px;
      height: 100px;
      margin: 0 auto 25px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, rgba(3, 100, 255, 0.1) 0%, rgba(0, 163, 255, 0.1) 100%);
      border-radius: 50%;
      position: relative;
    }
    
    .icon-wrapper i {
      font-size: 42px;
      color: #0364FF;
      z-index: 2;
    }
    
    .icon-wrapper::after {
      content: '';
      position: absolute;
      width: 70px;
      height: 70px;
      background: rgba(3, 100, 255, 0.1);
      border-radius: 50%;
      z-index: 1;
      animation: pulse 3s infinite;
    }
    
    @keyframes pulse {
      0% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.3); opacity: 0.5; }
      100% { transform: scale(1); opacity: 1; }
    }
    
    .services-col h2,.solutions h1 {
      font-size: 1.8rem;
      color: #0364FF;
      margin-bottom: 20px;
    }
    
    .services-col p ,.solutions p{
      color: #555;
      font-size: 1.1rem;
      line-height: 1.7;
      margin-bottom: 25px;
    }
    
    .service-btn {
      display: inline-block;
      padding: 12px 30px;
      background: white;
      color: #0364FF;
      border: 2px solid #0364FF;
      border-radius: 30px;
      font-size: 1rem;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
      position: relative;
      z-index: 2;
    }
    
    .service-btn:hover {
      background: #0364FF;
      color: white;
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(3, 100, 255, 0.3);
    }
    
    .service-btn i {
      margin-left: 8px;
      transition: transform 0.3s ease;
    }
    
    .service-btn:hover i {
      transform: translateX(5px);
    }
    
    /* Decorative elements */
    .services-decor {
      position: absolute;
      z-index: 0;
    }
    
    .decor-circle {
      width: 180px;
      height: 180px;
      border-radius: 50%;
      border: 15px solid rgba(3, 100, 255, 0.05);
      top: 50px;
      right: 80px;
    }
    
    .decor-square {
      width: 100px;
      height: 100px;
      background: rgba(3, 100, 255, 0.05);
      border-radius: 20px;
      bottom: 80px;
      left: 70px;
      transform: rotate(45deg);
    }
    
    .decor-dot {
      width: 25px;
      height: 25px;
      background: #0364FF;
      border-radius: 50%;
      bottom: 150px;
      right: 200px;
      opacity: 0.1;
    }
    
    /* Responsive design */
    @media (max-width: 992px) {
      .services-section {
        padding: 60px 40px;
      }
      
      .services-header h1 {
        font-size: 2.4rem;
      }
      
      .services-rows {
        gap: 30px;
      }
    }
    
    @media (max-width: 768px) {
      .services-section {
        padding: 50px 30px;
      }
      
      .services-header h1 {
        font-size: 2.1rem;
      }
      
      .services-header p {
        font-size: 1.1rem;
      }
      
      .services-col {
        min-width: 100%;
        max-width: 400px;
      }
    }
    
    @media (max-width: 480px) {
      .services-section {
        padding: 40px 20px;
      }
      
      .services-header h1 {
        font-size: 1.9rem;
      }
      
      .services-header p {
        font-size: 1rem;
      }
      
      .services-col {
        padding: 30px 20px;
      }
      
      .icon-wrapper {
        width: 80px;
        height: 80px;
      }
      
      .icon-wrapper i {
        font-size: 32px;
      }
      
      .services-col h2 {
        font-size: 1.5rem;
      }
      
      .services-col p {
        font-size: 1rem;
      }
    }

     footer {
      background: #002147;
      color: #fff;
      padding: 60px 40px 30px;
      position: relative;
      overflow: hidden;
      width: 100%;
 /*     max-width: 1200px;*/
      border-radius: 15px;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    }
    
    .footer-wave {
      position: absolute;
      top: -5px;
      left: 0;
      width: 100%;
      height: 100px;
      background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="%230364ff" opacity="0.25"/></svg>');
      background-repeat: no-repeat;
      background-size: cover;
    }
    
    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      position: relative;
      z-index: 2;
    }
    
    .footer-col {
      padding: 20px;
    }
    
    .footer-col h3 {
      font-size: 1.5rem;
      margin-bottom: 25px;
      position: relative;
      padding-bottom: 15px;
      color: #4db8ff;
    }
    
    .footer-col h3::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 50px;
      height: 3px;
      background: linear-gradient(90deg, #4db8ff, #0364FF);
      border-radius: 2px;
    }
    
    .footer-logo {
      font-size: 2rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    
    .footer-logo i {
      color: #4db8ff;
    }
    
    .copyright {
      color: #aaa;
      margin: 15px 0 25px;
      font-size: 0.95rem;
      line-height: 1.6;
    }
    
    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 15px;
      margin-top: 20px;
    }
    
    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 15px;
    }
    
    .contact-icon {
      color: #4db8ff;
      font-size: 1.2rem;
      margin-top: 3px;
    }
    
    .contact-text {
      flex: 1;
      color: #e0f0ff;
    }
    
    .address {
      color: #e0f0ff;
      line-height: 1.7;
      margin: 10px 0;
    }
    
    .study-destinations {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    
    .destination-link {
      display: flex;
      align-items: center;
      gap: 10px;
      color: #e0f0ff;
      text-decoration: none;
      transition: all 0.3s ease;
      padding: 8px 0;
    }
    
    .destination-link:hover {
      color: #4db8ff;
      transform: translateX(5px);
    }
    
    .destination-link i {
      color: #4db8ff;
      transition: all 0.3s ease;
    }
    
    .destination-link:hover i {
      transform: scale(1.2);
    }
    
    .office-info {
      background: rgba(3, 100, 255, 0.15);
      border-radius: 10px;
      padding: 20px;
      margin-top: 15px;
    }
    
    .office-title {
      color: #4db8ff;
      font-weight: 600;
      margin-bottom: 10px;
    }
    
    .social-links {
      display: flex;
      gap: 15px;
      margin-top: 25px;
    }
    
    .social-link {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.2rem;
      transition: all 0.3s ease;
    }
    
    .social-link:hover {
      background: #0364FF;
      transform: translateY(-5px);
    }
    
    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 30px;
      margin-top: 50px;
      text-align: center;
      color: #aaa;
      font-size: 0.9rem;
      position: relative;
      z-index: 2;
    }
    
    .footer-bottom a {
      color: #4db8ff;
      text-decoration: none;
    }
    
    .footer-bottom a:hover {
      text-decoration: underline;
    }
    
    .footer-decor {
      position: absolute;
      z-index: 1;
      opacity: 0.1;
    }
    
    .decor-1 {
      width: 200px;
      height: 200px;
      border-radius: 50%;
      border: 20px solid #4db8ff;
      top: 50px;
      right: 80px;
    }
    
    .decor-2 {
      width: 150px;
      height: 150px;
      background: #4db8ff;
      border-radius: 30px;
      bottom: 60px;
      left: 70px;
      transform: rotate(45deg);
    }
    
    /* Responsive design */
    @media (max-width: 992px) {
      .footer-content {
        gap: 30px;
      }
      
      .content {
        padding: 40px;
      }
    }
    
    @media (max-width: 768px) {
      .footer-content {
        grid-template-columns: 1fr;
      }
      
      .footer-col {
        padding: 15px;
      }
      
      .content {
        padding: 30px 20px;
      }
      
      .content h1 {
        font-size: 2rem;
      }
    }
    
    @media (max-width: 480px) {
      footer {
        padding: 50px 20px 25px;
      }
      
      .footer-col h3 {
        font-size: 1.3rem;
      }
      
      .footer-logo {
        font-size: 1.8rem;
      }
      
      .copyright {
        font-size: 0.85rem;
      }
    }
   
