@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Noto+Sans:wght@400;500;700&display=swap');

:root {
    --primary-purple: #111111; /* Changed to Logo Black */
    --primary-pink: #111111; /* Changed to Logo Black */
    --primary-yellow: #f24a29; /* Updated to Logo Orange */
    --bg-light: #f8f6fb;
    --bg-white: #FFFFFF;
    --text-dark: #2d3748;
    --text-muted: #4a5568;
    --border-color: #EEEEEE;
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.05);
    --shadow-md: 0 5px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Noto Sans', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
    color: var(--primary-purple);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: none;
}

.btn-primary {
    background-color: var(--primary-yellow); /* Orange */
    color: #fff;
    box-shadow: 0 4px 15px rgba(242, 74, 41, 0.4);
}

.btn-primary:hover {
    background-color: #d13a1b;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-purple);
    color: var(--primary-purple);
}

.btn-outline:hover {
    background-color: var(--primary-purple);
    color: var(--bg-white);
}

/* Header */
.header {
    background-color: #fff;
    position: relative;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: var(--transition);
}
.header.scrolled {
    position: fixed;
    background-color: #fff;
    padding: 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

/* Top Bar */
.top-bar {
    background-color: #000;
    color: #fff;
    font-size: 0.85rem;
    padding: 8px 0;
}
.top-bar-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
}
.top-social a {
    color: var(--primary-yellow);
    margin-right: 15px;
    font-size: 1rem;
}
.top-social a:hover {
    color: #fff;
}
.top-email {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

/* Main Nav */
.main-nav {
    background-color: #fff;
}
.nav-container {
    display: flex;
    justify-content: flex-start;
    align-items: stretch; /* Stretch ensures the logo touches top and bottom */
    height: 80px;
    padding: 0 20px;
    position: relative;
}

.logo-container {
    height: 80px;
    width: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-decoration: none;
    margin-left: -40px; /* Pulls it tighter to the left edge */
}

.header-logo-img {
    height: 80px;
    transform: scale(1.4) translateX(-15px); /* Zoomed out for better fit and moved left */
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 0;
    align-items: center;
    height: 100%;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: #111;
    text-transform: uppercase;
    transition: background 0.3s ease;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.nav-link:hover,
.nav-link.active {
    background-color: var(--primary-yellow);
    color: #fff;
}

.phone-btn {
    background-color: var(--primary-yellow);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    padding: 10px 25px;
    border-radius: 3px;
    transition: background 0.3s;
}
.phone-btn:hover {
    background-color: #d13a1b; /* Darker orange */
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: #111;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: flex-start;
    padding-top: 25vh;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: transparent;
}

.hero-container {
    position: relative;
    z-index: 10;
    text-align: center;
    width: 100%;
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: #ffffff;
    margin-bottom: 15px;
    text-transform: uppercase;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.4);
}

/* Animations */
@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Tour Cards */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.tour-card {
    background: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    cursor: pointer;
    border: 1px solid var(--border-color);
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.tour-img-wrap {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.tour-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tour-card:hover .tour-img-wrap img {
    transform: scale(1.05);
}

.tour-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-purple);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

.tour-content {
    padding: 25px;
}

.tour-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--primary-purple);
}

.tour-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.tour-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-pink);
    margin-bottom: 20px;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: var(--bg-white);
    padding: 80px 0 30px;
}

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

.footer-col h3 {
    color: var(--bg-white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-yellow); /* Orange */
}

.footer-col p {
    color: #bbbbbb;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-col i {
    color: var(--primary-yellow); /* Orange */
    margin-top: 5px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #bbbbbb;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-yellow); /* Orange */
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #888888;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title { font-size: 3.5rem; }
}

@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 80px;
        left: -100%;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 0;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
        transition: 0.4s ease;
    }
    
    .nav-menu.active { left: 0; }
    .hamburger { display: block; }
    .hero-title { font-size: 2.5rem; }
    .section { padding: 60px 0; }
    
    .nav-link { 
        color: #111; 
        width: 100%;
        height: 50px;
        justify-content: center;
        border-bottom: 1px solid #eee;
    }
    .nav-right { display: none; }
}

/* Inner Page Header */
.inner-header {
    height: 350px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.inner-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
}

.inner-header-content {
    position: relative;
    z-index: 1;
    color: var(--bg-white);
    margin-top: 50px;
}

.inner-header h1 {
    color: var(--bg-white);
    font-size: 3rem;
    margin-bottom: 10px;
}
/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}
.feature-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 420px;
    box-shadow: var(--shadow-sm);
}
.feature-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.feature-card:hover img {
    transform: scale(1.08);
}
.feature-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0,0,0,0.8) 100%);
    pointer-events: none;
}
.feature-text {
    position: absolute;
    bottom: 25px;
    left: 20px;
    right: 20px;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    z-index: 2;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.3;
}
.offset-down {
    transform: translateY(40px);
}
.offset-up {
    transform: translateY(0);
}
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .offset-down, .offset-up { transform: none; }
}
@media (max-width: 576px) {
    .features-grid { grid-template-columns: 1fr; }
}
/* Masonry Gallery */
.masonry-gallery {
    column-count: 3;
    column-gap: 20px;
}
.masonry-item {
    break-inside: avoid;
    margin-bottom: 20px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}
