/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #1a3a5f;
    --secondary-orange: #ff6b35;
    --dark-blue: #0d2a47;
    --light-blue: #e8f4f8;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --text-dark: #333333;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --header-height: 125px;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    padding-top: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Add padding to body to account for fixed header */
body.has-fixed-header {
    padding-top: 0;
}

/* Ensure touch targets are adequate */
a, button {
    -webkit-tap-highlight-color: rgba(255, 107, 53, 0.2);
    touch-action: manipulation;
}

/* About Us Heading Styling */
.about-heading {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-orange) 50%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 42px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding: 10px 30px;
    background-size: 200% auto;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: var(--white);
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    background: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Welcome Note Styling */
.welcome-note {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-style: italic;
    font-size: 28px;
    color: var(--white);
    text-align: center;
    margin: 30px 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
    position: relative;
    padding: 20px;
}

.welcome-note::before {
    content: '"';
    font-size: 80px;
    position: absolute;
    left: -20px;
    top: -30px;
    color: rgba(255, 255, 255, 0.2);
    font-family: 'Playfair Display', serif;
}

.welcome-note::after {
    content: '"';
    font-size: 80px;
    position: absolute;
    right: -20px;
    bottom: -60px;
    color: rgba(255, 255, 255, 0.2);
    font-family: 'Playfair Display', serif;
}

/* Elite Background Theme */
.elite-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    position: relative;
    overflow: hidden;
}

.elite-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.6;
}

/* Reasons Section */
.reasons-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.reason-card {
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border-left: 4px solid var(--secondary-orange);
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.reason-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s;
}

.reason-card:hover .reason-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.reason-icon i {
    color: var(--white);
    font-size: 30px;
}

.reason-card h3 {
    color: var(--primary-blue);
    font-size: 22px;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

.reason-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
    text-align: center;
}

/* Image Section */
.image-section {
    padding: 60px 0;
    background: var(--white);
}

.image-section img {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: block;
    margin: 0 auto;
}

/* Copyright Center */
.copyright-center {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
}

.copyright-center p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
    transform: translateY(0);
}

.header.hidden {
    transform: translateY(-100%);
}

.header-top {
    display: none;
}

/* Navigation */
.navbar {
    background: var(--white);
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Header Social Icons */
.header-social-links {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.header-social-icon {
    width: 38px;
    height: 38px;
    background: rgba(26, 58, 95, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 18px;
}

.header-social-icon i {
    font-size: 18px;
    line-height: 1;
}

.header-social-icon:hover {
    background: var(--secondary-orange);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.header-social-icon.whatsapp {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

.header-social-icon.whatsapp:hover {
    background: #25D366;
    color: var(--white);
}

.header-social-icon.x-twitter {
    background: rgba(0, 0, 0, 0.1);
    color: #000000;
}

.header-social-icon.x-twitter:hover {
    background: #000000;
    color: var(--white);
}

.x-icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
    display: block;
}

.header-social-icon.x-twitter:hover .x-icon {
    fill: var(--white);
}

.header-social-icon.linkedin {
    background: rgba(0, 119, 181, 0.1);
    color: #0077B5;
}

.header-social-icon.linkedin:hover {
    background: #0077B5;
    color: var(--white);
}

.header-social-icon.instagram {
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.1), rgba(131, 58, 180, 0.1));
    color: #E1306C;
}

.header-social-icon.instagram:hover {
    background: linear-gradient(135deg, #E1306C, #833AB4);
    color: var(--white);
}

.logo {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, var(--light-blue) 50%, rgba(255, 255, 255, 0.98) 100%);
    padding: 12px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(26, 58, 95, 0.12), 0 0 10px rgba(255, 107, 53, 0.08);
    transition: all 0.3s ease;
    display: inline-block;
    border: 1px solid rgba(232, 244, 248, 0.6);
}

.logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 58, 95, 0.18), 0 0 15px rgba(255, 107, 53, 0.12);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, var(--light-blue) 50%, rgba(255, 255, 255, 1) 100%);
}

.logo a {
    display: block;
    text-decoration: none;
    line-height: 0;
}

.logo img {
    height: 95px;
    width: auto;
    display: block;
    filter: brightness(1.08) contrast(1.03);
    transition: all 0.3s ease;
    object-fit: contain;
}

