/* Header and Navigation Styles */
body {
    font-family: 'Euromode', 'Segoe UI', Arial, sans-serif;
    margin: 0;
    background: #fff;
    color: #000;
}

header {
    background: #1A237E; /* Navy Blue */
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.top-bar {
    display: flex;
    justify-content: space-between;
    padding: 8px 40px;
    font-size: 13px;
    background: #000;
    color: #fff;
}

.top-bar .socials a {
    margin-left: 10px;
    color: #fff;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 40px;
}

nav .logo {
    font-size: 1.7em;
    font-weight: bold;
    color: #fff;
}

nav .logo img {
    height: 30px;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

nav ul li {
    cursor: pointer;
    font-weight: 500;
    color: #fff;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
    font-size: 1em;
}

nav ul li::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #fff;
    transition: width 0.3s ease;
}

nav ul li:hover {
    color: #fff;
}

nav ul li:hover::after {
    width: 100%;
}

nav ul li.active {
    color: #fff;
}

nav ul li.active::after {
    width: 100%;
}

nav ul li a {
    color: inherit;
    text-decoration: none;
    display: block;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-bar {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 5px 15px;
}

.search-bar input {
    background: transparent;
    border: none;
    color: #fff;
    padding: 5px;
    width: 150px;
    outline: none;
}

.search-bar input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-bar button {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 5px;
}

.search-bar button:hover {
    color: #FF9800;
}

/* Google Translate Styles */
#google_translate_element {
    margin: 0 10px;
}

#google_translate_element select {
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 14px;
}

#google_translate_element select:hover {
    border-color: #FF9800;
}

#google_translate_element select option {
    background-color: #1A237E;
    color: #fff;
}

.book-btn {
    background: #90d8f7 !important;
    color: #111 !important;
    border: none;
    padding: 8px 18px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.2s;
    box-shadow: none;
}

.book-btn:hover {
    background: #6ec1e4 !important;
}

.book-btn a {
    color: inherit !important;
    text-decoration: none;
    display: block;
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: 16px;
}

.nav-toggle .bar {
    width: 26px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    border-radius: 2px;
    transition: 0.3s;
}

/* Enhanced Navigation Responsive Styles */

/* Large Desktop (1400px and above) */
@media (min-width: 1400px) {
    nav {
        padding: 20px 60px;
    }
    
    nav .logo {
        font-size: 1.8em;
    }
    
    nav ul {
        gap: 40px;
    }
    
    nav ul li {
        font-size: 1.1em;
    }
    
    .search-bar input {
        width: 180px;
    }
}

/* Desktop (1200px - 1399px) */
@media (max-width: 1399px) and (min-width: 1200px) {
    nav {
        padding: 18px 50px;
    }
    
    nav ul {
        gap: 35px;
    }
    
    .search-bar input {
        width: 170px;
    }
}

/* Large Tablets (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
    nav {
        padding: 18px 40px;
    }
    
    nav ul {
        gap: 30px;
    }
    
    .search-bar input {
        width: 160px;
    }
}

/* Tablets (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {
    nav {
        padding: 16px 30px;
    }
    
    nav .logo {
        font-size: 1.6em;
    }
    
    nav ul {
        gap: 25px;
    }
    
    nav ul li {
        font-size: 0.95em;
    }
    
    .search-bar input {
        width: 140px;
    }
    
    .top-bar {
        padding: 6px 30px;
        font-size: 12px;
    }
}

/* Large Mobile (576px - 767px) */
@media (max-width: 767px) and (min-width: 576px) {
    nav {
        padding: 15px 20px;
    }
    
    nav .logo {
        font-size: 1.5em;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-links,
    .nav-right {
        display: none;
    }
    
    nav.active .nav-links,
    nav.active .nav-right {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #1A237E;
        z-index: 10;
        padding: 15px 0 10px 0;
        gap: 15px;
        box-shadow: 0 4px 24px rgba(26,35,126,0.10);
    }
    
    .nav-links li {
        font-size: 1.1em;
        text-align: center;
    }
    
    .nav-right {
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 10px;
    }
    
    .top-bar {
        flex-direction: column;
        align-items: center;
        gap: 4px;
        text-align: center;
        padding: 6px 20px;
        font-size: 11px;
    }
    
    .search-bar {
        width: 85%;
        max-width: 250px;
    }
    
    .search-bar input {
        width: 100%;
        font-size: 13px;
    }
    
    .book-btn {
        padding: 6px 15px;
        font-size: 0.9em;
    }
}

/* Mobile (375px - 575px) */
@media (max-width: 575px) and (min-width: 376px) {
    nav {
        padding: 12px 15px;
    }
    
    nav .logo {
        font-size: 1.4em;
    }
    
    nav.active .nav-links,
    nav.active .nav-right {
        top: 65px;
        padding: 12px 0 8px 0;
        gap: 12px;
    }
    
    .nav-links li {
        font-size: 1em;
    }
    
    .top-bar {
        padding: 5px 15px;
        font-size: 10px;
        gap: 3px;
    }
    
    .search-bar {
        width: 80%;
        max-width: 200px;
    }
    
    .search-bar input {
        font-size: 12px;
        padding: 4px;
    }
    
    .book-btn {
        padding: 5px 12px;
        font-size: 0.85em;
    }
    
    #google_translate_element select {
        font-size: 12px;
        padding: 4px 8px;
    }
}

/* Small Mobile (320px - 375px) */
@media (max-width: 375px) and (min-width: 321px) {
    nav {
        padding: 10px 12px;
    }
    
    nav .logo {
        font-size: 1.3em;
    }
    
    nav.active .nav-links,
    nav.active .nav-right {
        top: 60px;
        padding: 10px 0 6px 0;
        gap: 10px;
    }
    
    .nav-links li {
        font-size: 0.95em;
    }
    
    .top-bar {
        padding: 4px 12px;
        font-size: 9px;
        gap: 2px;
    }
    
    .search-bar {
        width: 75%;
        max-width: 180px;
    }
    
    .search-bar input {
        font-size: 11px;
        padding: 3px;
    }
    
    .book-btn {
        padding: 4px 10px;
        font-size: 0.8em;
    }
    
    #google_translate_element select {
        font-size: 11px;
        padding: 3px 6px;
    }
}

/* Extra Small Mobile (280px - 320px) */
@media (max-width: 320px) and (min-width: 281px) {
    nav {
        padding: 8px 10px;
    }
    
    nav .logo {
        font-size: 1.2em;
    }
    
    nav.active .nav-links,
    nav.active .nav-right {
        top: 55px;
        padding: 8px 0 5px 0;
        gap: 8px;
    }
    
    .nav-links li {
        font-size: 0.9em;
    }
    
    .top-bar {
        padding: 3px 10px;
        font-size: 8px;
        gap: 1px;
    }
    
    .search-bar {
        width: 70%;
        max-width: 160px;
    }
    
    .search-bar input {
        font-size: 10px;
        padding: 2px;
    }
    
    .book-btn {
        padding: 3px 8px;
        font-size: 0.75em;
    }
    
    #google_translate_element select {
        font-size: 10px;
        padding: 2px 5px;
    }
}