.masonry-item img {
    width: 100%;
    display: block;
    transition: transform 0.6s ease;
}
.masonry-item:hover img {
    transform: scale(1.08);
}
.masonry-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    text-align: center;
    padding: 20px;
}
.masonry-item:hover .masonry-overlay {
    background: rgba(0,0,0,0.5);
}
.masonry-title {
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 1px 1px 10px rgba(0,0,0,0.5);
    line-height: 1.2;
}
@media (max-width: 992px) {
    .masonry-gallery { column-count: 2; }
}
@media (max-width: 576px) {
    .masonry-gallery { column-count: 1; }
}
/* Five Grid Layout */
.five-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}
.five-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}
.five-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.five-item:hover img {
    transform: scale(1.08);
}
.five-grid .grid-item-1, .five-grid .grid-item-2 {
    grid-column: span 3;
    height: 400px;
}
.five-grid .grid-item-3, .five-grid .grid-item-4, .five-grid .grid-item-5 {
    grid-column: span 2;
    height: 300px;
}
@media (max-width: 992px) {
    .five-grid .grid-item-1, .five-grid .grid-item-2, .five-grid .grid-item-3, .five-grid .grid-item-4, .five-grid .grid-item-5 {
        grid-column: span 3;
    }
}
@media (max-width: 576px) {
    .five-grid .grid-item-1, .five-grid .grid-item-2, .five-grid .grid-item-3, .five-grid .grid-item-4, .five-grid .grid-item-5 {
        grid-column: span 6;
    }
}
/* Themed Holidays Banner */
.themed-holidays-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0;
    margin-top: 40px;
}
.themed-holidays-banner .banner-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4);
}
.themed-holidays-banner .relative-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
}
.banner-content {
    max-width: 550px;
    color: #fff;
}
.banner-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}
.yellow-line {
    width: 60px;
    height: 4px;
    background: var(--primary-yellow);
    margin-bottom: 25px;
}
.banner-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 35px;
    font-weight: 500;
}
.banner-btn {
    background: var(--primary-yellow); /* Orange */
    color: #fff;
    padding: 15px 40px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(242, 74, 41, 0.3);
}
.banner-btn:hover {
    background: #d13a1b;
}
@media (max-width: 768px) {
    .themed-holidays-banner .relative-content {
        justify-content: center;
        text-align: center;
    }
    .yellow-line {
        margin: 0 auto 25px auto;
    }
}
/* Indian Destinations Layout */
.indian-destinations-layout {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}
.indian-destinations-text {
    flex: 0 0 350px;
    position: sticky;
    top: 100px;
}
.indian-destinations-grid {
    flex: 1;
    column-count: 2;
    column-gap: 20px;
}
@media (max-width: 992px) {
    .indian-destinations-layout {
        flex-direction: column;
    }
    .indian-destinations-text {
        flex: none;
        width: 100%;
        margin-bottom: 40px;
        position: static;
        text-align: center;
    }
    .indian-destinations-text .yellow-line {
        margin: 0 auto 20px auto !important;
    }
}
@media (max-width: 576px) {
    .indian-destinations-grid {
        column-count: 1;
    }
}
/* Override Masonry for Indian Destinations to strictly prevent gaps */
.indian-destinations-grid {
    column-count: auto !important;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
}
.indian-destinations-grid .masonry-item {
    margin-bottom: 0 !important;
    height: 260px !important;
}
/* Student Tour Banner */
.student-tour-banner {
    position: relative;
    width: 100%;
    height: 480px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.student-tour-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.student-tour-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}
.tour-banner-text {
    position: absolute;
    top: 45%;
    right: 5%;
    transform: translateY(-50%);
    z-index: 2;
    text-align: right;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    line-height: 1.1;
}
.tour-banner-text .line-1 {
    font-size: 3.5rem;
    color: #fff;
    letter-spacing: -1px;
}
.tour-banner-text .line-2 {
    font-size: 4rem;
    color: #fff;
    letter-spacing: -1px;
    margin-bottom: 5px;
}
.tour-banner-text .line-3 {
    font-size: 2.5rem;
    color: var(--primary-yellow);
    letter-spacing: -1px;
}
.tour-banner-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: #eee;
    padding: 15px 40px;
    font-size: 1.1rem;
    z-index: 2;
    text-align: right;
    font-weight: 500;
}
@media (max-width: 768px) {
    .tour-banner-text {
        right: 50%;
        transform: translate(50%, -50%);
        text-align: center;
        width: 90%;
    }
    .tour-banner-text .line-1 { font-size: 2rem; }
    .tour-banner-text .line-2 { font-size: 2.5rem; }
    .tour-banner-text .line-3 { font-size: 1.5rem; }
    .student-tour-banner::before {
        background: rgba(0,0,0,0.5);
    }
    .tour-banner-footer {
        text-align: center;
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}
/* Contact Layout */
.contact-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}
.contact-info-block {
    flex: 1;
    text-align: center;
    padding: 40px;
}
.contact-item {
    margin-bottom: 30px;
}
.contact-icon {
    font-size: 1.5rem;
    color: #1a2b4c;
    margin-bottom: 15px;
}
.contact-item p {
    font-size: 1.1rem;
    color: #555;
    font-weight: 500;
    line-height: 1.6;
}
.contact-item .divider {
    width: 50px;
    height: 1px;
    background: #ccc;
    margin: 30px auto 0 auto;
}