.logo:hover img {
    filter: brightness(1.12) contrast(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
    flex-wrap: wrap;
    flex: 1;
    justify-content: flex-end;
}

.nav-menu li {
    white-space: nowrap;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--secondary-orange);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--secondary-orange);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    transition: all 0.3s;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    padding: calc(var(--header-height) + 50px) 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-section h1 {
    color: var(--white);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

/* Page Main Headings */
.page-main-heading {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 700;
    color: var(--white);
    font-size: 48px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.hero-section p {
    color: var(--white);
    font-size: 20px;
    opacity: 0.9;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: var(--light-gray);
    margin-top: 0;
}

/* Colorful About Section */
.colorful-about {
    background: linear-gradient(135deg, rgba(26, 58, 95, 0.05) 0%, rgba(255, 107, 53, 0.05) 50%, rgba(232, 244, 248, 0.3) 100%);
    position: relative;
    overflow: hidden;
}

.colorful-about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(26, 58, 95, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.colorful-about .container {
    position: relative;
    z-index: 1;
}

.colorful-text p {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(232, 244, 248, 0.7) 100%);
    padding: 25px 30px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--secondary-orange);
    position: relative;
}

.colorful-text p::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-blue), var(--secondary-orange));
    border-radius: 15px 0 0 15px;
}

/* Mission/Who We Are Box Styling */
.mission-box, .who-we-are-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(232, 244, 248, 0.8) 100%);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.mission-box::before, .who-we-are-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-orange), var(--primary-blue));
    background-size: 200% auto;
    animation: gradient-shift 3s ease infinite;
}

.mission-box:hover, .who-we-are-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-orange);
}

.mission-box h2, .who-we-are-box h2 {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary-orange);
}

/* Decorative Heading Images */
.section-header {
    position: relative;
}

.section-header::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(26, 58, 95, 0.1), rgba(255, 107, 53, 0.1));
    border-radius: 50%;
    z-index: -1;
    opacity: 0.5;
}

.section-header h2 {
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(26, 58, 95, 0.1) 0%, transparent 50%);
    background-size: 200% 200%;
    padding: 15px 40px;
    border-radius: 10px;
}

/* About Us Heading Styling */
.about-heading {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-orange) 50%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 42px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding: 10px 30px;
    background-size: 200% auto;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: var(--white);
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    background: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Welcome Note Styling */
.welcome-note {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-style: italic;
    font-size: 28px;
    color: var(--white);
    text-align: center;
    margin: 30px 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
    position: relative;
    padding: 20px;
}

.welcome-note::before {
    content: '"';
    font-size: 80px;
    position: absolute;
    left: -20px;
    top: -30px;
    color: rgba(255, 255, 255, 0.2);
    font-family: 'Playfair Display', serif;
}

.welcome-note::after {
    content: '"';
    font-size: 80px;
    position: absolute;
    right: -20px;
    bottom: -60px;
    color: rgba(255, 255, 255, 0.2);
    font-family: 'Playfair Display', serif;
}

/* Elite Background Theme */
.elite-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    position: relative;
    overflow: hidden;
}

.elite-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.6;
}

/* Reasons Section */
.reasons-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.reason-card {
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border-left: 4px solid var(--secondary-orange);
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.reason-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s;
}

.reason-card:hover .reason-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.reason-icon i {
    color: var(--white);
    font-size: 30px;
}

.reason-card h3 {
    color: var(--primary-blue);
    font-size: 22px;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

.reason-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
    text-align: center;
}

/* Image Section */
.image-section {
    padding: 60px 0;
    background: var(--white);
}

.image-section img {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: block;
    margin: 0 auto;
}

/* Copyright Center */
.copyright-center {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
}

.copyright-center p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 0;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: justify;
    text-align-last: center;
}

.about-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
    text-align-last: center;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: var(--white);
    margin-top: 0;
}

.services-section .section-header p {
    color: var(--text-light);
    font-size: 16px;
    margin-top: 10px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--white);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-orange));
    transform: scaleX(0);
    transition: transform 0.3s;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-orange);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--secondary-orange), #ff8c5a);
    transform: scale(1.1) rotate(5deg);
}

.service-icon i {
    font-size: 36px;
    color: var(--white);
}

.service-card h3 {
    font-size: 22px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.btn-view-more {
    color: var(--secondary-orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-view-more:hover {
    gap: 12px;
    color: var(--primary-blue);
}

.btn-view-more i {
    font-size: 12px;
}

/* Visa Services Section */
.visa-services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--white) 100%);
}