/* Ultra Small Mobile (240px - 280px) */
@media (max-width: 280px) {
    nav {
        padding: 6px 8px;
    }
    
    nav .logo {
        font-size: 1.1em;
    }
    
    nav.active .nav-links,
    nav.active .nav-right {
        top: 50px;
        padding: 6px 0 4px 0;
        gap: 6px;
    }
    
    .nav-links li {
        font-size: 0.85em;
    }
    
    .top-bar {
        padding: 2px 8px;
        font-size: 7px;
        gap: 1px;
    }
    
    .search-bar {
        width: 65%;
        max-width: 140px;
    }
    
    .search-bar input {
        font-size: 9px;
        padding: 1px;
    }
    
    .book-btn {
        padding: 2px 6px;
        font-size: 0.7em;
    }
    
    #google_translate_element select {
        font-size: 9px;
        padding: 1px 4px;
    }
}

/* Legacy support for older breakpoint */
@media (max-width: 1000px) {
    .nav-links,
    .nav-right {
        display: none;
    }
    
    nav.active .nav-links,
    nav.active .nav-right {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #1A237E;
        z-index: 10;
        padding: 20px 0 10px 0;
        gap: 18px;
        box-shadow: 0 4px 24px rgba(26,35,126,0.10);
    }
    
    .nav-links li {
        font-size: 1.2em;
        text-align: center;
    }
    
    .nav-right {
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 12px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .top-bar {
        flex-direction: column;
        align-items: center;
        gap: 5px;
        text-align: center;
    }
    
    .search-bar {
        width: 90%;
        max-width: 300px;
    }
    
    .search-bar input {
        width: 100%;
    }
}

/* About Hero Section Styles */
.about-hero-section {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.about-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.about-hero-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 4em;
    font-weight: bold;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
    z-index: 1;
}

/* Enhanced Responsive Styles for About Page */

/* Large Desktop (1400px and above) */
@media (min-width: 1400px) {
    .about-hero-section {
        height: 400px;
    }
    
    .about-hero-title {
        font-size: 5em;
    }
    
    .about-card-modern {
        max-width: 1300px;
        padding: 40px 50px;
    }
    
    .team-section {
        max-width: 1800px;
        padding: 80px 60px;
    }
    
    .partners-section {
        padding: 100px 40px;
    }
    
    .certificate-section {
        max-width: 1400px;
        padding: 60px 50px;
    }
}

/* Desktop (1200px - 1399px) */
@media (max-width: 1399px) and (min-width: 1200px) {
    .about-hero-section {
        height: 350px;
    }
    
    .about-hero-title {
        font-size: 4.5em;
    }
    
    .about-card-modern {
        max-width: 1200px;
        padding: 35px 45px;
    }
    
    .team-section {
        max-width: 1600px;
        padding: 70px 50px;
    }
}

/* Large Tablets (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
    .about-hero-section {
        height: 320px;
    }
    
    .about-hero-title {
        font-size: 4em;
    }
    
    .about-card-modern {
        max-width: 1100px;
        padding: 30px 40px;
    }
    
    .team-section {
        max-width: 1400px;
        padding: 60px 40px;
    }
    
    .partners-section {
        padding: 80px 30px;
    }
    
    .certificate-section {
        max-width: 1100px;
        padding: 50px 40px;
    }
}

/* Tablets (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {
    .about-hero-section {
        height: 280px;
    }
    
    .about-hero-title {
        font-size: 3.5em;
    }
    
    .about-card-modern {
        max-width: 900px;
        padding: 25px 30px;
        gap: 25px;
    }
    
    .about-card-img img {
        width: 250px;
    }
    
    .about-card-content h2 {
        font-size: 1.8em;
    }
    
    .about-card-content p {
        font-size: 1em;
    }
    
    .team-section {
        max-width: 1200px;
        padding: 50px 30px;
    }
    
    .team-members {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .partners-section {
        padding: 70px 25px;
    }
    
    .partners-title {
        font-size: 2.2em;
        margin-bottom: 50px;
    }
    
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .certificate-section {
        max-width: 900px;
        padding: 40px 30px;
    }
    
    .certificate-title {
        font-size: 2em;
    }
    
    .certificate-logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

/* Large Mobile (576px - 767px) */
@media (max-width: 767px) and (min-width: 576px) {
    .about-hero-section {
        height: 220px;
    }
    
    .about-hero-title {
        font-size: 2.8em;
    }
    
    .about-card-modern {
        max-width: 100%;
        margin: 30px 20px;
        padding: 20px 15px;
        gap: 20px;
        flex-direction: column;
    }
    
    .about-card-img img {
        width: 200px;
    }
    
    .about-card-divider {
        width: 60px;
        height: 4px;
        margin: 15px 0;
    }
    
    .about-card-content h2 {
        font-size: 1.6em;
        margin-bottom: 12px;
    }
    
    .about-card-content p {
        font-size: 0.95em;
        line-height: 1.6;
    }
    
    .img-blue-shadow {
        width: 160px;
        height: 180px;
    }
    
    .img-blue-bg,
    .img-stacked {
        width: 140px;
        height: 160px;
    }
    
    .team-section {
        margin: 40px 20px 0 20px;
        padding: 40px 20px;
    }
    
    .team-title {
        font-size: 2.2em;
        margin-bottom: 40px;
    }
    
    .team-members {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .team-member {
        padding: 25px 15px;
    }
    
    .team-img-wrapper {
        width: 90px;
        height: 90px;
    }
    
    .team-name {
        font-size: 1.2em;
    }
    
    .partners-section {
        padding: 60px 20px;
    }
    
    .partners-title {
        font-size: 2em;
        margin-bottom: 40px;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .partners-grid img {
        height: 60px;
        max-width: 120px;
    }
    
    .certificate-section {
        margin: 30px 20px 0 20px;
        padding: 30px 20px;
    }
    
    .certificate-title {
        font-size: 1.8em;
    }
    
    .certificate-desc {
        font-size: 1em;
        margin-bottom: 30px;
    }
    
    .certificate-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .certificate-logos img {
        height: 70px;
        padding: 10px 20px;
    }
}

/* Mobile (375px - 575px) */
@media (max-width: 575px) and (min-width: 376px) {
    .about-hero-section {
        height: 180px;
    }
    
    .about-hero-title {
        font-size: 2.2em;
    }
    
    .about-card-modern {
        margin: 25px 15px;
        padding: 18px 12px;
        gap: 15px;
        border-radius: 16px;
    }
    
    .about-card-img img {
        width: 160px;
    }
    
    .about-card-divider {
        width: 50px;
        height: 3px;
        margin: 12px 0;
    }
    
    .about-card-content h2 {
        font-size: 1.4em;
        margin-bottom: 10px;
    }
    
    .about-card-content p {
        font-size: 0.9em;
        line-height: 1.5;
    }
    
    .img-blue-shadow {
        width: 140px;
        height: 160px;
    }
    
    .img-blue-bg,
    .img-stacked {
        width: 120px;
        height: 140px;
        border-radius: 10px;
    }
    
    .img-stacked {
        bottom: 6px;
        right: 6px;
    }
    
    .team-section {
        margin: 30px 15px 0 15px;
        padding: 30px 15px;
        border-radius: 12px;
    }
    
    .team-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    
    .team-members {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .team-member {
        padding: 20px 12px;
        border-radius: 8px;
    }
    
    .team-img-wrapper {
        width: 80px;
        height: 80px;
        margin-bottom: 15px;
    }
    
    .team-name {
        font-size: 1.1em;
        margin: 10px 0 3px 0;
    }
    
    .team-role-badge {
        font-size: 0.8em;
        padding: 2px 8px;
    }
    
    .partners-section {
        padding: 50px 15px;
    }
    
    .partners-title {
        font-size: 1.6em;
        margin-bottom: 30px;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .partners-grid a {
        padding: 20px;
        border-radius: 12px;
    }
    
    .partners-grid img {
        height: 50px;
        max-width: 100px;
    }
    
    .certificate-section {
        margin: 25px 15px 0 15px;
        padding: 25px 15px;
        border-radius: 12px;
    }
    
    .certificate-title {
        font-size: 1.5em;
        margin-bottom: 15px;
    }
    
    .certificate-desc {
        font-size: 0.9em;
        margin-bottom: 25px;
    }
    
    .certificate-logos {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .certificate-logos img {
        height: 60px;
        padding: 8px 16px;
        border-radius: 10px;
    }
}

/* Small Mobile (320px - 375px) */
@media (max-width: 375px) and (min-width: 321px) {
    .about-hero-section {
        height: 150px;
    }
    
    .about-hero-title {
        font-size: 1.8em;
    }
    
    .about-card-modern {
        margin: 20px 10px;
        padding: 15px 10px;
        gap: 12px;
        border-radius: 12px;
    }
    
    .about-card-img img {
        width: 140px;
    }
    
    .about-card-divider {
        width: 40px;
        height: 2px;
        margin: 10px 0;
    }
    
    .about-card-content h2 {
        font-size: 1.2em;
        margin-bottom: 8px;
    }
    
    .about-card-content p {
        font-size: 0.85em;
        line-height: 1.4;
    }
    
    .img-blue-shadow {
        width: 120px;
        height: 140px;
    }
    
    .img-blue-bg,
    .img-stacked {
        width: 100px;
        height: 120px;
        border-radius: 8px;
    }
    
    .img-stacked {
        bottom: 4px;
        right: 4px;
    }
    
    .team-section {
        margin: 25px 10px 0 10px;
        padding: 25px 10px;
        border-radius: 10px;
    }
    
    .team-title {
        font-size: 1.5em;
        margin-bottom: 25px;
    }
    
    .team-member {
        padding: 15px 10px;
        border-radius: 6px;
    }
    
    .team-img-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 12px;
    }
    
    .team-name {
        font-size: 1em;
        margin: 8px 0 2px 0;
    }
    
    .team-role-badge {
        font-size: 0.75em;
        padding: 1px 6px;
    }
    
    .partners-section {
        padding: 40px 10px;
    }
    
    .partners-title {
        font-size: 1.4em;
        margin-bottom: 25px;
    }
    
    .partners-grid a {
        padding: 15px;
        border-radius: 10px;
    }
    
    .partners-grid img {
        height: 40px;
        max-width: 80px;
    }
    
    .certificate-section {
        margin: 20px 10px 0 10px;
        padding: 20px 10px;
        border-radius: 10px;
    }
    
    .certificate-title {
        font-size: 1.3em;
        margin-bottom: 12px;
    }
    
    .certificate-desc {
        font-size: 0.85em;
        margin-bottom: 20px;
    }
    
    .certificate-logos img {
        height: 50px;
        padding: 6px 12px;
        border-radius: 8px;
    }
}

/* Extra Small Mobile (280px - 320px) */
@media (max-width: 320px) and (min-width: 281px) {
    .about-hero-section {
        height: 120px;
    }
    
    .about-hero-title {
        font-size: 1.5em;
    }
    
    .about-card-modern {
        margin: 15px 8px;
        padding: 12px 8px;
        gap: 10px;
        border-radius: 10px;
    }
    
    .about-card-img img {
        width: 120px;
    }
    
    .about-card-divider {
        width: 35px;
        height: 2px;
        margin: 8px 0;
    }
    
    .about-card-content h2 {
        font-size: 1.1em;
        margin-bottom: 6px;
    }
    
    .about-card-content p {
        font-size: 0.8em;
        line-height: 1.3;
    }
    
    .img-blue-shadow {
        width: 100px;
        height: 120px;
    }
    
    .img-blue-bg,
    .img-stacked {
        width: 80px;
        height: 100px;
        border-radius: 6px;
    }
    
    .team-section {
        margin: 20px 8px 0 8px;
        padding: 20px 8px;
        border-radius: 8px;
    }
    
    .team-title {
        font-size: 1.3em;
        margin-bottom: 20px;
    }
    
    .team-member {
        padding: 12px 8px;
        border-radius: 5px;
    }
    
    .team-img-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 10px;
    }
    
    .team-name {
        font-size: 0.9em;
        margin: 6px 0 1px 0;
    }
    
    .team-role-badge {
        font-size: 0.7em;
        padding: 1px 5px;
    }
    
    .partners-section {
        padding: 30px 8px;
    }
    
    .partners-title {
        font-size: 1.2em;
        margin-bottom: 20px;
    }
    
    .partners-grid a {
        padding: 12px;
        border-radius: 8px;
    }
    
    .partners-grid img {
        height: 35px;
        max-width: 70px;
    }
    
    .certificate-section {
        margin: 15px 8px 0 8px;
        padding: 15px 8px;
        border-radius: 8px;
    }
    
    .certificate-title {
        font-size: 1.1em;
        margin-bottom: 10px;
    }
    
    .certificate-desc {
        font-size: 0.8em;
        margin-bottom: 15px;
    }
    
    .certificate-logos img {
        height: 40px;
        padding: 5px 10px;
        border-radius: 6px;
    }
}

/* Ultra Small Mobile (240px - 280px) */
@media (max-width: 280px) {
    .about-hero-section {
        height: 100px;
    }
    
    .about-hero-title {
        font-size: 1.2em;
    }
    
    .about-card-modern {
        margin: 10px 5px;
        padding: 10px 5px;
        gap: 8px;
        border-radius: 8px;
    }
    
    .about-card-img img {
        width: 100px;
    }
    
    .about-card-divider {
        width: 30px;
        height: 1px;
        margin: 6px 0;
    }
    
    .about-card-content h2 {
        font-size: 1em;
        margin-bottom: 5px;
    }
    
    .about-card-content p {
        font-size: 0.75em;
        line-height: 1.2;
    }
    
    .img-blue-shadow {
        width: 80px;
        height: 100px;
    }
    
    .img-blue-bg,
    .img-stacked {
        width: 60px;
        height: 80px;
        border-radius: 4px;
    }
    
    .team-section {
        margin: 15px 5px 0 5px;
        padding: 15px 5px;
        border-radius: 6px;
    }
    
    .team-title {
        font-size: 1.1em;
        margin-bottom: 15px;
    }
    
    .team-member {
        padding: 10px 5px;
        border-radius: 4px;
    }
    
    .team-img-wrapper {
        width: 50px;
        height: 50px;
        margin-bottom: 8px;
    }
    
    .team-name {
        font-size: 0.8em;
        margin: 5px 0 1px 0;
    }
    
    .team-role-badge {
        font-size: 0.65em;
        padding: 1px 4px;
    }
    
    .partners-section {
        padding: 25px 5px;
    }
    
    .partners-title {
        font-size: 1em;
        margin-bottom: 15px;
    }
    
    .partners-grid a {
        padding: 10px;
        border-radius: 6px;
    }
    
    .partners-grid img {
        height: 30px;
        max-width: 60px;
    }
    
    .certificate-section {
        margin: 10px 5px 0 5px;
        padding: 10px 5px;
        border-radius: 6px;
    }
    
    .certificate-title {
        font-size: 1em;
        margin-bottom: 8px;
    }
    
    .certificate-desc {
        font-size: 0.75em;
        margin-bottom: 12px;
    }
    
    .certificate-logos img {
        height: 35px;
        padding: 4px 8px;
        border-radius: 4px;
    }
}

/* Landscape Orientation for Mobile */
@media (max-width: 767px) and (orientation: landscape) {
    .about-hero-section {
        height: 120px;
    }
    
    .about-hero-title {
        font-size: 2em;
    }
    
    .about-card-modern {
        flex-direction: row;
        gap: 15px;
        padding: 15px 12px;
    }
    
    .about-card-img img {
        width: 120px;
    }
    
    .about-card-content h2 {
        font-size: 1.3em;
    }
    
    .about-card-content p {
        font-size: 0.85em;
    }
    
    .team-members {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .team-member {
        padding: 15px 8px;
    }
    
    .team-img-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .certificate-logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .team-member:hover {
        transform: none;
    }
    
    .partners-grid a:hover {
        transform: none;
    }
    
    .certificate-logos img:hover {
        transform: none;
    }
    
    .team-socials {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .about-hero-img,
    .about-card-img img,
    .team-img,
    .partners-grid img,
    .certificate-logos img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Print Styles */
@media print {
    .about-hero-section {
        height: auto;
        page-break-after: always;
    }
    
    .about-card-modern {
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    .team-section,
    .partners-section,
    .certificate-section {
        page-break-inside: avoid;
    }
}

/* Why Travel With Us Section Responsive Styles */

/* Large Desktop (1400px and above) */
@media (min-width: 1400px) {
    .why-travel-with-us-section {
        padding: 80px 0;
    }
    
    .why-travel-with-us-section .container {
        max-width: 1400px;
    }
    
    .why-travel-with-us-section .section-title {
        font-size: 2.8em;
        margin-bottom: 60px;
    }
    
    .why-travel-with-us-section .why-items {
        gap: 40px;
    }
    
    .why-travel-with-us-section .why-item {
        padding: 40px 30px;
    }
    
    .why-travel-with-us-section .why-icon {
        width: 80px;
        height: 80px;
        font-size: 2.2em;
    }
    
    .why-travel-with-us-section .why-item h4 {
        font-size: 1.4em;
        margin: 20px 0 15px 0;
    }
    
    .why-travel-with-us-section .why-item p {
        font-size: 1.1em;
        line-height: 1.7;
    }
}

/* Desktop (1200px - 1399px) */
@media (max-width: 1399px) and (min-width: 1200px) {
    .why-travel-with-us-section {
        padding: 70px 0;
    }
    
    .why-travel-with-us-section .container {
        max-width: 1200px;
    }
    
    .why-travel-with-us-section .section-title {
        font-size: 2.6em;
        margin-bottom: 55px;
    }
    
    .why-travel-with-us-section .why-items {
        gap: 35px;
    }
    
    .why-travel-with-us-section .why-item {
        padding: 35px 25px;
    }
    
    .why-travel-with-us-section .why-icon {
        width: 75px;
        height: 75px;
        font-size: 2em;
    }
    
    .why-travel-with-us-section .why-item h4 {
        font-size: 1.3em;
        margin: 18px 0 12px 0;
    }
    
    .why-travel-with-us-section .why-item p {
        font-size: 1.05em;
        line-height: 1.6;
    }
}

/* Large Tablets (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
    .why-travel-with-us-section {
        padding: 60px 0;
    }
    
    .why-travel-with-us-section .container {
        max-width: 1100px;
    }
    
    .why-travel-with-us-section .section-title {
        font-size: 2.4em;
        margin-bottom: 50px;
    }
    
    .why-travel-with-us-section .why-items {
        gap: 30px;
    }
    
    .why-travel-with-us-section .why-item {
        padding: 30px 20px;
    }
    
    .why-travel-with-us-section .why-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8em;
    }
    
    .why-travel-with-us-section .why-item h4 {
        font-size: 1.2em;
        margin: 15px 0 10px 0;
    }
    
    .why-travel-with-us-section .why-item p {
        font-size: 1em;
        line-height: 1.6;
    }
}

/* Tablets (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {
    .why-travel-with-us-section {
        padding: 50px 0;
    }
    
    .why-travel-with-us-section .container {
        max-width: 900px;
        padding: 0 20px;
    }
    
    .why-travel-with-us-section .section-title {
        font-size: 2.2em;
        margin-bottom: 40px;
    }
    
    .why-travel-with-us-section .why-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .why-travel-with-us-section .why-item {
        padding: 25px 15px;
    }
    
    .why-travel-with-us-section .why-icon {
        width: 65px;
        height: 65px;
        font-size: 1.6em;
    }
    
    .why-travel-with-us-section .why-item h4 {
        font-size: 1.1em;
        margin: 12px 0 8px 0;
    }
    
    .why-travel-with-us-section .why-item p {
        font-size: 0.95em;
        line-height: 1.5;
    }
}

/* Large Mobile (576px - 767px) */
@media (max-width: 767px) and (min-width: 576px) {
    .why-travel-with-us-section {
        padding: 40px 0;
    }
    
    .why-travel-with-us-section .container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .why-travel-with-us-section .section-title {
        font-size: 2em;
        margin-bottom: 35px;
    }
    
    .why-travel-with-us-section .why-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .why-travel-with-us-section .why-item {
        padding: 20px 12px;
    }
    
    .why-travel-with-us-section .why-icon {
        width: 60px;
        height: 60px;
        font-size: 1.4em;
    }
    
    .why-travel-with-us-section .why-item h4 {
        font-size: 1em;
        margin: 10px 0 6px 0;
    }
    
    .why-travel-with-us-section .why-item p {
        font-size: 0.9em;
        line-height: 1.4;
    }
}

/* Mobile (375px - 575px) */
@media (max-width: 575px) and (min-width: 376px) {
    .why-travel-with-us-section {
        padding: 30px 0;
    }
    
    .why-travel-with-us-section .container {
        padding: 0 15px;
    }
    
    .why-travel-with-us-section .section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    
    .why-travel-with-us-section .why-items {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .why-travel-with-us-section .why-item {
        padding: 18px 10px;
    }
    
    .why-travel-with-us-section .why-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3em;
    }
    
    .why-travel-with-us-section .why-item h4 {
        font-size: 0.95em;
        margin: 8px 0 5px 0;
    }
    
    .why-travel-with-us-section .why-item p {
        font-size: 0.85em;
        line-height: 1.4;
    }
}

/* Small Mobile (320px - 375px) */
@media (max-width: 375px) and (min-width: 321px) {
    .why-travel-with-us-section {
        padding: 25px 0;
    }
    
    .why-travel-with-us-section .container {
        padding: 0 12px;
    }
    
    .why-travel-with-us-section .section-title {
        font-size: 1.6em;
        margin-bottom: 25px;
    }
    
    .why-travel-with-us-section .why-items {
        gap: 12px;
    }
    
    .why-travel-with-us-section .why-item {
        padding: 15px 8px;
    }
    
    .why-travel-with-us-section .why-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2em;
    }
    
    .why-travel-with-us-section .why-item h4 {
        font-size: 0.9em;
        margin: 6px 0 4px 0;
    }
    
    .why-travel-with-us-section .why-item p {
        font-size: 0.8em;
        line-height: 1.3;
    }
}

/* Extra Small Mobile (280px - 320px) */
@media (max-width: 320px) and (min-width: 281px) {
    .why-travel-with-us-section {
        padding: 20px 0;
    }
    
    .why-travel-with-us-section .container {
        padding: 0 10px;
    }
    
    .why-travel-with-us-section .section-title {
        font-size: 1.4em;
        margin-bottom: 20px;
    }
    
    .why-travel-with-us-section .why-items {
        gap: 10px;
    }
    
    .why-travel-with-us-section .why-item {
        padding: 12px 6px;
    }
    
    .why-travel-with-us-section .why-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1em;
    }
    
    .why-travel-with-us-section .why-item h4 {
        font-size: 0.85em;
        margin: 5px 0 3px 0;
    }
    
    .why-travel-with-us-section .why-item p {
        font-size: 0.75em;
        line-height: 1.3;
    }
}

/* Ultra Small Mobile (240px - 280px) */
@media (max-width: 280px) {
    .why-travel-with-us-section {
        padding: 15px 0;
    }
    
    .why-travel-with-us-section .container {
        padding: 0 8px;
    }
    
    .why-travel-with-us-section .section-title {
        font-size: 1.2em;
        margin-bottom: 15px;
    }
    
    .why-travel-with-us-section .why-items {
        gap: 8px;
    }
    
    .why-travel-with-us-section .why-item {
        padding: 10px 5px;
    }
    
    .why-travel-with-us-section .why-icon {
        width: 40px;
        height: 40px;
        font-size: 1em;
    }
    
    .why-travel-with-us-section .why-item h4 {
        font-size: 0.8em;
        margin: 4px 0 2px 0;
    }
    
    .why-travel-with-us-section .why-item p {
        font-size: 0.7em;
        line-height: 1.2;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .team-member,
    .partners-grid a,
    .certificate-logos img,
    .why-travel-with-us-section .why-item {
        transition: none;
    }
    
    .team-member:hover,
    .partners-grid a:hover,
    .certificate-logos img:hover,
    .why-travel-with-us-section .why-item:hover {
        transform: none;
    }
}

/* Modern About Card Styles */
.about-card-modern {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(26,35,126,0.08);
    display: flex;
    align-items: center;
    max-width: 1100px;
    margin: 40px auto;
    padding: 32px 40px;
    gap: 32px;
}

.about-card-img {
    flex: 0 0 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-card-img img {
    width: 280px;
    height: auto;
    display: block;
}

.about-card-divider {
    width: 6px;
    height: 180px;
    background: #1A237E;
    border-radius: 4px;
    margin: 0 32px;
}

.about-card-content {
    flex: 1;
}

.about-card-content h2 {
    color: #1A237E;
    font-size: 2em;
    font-weight: 800;
    margin: 0 0 16px 0;
    letter-spacing: 1px;
}

.about-card-content p {
    color: #222;
    font-size: 1.08em;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 900px) {
    .about-card-modern {
        flex-direction: column;
        padding: 24px 12px;
        gap: 18px;
    }
    .about-card-divider {
        width: 80px;
        height: 6px;
        margin: 24px 0;
    }
    .about-card-img img {
        width: 200px;
    }
}

/* Vision Section Styles */
.about-card-vision-row {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.about-card-vision-accent {
    width: 5px;
    min-width: 5px;
    height: 180px;
    background: linear-gradient(180deg, #1A237E 0%, #1976D2 100%);
    border-radius: 4px;
    margin-top: 6px;
}

.img-blue-shadow {
    position: relative;
    width: 300px;
    height: 320px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.img-blue-bg {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 260px;
    height: 330px;
    background: #1A237E;
    border-radius: 20px;
    z-index: 1;
}

.img-stacked {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 260px;
    height: 280px;
    object-fit: cover;
    border-radius: 20px;
    z-index: 2;
    box-shadow: 0 4px 24px rgba(26,35,126,0.10);
    background: #fff;
}

@media (max-width: 900px) {
    .about-card-modern {
        flex-direction: column;
        padding: 24px 12px;
        gap: 18px;
    }
    .about-card-vision-row {
        flex-direction: column;
        gap: 10px;
    }
    .img-blue-shadow {
        width: 180px;
        height: 200px;
    }
    .img-blue-bg,
    .img-stacked {
        width: 160px;
        height: 180px;
        border-radius: 12px;
    }
    .img-stacked {
        bottom: 8px;
        right: 8px;
    }
}

/* (Optional) Mission Section Specific Tweaks */
.about-card-modern .about-card-content h2 {
    margin-top: 0;
}

.about-card-modern .about-card-vision-row {
    margin-top: 0;
}

/* Fix earth image centering and sizing in Our Story section */
.about-card-modern:first-of-type .about-card-img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 320px; /* Increased from 260px */
}

.about-card-modern:first-of-type .about-card-img img {
    width: 280px; /* Increased from 220px */
    height: 280px; /* Increased from 220px */
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .about-card-modern:first-of-type .about-card-img {
        height: 220px; /* Increased from 180px */
    }
    .about-card-modern:first-of-type .about-card-img img {
        width: 180px; /* Increased from 140px */
        height: 180px; /* Increased from 140px */
    }
}

/* Our Team Section Styles */
.team-section {
    background: linear-gradient(135deg, #f7f8fa 0%, #e3e8ff 100%);
    border-radius: 16px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    max-width: 1600px;
    margin: 60px auto 0 auto;
    padding: 60px 40px 40px 40px;
    position: relative;
    overflow: hidden;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px);}
    to { opacity: 1; transform: translateY(0);}
}

.team-title {
    text-align: center;
    color: #1A237E;
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 50px;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
}

.team-members {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 32px;
}

.team-member {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    padding: 30px 20px;
    text-align: center;
    width: 250px;
    min-width: 200px;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: box-shadow 0.3s, transform 0.3s;
    cursor: pointer;
    overflow: visible;
    z-index: 1;
}

.team-member:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transform: translateY(-5px) scale(1.02);
}

.team-img-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
    border-radius: 50%;
    overflow: visible;
}

.team-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    background: #fff;
    transition: box-shadow 0.3s, transform 0.3s;
    position: relative;
    z-index: 1;
}

.team-member:hover .team-img {
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
    transform: scale(1.05);
}

.team-socials {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    transform: translateY(100%);
    padding: 8px 0;
    z-index: 10;
}

.team-member:hover .team-socials {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.team-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: #1A237E;
    color: #fff;
    border-radius: 50%;
    font-size: 1.2em;
    transition: background 0.2s ease-in-out, transform 0.2s ease-in-out;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.team-socials a:hover {
    background: #1976D2;
    color: #fff;
    transform: scale(1.1);
}

.team-name {
    font-size: 1.3em;
    font-weight: bold;
    color: #1A237E;
    margin: 15px 0 5px 0;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.team-role-badge {
    display: inline-block;
    background: #1976D2;
    color: #fff;
    font-size: 0.9em;
    font-weight: 600;
    border-radius: 8px;
    padding: 3px 10px;
    margin-top: 5px;
    letter-spacing: 0.3px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

@media (max-width: 1200px) {
    .team-section {
        padding: 50px 10px 40px 10px;
    }
    .team-members {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .team-member {
        width: 180px;
        min-width: 150px;
        max-width: 200px;
        padding: 20px 10px;
    }
    .team-img-wrapper {
        width: 80px;
        height: 80px;
    }
    .team-img {
        width: 100%;
        height: 100%;
    }
}
@media (max-width: 900px) {
    .team-members {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .team-member {
        width: 100% !important;
        max-width: 100% !important;
    }
}
@media (max-width: 600px) {
    .team-members {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .team-member {
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* Experiences Section Styles */
.experiences-section {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(26,35,126,0.08);
    max-width: 1600px;
    margin: 40px auto 0 auto;
    padding: 60px 40px 40px 40px;
    position: relative;
}

.experiences-title {
    text-align: center;
    color: #1A237E;
    font-size: 2.3em;
    font-weight: 800;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.experiences-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    justify-items: center;
}

.experience-card {
    background: #f7f8fa;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(26,35,126,0.06);
    padding: 36px 24px 28px 24px;
    text-align: center;
    width: 100%;
    max-width: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s, transform 0.2s;
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.experience-card:hover {
    box-shadow: 0 8px 32px rgba(26,35,126,0.13);
    transform: translateY(-8px) scale(1.04);
}

.experience-card i {
    font-size: 2.5em;
    color: #1976D2;
    margin-bottom: 18px;
    transition: color 0.2s;
}

.experience-card:hover i {
    color: #1A237E;
}

.experience-card h3 {
    font-size: 1.18em;
    font-weight: 700;
    color: #1A237E;
    margin: 0 0 12px 0;
    letter-spacing: 0.5px;
}

.experience-card p {
    color: #444;
    font-size: 1.05em;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1200px) {
    .experiences-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}
@media (max-width: 700px) {
    .experiences-section {
        padding: 30px 6px 20px 6px;
    }
    .experiences-list {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .experience-card {
        max-width: 100%;
        padding: 18px 8px 14px 8px;
    }
}

/* Partners Section Styles */
.partners-section {
    padding: 80px 20px;
    background-color: #f8f9fa; /* Light grey background */
    text-align: center;
}

.partners-title {
    font-size: 2.5em;
    font-weight: 700;
    color: #1A237E; /* Dark blue color */
    margin-bottom: 60px;
    position: relative;
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
    justify-content: center;
}

/* Remove big outlined card buttons; show logos at their natural size */
.partners-grid a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    opacity: 0;
    transform: translateY(12px) scale(0.98);
    transition: opacity 500ms ease, transform 500ms ease;
}

.partners-grid a.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.partners-grid a:hover {
    transform: translateY(-2px) scale(1.02);
}

.partners-grid img {
    height: auto;
    max-height: 70px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
}

.partner-placeholder {
    /* Styles for when there is no logo image */
    height: 80px;
    width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-weight: 500;
}

@media (max-width: 900px) {
    .partners-grid { gap: 18px; }
    .partners-grid img { max-height: 60px; max-width: 160px; }
}
@media (max-width: 600px) {
    .partners-grid { gap: 12px; }
    .partners-grid img { max-height: 48px; max-width: 120px; }
}

/* Certificate Section Styles */
.certificate-section {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(26,35,126,0.08);
    max-width: 1200px;
    margin: 40px auto 0 auto;
    padding: 50px 40px 40px 40px;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s;
}

.certificate-title {
    text-align: center;
    color: #1A237E;
    font-size: 2.3em;
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: 1px;
}

.certificate-desc {
    text-align: center;
    color: #444;
    font-size: 1.15em;
    margin-bottom: 36px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.certificate-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: center;
}

.certificate-logos img {
    height: 90px;
    width: auto;
    object-fit: contain;
    background: #f7f8fa;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(26,35,126,0.06);
    padding: 14px 28px;
    transition: transform 0.3s, box-shadow 0.3s, filter 0.3s;
    opacity: 0.85;
    animation: fadeInUp 1s;
}

.certificate-logos img:hover {
    opacity: 1;
    transform: scale(1.08) rotate(-2deg);
    box-shadow: 0 6px 24px rgba(26,35,126,0.13);
    background: #fff;
    z-index: 2;
}

@media (max-width: 1200px) {
    .certificate-logos {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 900px) {
    .certificate-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}
@media (max-width: 600px) {
    .certificate-logos {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .certificate-logos img, .certificate-logos .certificate-placeholder {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
    }
}

/* Footer Styles */
  footer {
    background: #1A237E;
    color: #fff;
    padding: 40px 0 0 0;
    margin-top: 0;
  }
  .footer-top {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #333;
  }
  .footer-logo-section {
    max-width: 300px;
  }
  .footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
  }
  .footer-top h4 {
    margin-bottom: 10px;
    color: #fff;
  }
  .footer-top ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-top ul li {
    margin-bottom: 6px;
  }
  .footer-top input[type="email"] {
    padding: 10px 15px;
    border-radius: 6px;
    border: none;
    margin-bottom: 12px;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  .footer-top input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.7);
  }
  .footer-top button {
    background: #fff;
    color: #1A237E;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
  }
  .footer-top button:hover {
    background: #1A237E;
    color: #fff;
  }
  .footer-top p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    font-size: 0.95em;
  }
  .footer-bottom {
    text-align: left;
    padding: 18px 0;
    background: #1A237E;
    font-size: 0.95em;
  }
  .footer-bottom .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
  }
  .footer-bottom .social-icons {
    display: flex;
    gap: 15px;
  }
  .footer-bottom .social-icons a {
    color: #fff;
    font-size: 1.1em;
    transition: all 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
  }
  .footer-bottom .social-icons a:hover {
    transform: translateY(-3px);
  }
  /* Social Media Brand Colors */
  .footer-bottom .social-icons a.facebook:hover {
    background: #1877f2;
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.4);
  }
  .footer-bottom .social-icons a.twitter:hover {
    background: #1da1f2;
    box-shadow: 0 4px 12px rgba(29, 161, 242, 0.4);
  }
  .footer-bottom .social-icons a.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 4px 12px rgba(220, 39, 67, 0.4);
  }
  .footer-bottom .social-icons a.linkedin:hover {
    background: #0077b5;
    box-shadow: 0 4px 12px rgba(0, 119, 181, 0.4);
  }
  .footer-bottom .social-icons a.youtube:hover {
    background: #ff0000;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.4);
  }
/* Enhanced Footer Responsive Styles */

/* Large Desktop (1400px and above) */
@media (min-width: 1400px) {
    footer {
        padding: 50px 0 0 0;
    }
    
    .footer-top {
        gap: 40px;
        padding-bottom: 40px;
    }
    
    .footer-logo-section {
        max-width: 350px;
    }
    
    .footer-logo {
        height: 45px;
    }
    
    .footer-top h4 {
        font-size: 1.2em;
    }
    
    .footer-top ul li {
        font-size: 1.05em;
        margin-bottom: 8px;
    }
}

/* Desktop (1200px - 1399px) */
@media (max-width: 1399px) and (min-width: 1200px) {
    .footer-top {
        gap: 35px;
        padding-bottom: 35px;
    }
    
    .footer-logo {
        height: 42px;
    }
    
    .footer-top h4 {
        font-size: 1.15em;
    }
    
    .footer-top ul li {
        font-size: 1em;
        margin-bottom: 7px;
    }
}

/* Large Tablets (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
    .footer-top {
        gap: 30px;
        padding-bottom: 30px;
    }
    
    .footer-logo {
        height: 40px;
    }
    
    .footer-top h4 {
        font-size: 1.1em;
    }
    
    .footer-top ul li {
        font-size: 0.95em;
        margin-bottom: 6px;
    }
}

/* Tablets (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {
    footer {
        padding: 35px 0 0 0;
    }
    
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 25px;
        padding-bottom: 25px;
    }
    
    .footer-logo-section {
        max-width: 300px;
    }
    
    .footer-logo {
        height: 38px;
    }
    
    .footer-top h4 {
        font-size: 1.05em;
    }
    
    .footer-top ul li {
        font-size: 0.9em;
        margin-bottom: 5px;
    }
    
    .footer-top input[type="email"] {
        padding: 8px 12px;
        font-size: 0.9em;
    }
    
    .footer-top button {
        padding: 8px 18px;
        font-size: 0.9em;
    }
    
    .footer-bottom {
        padding: 15px 0;
    }
    
    .footer-bottom .container {
        padding: 0 15px;
    }
}

/* Large Mobile (576px - 767px) */
@media (max-width: 767px) and (min-width: 576px) {
    footer {
        padding: 30px 0 0 0;
    }
    
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
        padding-bottom: 20px;
    }
    
    .footer-logo-section {
        max-width: 280px;
    }
    
    .footer-logo {
        height: 35px;
        margin-bottom: 12px;
    }
    
    .footer-top h4 {
        font-size: 1em;
        margin-bottom: 8px;
    }
    
    .footer-top ul li {
        font-size: 0.85em;
        margin-bottom: 4px;
    }
    
    .footer-top input[type="email"] {
        padding: 7px 10px;
        font-size: 0.85em;
        margin-bottom: 10px;
    }
    
    .footer-top button {
        padding: 7px 15px;
        font-size: 0.85em;
    }
    
    .footer-top p {
        font-size: 0.9em;
        margin-bottom: 12px;
    }
    
    .footer-bottom {
        padding: 12px 0;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding: 0 12px;
    }
    
    .footer-bottom p {
        font-size: 0.9em;
    }
    
    .footer-bottom .social-icons {
        justify-content: center;
        gap: 12px;
    }
    
    .footer-bottom .social-icons a {
        width: 28px;
        height: 28px;
        font-size: 1em;
    }
}

/* Mobile (375px - 575px) */
@media (max-width: 575px) and (min-width: 376px) {
    footer {
        padding: 25px 0 0 0;
    }
    
    .footer-top {
        gap: 18px;
        padding-bottom: 18px;
    }
    
    .footer-logo-section {
        max-width: 250px;
    }
    
    .footer-logo {
        height: 32px;
        margin-bottom: 10px;
    }
    
    .footer-top h4 {
        font-size: 0.95em;
        margin-bottom: 6px;
    }
    
    .footer-top ul li {
        font-size: 0.8em;
        margin-bottom: 3px;
    }
    
    .footer-top input[type="email"] {
        padding: 6px 8px;
        font-size: 0.8em;
        margin-bottom: 8px;
    }
    
    .footer-top button {
        padding: 6px 12px;
        font-size: 0.8em;
    }
    
    .footer-top p {
        font-size: 0.85em;
        margin-bottom: 10px;
    }
    
    .footer-bottom {
        padding: 10px 0;
    }
    
    .footer-bottom .container {
        gap: 10px;
        padding: 0 10px;
    }
    
    .footer-bottom p {
        font-size: 0.85em;
    }
    
    .footer-bottom .social-icons {
        gap: 10px;
    }
    
    .footer-bottom .social-icons a {
        width: 26px;
        height: 26px;
        font-size: 0.9em;
    }
}

/* Small Mobile (320px - 375px) */
@media (max-width: 375px) and (min-width: 321px) {
    footer {
        padding: 20px 0 0 0;
    }
    
    .footer-top {
        gap: 15px;
        padding-bottom: 15px;
    }
    
    .footer-logo-section {
        max-width: 220px;
    }
    
    .footer-logo {
        height: 28px;
        margin-bottom: 8px;
    }
    
    .footer-top h4 {
        font-size: 0.9em;
        margin-bottom: 5px;
    }
    
    .footer-top ul li {
        font-size: 0.75em;
        margin-bottom: 2px;
    }
    
    .footer-top input[type="email"] {
        padding: 5px 6px;
        font-size: 0.75em;
        margin-bottom: 6px;
    }
    
    .footer-top button {
        padding: 5px 10px;
        font-size: 0.75em;
    }
    
    .footer-top p {
        font-size: 0.8em;
        margin-bottom: 8px;
    }
    
    .footer-bottom {
        padding: 8px 0;
    }
    
    .footer-bottom .container {
        gap: 8px;
        padding: 0 8px;
    }
    
    .footer-bottom p {
        font-size: 0.8em;
    }
    
    .footer-bottom .social-icons {
        gap: 8px;
    }
    
    .footer-bottom .social-icons a {
        width: 24px;
        height: 24px;
        font-size: 0.85em;
    }
}

/* Extra Small Mobile (280px - 320px) */
@media (max-width: 320px) and (min-width: 281px) {
    footer {
        padding: 15px 0 0 0;
    }
    
    .footer-top {
        gap: 12px;
        padding-bottom: 12px;
    }
    
    .footer-logo-section {
        max-width: 200px;
    }
    
    .footer-logo {
        height: 25px;
        margin-bottom: 6px;
    }
    
    .footer-top h4 {
        font-size: 0.85em;
        margin-bottom: 4px;
    }
    
    .footer-top ul li {
        font-size: 0.7em;
        margin-bottom: 1px;
    }
    
    .footer-top input[type="email"] {
        padding: 4px 5px;
        font-size: 0.7em;
        margin-bottom: 5px;
    }
    
    .footer-top button {
        padding: 4px 8px;
        font-size: 0.7em;
    }
    
    .footer-top p {
        font-size: 0.75em;
        margin-bottom: 6px;
    }
    
    .footer-bottom {
        padding: 6px 0;
    }
    
    .footer-bottom .container {
        gap: 6px;
        padding: 0 6px;
    }
    
    .footer-bottom p {
        font-size: 0.75em;
    }
    
    .footer-bottom .social-icons {
        gap: 6px;
    }
    
    .footer-bottom .social-icons a {
        width: 22px;
        height: 22px;
        font-size: 0.8em;
    }
}

/* Ultra Small Mobile (240px - 280px) */
@media (max-width: 280px) {
    footer {
        padding: 12px 0 0 0;
    }
    
    .footer-top {
        gap: 10px;
        padding-bottom: 10px;
    }
    
    .footer-logo-section {
        max-width: 180px;
    }
    
    .footer-logo {
        height: 22px;
        margin-bottom: 5px;
    }
    
    .footer-top h4 {
        font-size: 0.8em;
        margin-bottom: 3px;
    }
    
    .footer-top ul li {
        font-size: 0.65em;
        margin-bottom: 1px;
    }
    
    .footer-top input[type="email"] {
        padding: 3px 4px;
        font-size: 0.65em;
        margin-bottom: 4px;
    }
    
    .footer-top button {
        padding: 3px 6px;
        font-size: 0.65em;
    }
    
    .footer-top p {
        font-size: 0.7em;
        margin-bottom: 5px;
    }
    
    .footer-bottom {
        padding: 5px 0;
    }
    
    .footer-bottom .container {
        gap: 5px;
        padding: 0 5px;
    }
    
    .footer-bottom p {
        font-size: 0.7em;
    }
    
    .footer-bottom .social-icons {
        gap: 5px;
    }
    
    .footer-bottom .social-icons a {
        width: 20px;
        height: 20px;
        font-size: 0.75em;
    }
}

/* Legacy support for older breakpoints */
@media (max-width: 600px) {
    .footer-bottom .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .footer-bottom .social-icons {
        justify-content: center;
    }
}

@media (max-width: 900px) {
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    nav ul {
        gap: 15px;
    }
    .tour-list {
        grid-template-columns: 1fr;
    }

    .tour-card {
        border-radius: 12px;
    }
    .tour-card img, .tour-card::before {
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
        height: 140px;
    }
    .tour-info {
        padding: 14px 10px 12px 10px;
    }
    .right-boxes {
        flex-direction: column;
        gap: 20px;
        width: 100%;
        align-items: center;
    }
}

.partners-flex-row {
    display: flex;
    justify-content: center;
    gap: 32px;
    width: 100%;
    margin-top: 32px;
}
.partners-flex-row > a {
    flex: 0 0 calc(25% - 24px); /* 4 columns, minus gap */
    max-width: calc(25% - 24px);
    min-width: 220px;
}
@media (max-width: 900px) {
    .partners-flex-row > a {
        flex: 0 0 calc(50% - 9px);
        max-width: calc(50% - 9px);
        min-width: 120px;
    }
}
@media (max-width: 600px) {
    .partners-flex-row > a {
        flex: 0 0 100%;
        max-width: 100%;
        min-width: 100px;
    }
}

.certificates-flex-row {
    display: flex;
    justify-content: center;
    gap: 24px;
    width: 100%;
    margin-top: 24px;
}
.certificates-flex-row > img,
.certificates-flex-row > .certificate-placeholder {
    flex: 0 0 calc(25% - 18px); /* 4 columns, minus gap */
    max-width: calc(25% - 18px);
    min-width: 120px;
}
@media (max-width: 900px) {
    .certificates-flex-row > img,
    .certificates-flex-row > .certificate-placeholder {
        flex: 0 0 calc(50% - 6px);
        max-width: calc(50% - 6px);
        min-width: 80px;
    }
}
@media (max-width: 600px) {
    .certificates-flex-row > img,
    .certificates-flex-row > .certificate-placeholder {
        flex: 0 0 100%;
        max-width: 100%;
        min-width: 60px;
    }
}
    