/* Global Styles */
:root {
    --primary-color: #050f4c; /* Blue */
    --secondary-color: #d32f2f; /* Red */
    --text-color: #333; /* Black */
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --dark-gray: #757575;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header Styles */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 50px;
}

nav ul {
    display: flex;
    align-items: center;
}

nav ul li {
    margin-left: 20px;
    position: relative;
}

nav ul li a {
    font-weight: 500;
    color: var(--text-color);
}

nav ul li a.active, 
nav ul li a:hover {
    color: var(--primary-color);
}

nav ul li .btn {
    color: var(--white);
    padding: 8px 15px;
}

/* Dropdown Menu */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--white);
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1;
    border-radius: 5px;
    padding: 10px 0;
}

.dropdown-content a {
    color: var(--text-color);
    padding: 10px 15px;
    display: block;
}

.dropdown-content a:hover {
    background-color: var(--light-gray);
    color: var(--primary-color);
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Slider */
.hero-slider {
    margin-top: 80px;
    position: relative;
    height: 500px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    max-width: 500px;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 30px;
    border-radius: 5px;
}

.slide-content h1 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.slide-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--medium-gray);
    margin: 0 5px;
    cursor: pointer;
}

.dot.active {
    background-color: var(--primary-color);
}

/* About Section */
.about-section {
    padding: 80px 0;
}

.about-section .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-content {
    flex: 1;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--secondary-color);
    color: var(--white);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.experience-badge span {
    font-size: 2rem;
    font-weight: bold;
}

.experience-badge p {
    font-size: 0.8rem;
    text-align: center;
    margin: 0;
}

/* Vision & Mission */
.vision-mission {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.vision-mission .container {
    display: flex;
    gap: 30px;
}

.vision, .mission {
    flex: 1;
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.vision h3, .mission h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
}

.vision h3 i {
    color: var(--secondary-color);
}

/* Country Grid */
.country-grid, .services-grid, .team-grid, .courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.country-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.country-card:hover {
    transform: translateY(-10px);
}

.country-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.country-info {
    padding: 20px;
    background-color: var(--white);
}

.country-info h3 {
    margin-bottom: 10px;
}

.country-info p {
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

/* Internship Openings */
.internship-openings, .country-openings {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.openings-table {
    overflow-x: auto;
    margin-top: 30px;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--medium-gray);
}

th {
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 500;
}

tr:hover {
    background-color: var(--light-gray);
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    text-align: center;
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 40px auto 0;
}

.testimonial {
    display: none;
    padding: 30px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial.active {
    display: block;
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
}

.student-info {
    display: flex;
    align-items: center;
    justify-content: center;
}

.student-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.student-info h4 {
    margin-bottom: 5px;
}

.student-info span {
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.testimonial-nav {
    margin-top: 20px;
}

.t-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--medium-gray);
    margin: 0 5px;
    cursor: pointer;
}

.t-dot.active {
    background-color: var(--primary-color);
}

/* Page Banner */
.page-banner, .country-banner {
    padding: 120px 0 80px;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--white);
    margin-top: 80px;
}

.page-banner h1, .country-banner h1 {
    color: var(--white);
}

.page-banner p, .country-banner p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Why Country Section */
.why-country {
    padding: 80px 0;
}

.why-content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 30px;
}

.why-text {
    flex: 1;
}

.why-text ul {
    margin: 20px 0;
}

.why-text li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.why-text li i {
    color: var(--secondary-color);
    margin-top: 3px;
}

.why-image {
    flex: 1;
}