.visa-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.visa-service-item {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.visa-service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.visa-service-item i {
    font-size: 48px;
    color: var(--secondary-orange);
    margin-bottom: 20px;
}

.visa-service-item h4 {
    font-size: 20px;
    color: var(--primary-blue);
    font-weight: 600;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.btn-consultancy {
    background: linear-gradient(135deg, var(--secondary-orange), #ff8c5a);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.btn-consultancy:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* Footer */
.footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-logo img {
    height: 90px;
    width: auto;
    margin-bottom: 15px;
    filter: brightness(1.1) contrast(1.05);
}

.footer-tagline {
    font-style: italic;
    color: var(--secondary-orange);
    font-size: 16px;
    margin-bottom: 20px;
}

.footer-contact {
    margin-bottom: 20px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.footer-contact i {
    color: var(--secondary-orange);
    width: 20px;
}

.footer-social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social-icon {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 18px;
}

.footer-social-icon i {
    font-size: 18px;
    line-height: 1;
}

.footer-social-icon:hover {
    background: var(--secondary-orange);
    transform: translateY(-3px);
}

.footer-social-icon .x-icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-social-icon:hover .x-icon {
    fill: var(--white);
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--white);
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--secondary-orange);
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--secondary-orange);
    padding-left: 5px;
}

.footer-address p {
    margin-bottom: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-address strong {
    color: var(--white);
    display: block;
    margin-bottom: 10px;
}

.footer-address i {
    color: var(--secondary-orange);
    margin-right: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.copyright-center {
    text-align: center;
    width: 100%;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 10px;
}

.copyright-center p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 0;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: var(--secondary-orange);
}

.footer-bottom-links span {
    color: rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
/* Tablet and below */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 15px;
    }

    .nav-menu a {
        font-size: 14px;
    }

    .header-social-icon {
        width: 34px;
        height: 34px;
        font-size: 16px;
    }

    .header-social-icon i {
        font-size: 16px;
    }

    .x-icon {
        width: 16px;
        height: 16px;
    }

    .logo img {
        height: 85px;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .reasons-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

/* Mobile and Tablet */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .nav-wrapper {
        gap: 15px;
    }

    .header-social-links {
        display: none;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: var(--white);
        width: 80%;
        max-width: 300px;
        height: 100vh;
        padding: 100px 20px 20px;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        transition: left 0.3s;
        gap: 20px;
        z-index: 999;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 10px 0;
        font-size: 16px;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .logo {
        padding: 10px 18px;
    }

    .logo img {
        height: 80px;
    }

    :root {
        --header-height: 110px;
    }

    .hero-section {
        padding: calc(var(--header-height) + 30px) 0 80px;
        min-height: auto;
    }

    .hero-section h1 {
        font-size: 32px;
        line-height: 1.2;
    }

    .hero-section p {
        font-size: 16px;
    }

    .page-main-heading {
        font-size: 36px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .about-heading {
        font-size: 32px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .visa-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mission-box,
    .who-we-are-box {
        padding: 30px 20px;
    }

    .mission-box h2,
    .who-we-are-box h2 {
        font-size: 28px;
    }

    .colorful-text p {
        padding: 20px 25px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .welcome-note {
        font-size: 20px;
        padding: 15px;
    }

    .welcome-note::before,
    .welcome-note::after {
        font-size: 60px;
    }
}

/* Ensure all images are responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Ensure buttons are touch-friendly on mobile */
@media (max-width: 768px) {
    .btn-consultancy,
    .btn-view-more {
        min-height: 44px;
        min-width: 44px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    :root {
        --header-height: 100px;
    }

    .navbar {
        padding: 10px 0;
    }

    .logo {
        padding: 8px 15px;
    }

    .logo img {
        height: 70px;
    }

    .hero-section {
        padding: calc(var(--header-height) + 20px) 0 60px;
        min-height: auto;
    }

    .hero-section h1,
    .page-main-heading {
        font-size: 28px;
    }

    .hero-section p {
        font-size: 14px;
    }

    .about-section,
    .services-section,
    .visa-services-section,
    .reasons-section {
        padding: 40px 0;
    }

    .service-card,
    .reason-card {
        padding: 25px 20px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .about-heading {
        font-size: 28px;
    }

    .welcome-note {
        font-size: 18px;
        padding: 10px;
    }

    .welcome-note::before {
        left: -10px;
        top: -20px;
        font-size: 50px;
    }

    .welcome-note::after {
        right: -10px;
        bottom: -50px;
        font-size: 50px;
    }

    .btn-consultancy {
        padding: 12px 30px;
        font-size: 14px;
    }

    .footer-logo img {
        height: 60px;
    }

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

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .hero-section h1,
    .page-main-heading {
        font-size: 24px;
    }

    .section-header h2 {
        font-size: 22px;
    }

    .logo img {
        height: 60px;
    }

    :root {
        --header-height: 90px;
    }
}