.contact-form-block {
    flex: 1.5;
    background: transparent;
}
.vacay-form .form-group {
    margin-bottom: 15px;
}
.vacay-form input, .vacay-form select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 0.95rem;
    background: #fff;
    color: #333;
    font-family: inherit;
    transition: border-color 0.3s ease;
}
.vacay-form input:focus, .vacay-form select:focus {
    outline: none;
    border-color: var(--primary-purple);
}
.phone-group {
    position: relative;
}
.phone-group .flag-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
}
.phone-group input {
    padding-left: 45px;
}
.captcha-group {
    margin-top: 25px;
}
.captcha-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #222;
    display: block;
    margin-bottom: 8px;
}
.btn-submit {
    width: 100%;
    padding: 15px;
    background: var(--primary-yellow); /* Orange */
    color: #fff;
    border: none;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 3px;
    cursor: pointer;
    margin-top: 15px;
    transition: background 0.3s ease;
}
.btn-submit:hover {
    background: #d13a1b; /* Darker orange hover */
}
@media (max-width: 992px) {
    .contact-layout {
        flex-direction: column;
    }
    .contact-info-block {
        order: 2;
    }
    .contact-form-block {
        order: 1;
        width: 100%;
    }
}

/* About Us New Grid Styles */
.about-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}
.mission-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-top: 5px solid var(--primary-yellow);
    transition: transform 0.3s ease;
}
.mission-card:hover {
    transform: translateY(-10px);
}
.mission-card h3 {
    color: var(--primary-purple);
    font-size: 1.8rem;
    margin-bottom: 20px;
}
.mission-card p {
    color: var(--text-muted);
    line-height: 1.8;
}
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}
.why-choose-item {
    display: flex;
    align-items: center;
    background: var(--bg-white);
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}
.why-choose-item i {
    color: var(--primary-yellow);
    font-size: 1.2rem;
    margin-right: 15px;
}
.why-choose-item span {
    color: var(--text-dark);
    font-weight: 600;
}

/* Services Page Styles */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}
.services-grid > * {
    flex: 1 1 320px;
    max-width: 380px;
}
.service-card {
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid #0073e6; /* Logo Blue */
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.service-card-header {
    padding: 30px 30px 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.service-card-header i {
    font-size: 2rem;
    color: var(--primary-yellow); /* Logo Orange */
}
.service-card-header h3 {
    font-size: 1.4rem;
    color: #111; /* Logo Black */
    margin: 0;
}
.service-card-body {
    padding: 0 30px 30px;
}
.service-card-body p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}
.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.service-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 500;
}
.service-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-yellow); /* Logo Orange */
}

/* Value Added Services - Dark Corporate Theme */
.value-added-section {
    background-color: #111; /* Logo Black */
    color: #fff;
    padding: 80px 0;
}
.value-added-section .section-title {
    color: #fff;
}
.value-added-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.value-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 10px;
    transition: background 0.3s ease;
}
.value-card:hover {
    background: rgba(255,255,255,0.1);
}
.value-card h4 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.value-card h4 i {
    color: var(--primary-yellow);
}
.value-card p {
    color: #bbb;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}
.value-list {
    list-style: none;
    padding: 0;
}
.value-list li {
    color: #ddd;
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.value-list li i {
    color: #0073e6; /* Logo Blue */
    font-size: 0.8rem;
}

/* 3D Flip Card Styles */
.flip-card-container {
    perspective: 1000px;
    width: 100%;
    height: 400px;
}
.flip-card {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0.2, 0.2, 1);
    transform-style: preserve-3d;
    cursor: pointer;
}
.flip-card-container:hover .flip-card {
    transform: rotateY(180deg);
}
.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.flip-card-front {
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.flip-card-front::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.35); /* Dark overlay */
    z-index: 1;
}
.flip-card-front h3 {
    z-index: 2;
    color: #fff;
    font-size: 2.2rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.6);
    text-align: center;
    padding: 0 20px;
}
.flip-card-front p {
    z-index: 2;
    color: #eee;
    margin-top: 10px;
    font-size: 1rem;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.6);
}
.flip-card-back {
    background-color: #333; /* Corporate dark grey */
    color: white;
    transform: rotateY(180deg);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid #444;
}
.flip-card-back h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.5rem;
    border-bottom: 2px solid var(--primary-yellow);
    padding-bottom: 10px;
    display: inline-block;
}
.flip-card-back p {
    color: #ccc;
    margin-bottom: 15px;
    font-size: 0.95rem;
}
.flip-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.flip-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: #eee;
    font-size: 0.95rem;
}
.flip-list li::before {
    content: '\f3c5'; /* Map marker icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-yellow);
    font-size: 0.8rem;
    top: 3px;
}