.why-image img {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services-section {
    padding: 80px 0;
}

.service-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

/* Study Abroad Services */
.study-abroad-services {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.services-tabs {
    margin-top: 30px;
}

.tab-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.tab-btn {
    padding: 10px 20px;
    background-color: var(--medium-gray);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
}

.tab-btn:hover:not(.active) {
    background-color: var(--dark-gray);
    color: var(--white);
}

.tab-content {
    display: none;
    background-color: var(--white);
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.tab-content.active {
    display: block;
}

.tab-content ul {
    margin: 20px 0;
}

.tab-content li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.tab-content li i {
    color: var(--secondary-color);
    margin-top: 3px;
}

/* Pre-Departure */
.pre-departure {
    padding: 80px 0;
}

.pd-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.pd-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.pd-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.pd-card h3 i {
    color: var(--secondary-color);
}

/* Top Courses */
.top-courses {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.course-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.course-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

/* Education System */
.education-system {
    padding: 80px 0;
}

.system-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.system-point {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.system-point h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.system-point h3 i {
    color: var(--secondary-color);
}

/* Our Team */
.our-team {
    padding: 80px 0;
}

.team-member {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 5px solid var(--light-gray);
}

.team-member h3 {
    margin-bottom: 5px;
}

.team-member span {
    display: block;
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.team-member p {
    font-size: 0.9rem;
    color: var(--dark-gray);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-section .container {
    display: flex;
    gap: 40px;
}

.contact-form {
    flex: 1;
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-info {
    flex: 1;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--medium-gray);
    border-radius: 5px;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.info-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.info-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.info-card h3 i {
    color: var(--secondary-color);
}

/* Map Section */
.map-section {
    padding: 0 0 80px;
}

.map-container {
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Apply Now CTA */
.apply-now {
    padding: 60px 0;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--white);
}

.apply-now h2 {
    color: var(--white);
}

.apply-now .btn {
    background-color: var(--white);
    color: var(--primary-color);
    margin-top: 20px;
}

.apply-now .btn:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

/* Other Countries */
.other-countries {
    padding: 80px 0;
    background-color: var(--light-gray);
}

/* Footer */
footer {
    background-color: #050f4c;
    color: var(--white);
    padding: 60px 0 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 15px;
}

.footer-logo p {
    opacity: 0.8;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links {
    flex: 1;
    min-width: 200px;
}

.footer-links h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact {
    flex: 1;
    min-width: 250px;
}

.footer-contact h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact i {
    margin-top: 3px;
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-section .container,
    .why-content,
    .contact-section .container {
        flex-direction: column;
    }
    
    .about-image, .why-image {
        margin-top: 30px;
    }
    
    .vision-mission .container {
        flex-direction: column;
    }
    
    .vision, .mission {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .mobile-menu {
        display: block;
    }
    
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    nav ul.show {
        display: flex;
    }
    
    nav ul li {
        margin: 10px 0;
    }
    
    .dropdown-content {
        position: static;
        box-shadow: none;
        display: none;
        padding-left: 20px;
    }
    
    .dropdown:hover .dropdown-content {
        display: none;
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }
    
    .hero-slider {
        height: 400px;
    }
    
    .slide-content {
        left: 5%;
        right: 5%;
        max-width: none;
    }
    
    .country-grid, .services-grid, .team-grid, .courses-grid, .system-content {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero-slider {
        height: 300px;
        margin-top: 70px;
    }
    
    .slide-content {
        padding: 20px;
    }
    
    .page-banner, .country-banner {
        padding: 100px 0 60px;
    }
    
    .footer-content {
        flex-direction: column;
    }
}

/* Full-Width Hero Section with 70% height */
.country-hero-full {
    position: relative;
    width: 100%;
    height: 70vh; /* 70% of viewport height */
    margin-top: 80px; /* Account for fixed header */
    overflow: hidden;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 0 20px 20px; /* Rounded bottom corners only */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 86, 179, 0.7) 0%, rgba(0, 86, 179, 0.3) 100%);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    max-width: 600px;
    color: white;
    z-index: 2;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: white;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.hero-content .btn {
    background-color: var(--secondary-color);
    color: white;
    padding: 12px 30px;
    font-size: 1.1rem;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .hero-content {
        left: 5%;
    }
}

@media (max-width: 992px) {
    .hero-content {
        max-width: 80%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .country-hero-full {
        height: 60vh;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .country-hero-full {
        height: 50vh;
        margin-top: 70px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-image {
        border-radius: 0 0 15px 15px;
    }
}

/*whatsapp*/
.float{
	position:fixed;
	width:80px;
	height:80px;
	bottom:60px;
	left:60px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:50px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
	margin-top:16px;
}