/* GENERAL RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'Poppins', sans-serif;
}


/* Basic reset for dropdown */
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    position: relative;
}

nav ul li a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
}

/* Dropdown Menu */
.dropdown-menu {
    display: none; /* Hide by default */
    position: absolute;
    top: 100%;
    left: 0;
    background: #1a1a3a;
    min-width: 180px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 100;
}

/* Dropdown items */
.dropdown-menu li a {
    padding: 10px;
    color: #ffffff;
}

/* Show on hover */
.dropdown:hover > .dropdown-menu {
    display: block;
}

/* Optional: hover effect */
.dropdown-menu li a:hover {
    background-color: #0e0d0d;
}

/* For mobile: hide menu, show on hamburger click - handled separately */
/* HERO SECTION FLEX LAYOUT */
.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
    padding: 0 8%;
    min-height: 100vh;
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    font-size: 60px;
    font-weight: 800;
}

.hero-content span {
    color: #f4b860;
}

.hero-content p {
    margin: 20px 0;
    font-size: 18px;
    line-height: 1.6;
}

.hero-image img {
    max-width: 1000px; /* Adjust size as needed */
    width: 150%;
    height: 360px;
    animation: float 6s ease-in-out infinite;
    opacity: 0.95;
}

.hero-imageVisitVisa img {
    max-width: 1000px; /* Adjust size as needed */
    width: 150%;
    padding-top: 40px;
    padding-right: 100px;
    height: 400px;
    animation: float 6s ease-in-out infinite;
    opacity: 0.95;
}

.hero-image-immigration img {
    max-width: 1000px; /* Adjust size as needed */
    width: 200%;
    height: 400px;
    animation: float 6s ease-in-out infinite;
    opacity: 0.95;
    padding-right: 100px;
}


/* RESPONSIVE */
@media screen and (max-width: 992px) {
    .hero-container {
        flex-direction: column-reverse; /* Image below text on tablet/mobile */
        text-align: center;
    }
    .hero-image img {
        padding-top: 20px;
        max-width: 250px;
        height: 280px;
        margin-bottom: 30px;
    }
    .hero-content h1 {
        font-size: 40px;
    }
    .hero-content p {
        font-size: 16px;
    }
}

body {
    background: linear-gradient(135deg,#ff0080,#7928ca,#0b1f3a);
    color: white;
    overflow-x: hidden;
}

/* PARTICLES BACKGROUND */
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* HEADER */
old-header{
    position: fixed;
    width: 100%;
    backdrop-filter: blur(20px);
    background: rgba(11, 31, 58, 0.8);
    z-index: 1000;
}

header{
    background: rgba(11, 31, 58, 0.8);
 
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #f4b860;
}



/* HERO SECTION */
/* HERO SECTION */
.hero {
    min-height: 110vh;
    display: flex;
    align-items: center;
    padding: 0 8%;
    padding-top: 0px; /* <-- space for fixed header */
}

@media (max-width: 992px) {
    .hero-container {
        gap: 20px; /* shrink space between hero-content and hero-image */
    }
}
.hero-content {
    max-width: 650px;
    animation: fadeUp 1.5s ease;
}

.hero h1 {
    font-size: 60px;
    font-weight: 800;
}

.hero span {
    color: #f4b860;
}

.hero p {
    margin: 20px 0;
    font-size: 18px;
    line-height: 1.6;
}

.btn {
    padding: 14px 35px;
    background: #f4b860;
    color: #0b1f3a;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    display: inline-block;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px #000000;
    color: #0b1f3a;            /* keep text color same */
    text-decoration: none;     /* prevent link underline */
}

/* SECTIONS */
section {
    padding: 120px 8%;
}

.section-title {
    text-align: center;
    font-size: 38px;
    margin-bottom: 10px;
}

.section-title span {
    color: #f4b860;
}


.section-title1 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 10px;
}

.section-title span {
    color: #ffffff;
}



.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 30px;
}

.card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    padding: 35px;
    border-radius: 20px;
    transition: 0.4s;
    opacity: 0;
    transform: translateY(40px);
}

.card.show {
    opacity: 1;
    transform: translateY(0);
}

.card:hover {
    transform: translateY(-10px);
    background: rgba(244,184,96,0.2);
}

.card h3 {
    color: #f4b860;
    margin-bottom: 15px;
}

/* WORLD MAP */
.world-map {
    text-align: center;
    margin-top: 50px;
}

.world-map img {
    width: 100%;
    max-width: 900px;
    animation: float 6s ease-in-out infinite;
    opacity: 0.9;
}

/* CONTACT */
.contact-wrapper {
    max-width: 600px;
    margin: auto;
    text-align: center;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: none;
    border-radius: 8px;
}

.contact-form button {
    padding: 12px 30px;
    background: #f4b860;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px #f4b860;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 80px 8% 30px;
    background: linear-gradient(135deg,#0b1f3a,#1a1a3a);
    color: #ccc;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 50px;
}

.footer-grid h3 {
    color: #f4b860;
    margin-bottom: 20px;
}

.footer-grid ul {
    list-style: none;
    padding-left: 0;
    line-height: 2;
}

.social-icons a {
    margin-right: 15px;
    color: #ffffff;
    font-size: 20px;
    text-decoration: none;
    transition: 0.3s;
}

.social-icons a:hover {
    transform: scale(1.1);
}

.whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: white;
    padding: 15px 18px;
    border-radius: 50%;
    font-size: 22px;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
    text-decoration: none;
    animation: pulse 2s infinite;
}

/* ANIMATIONS */
@keyframes fadeUp {
    from {opacity: 0; transform: translateY(40px);}
    to {opacity: 1; transform: translateY(0);}
}

@keyframes float {
    0%,100% {transform: translateY(0);}
    50% {transform: translateY(-15px);}
}

@keyframes pulse {
    0% {box-shadow: 0 0 0 0 rgba(37,211,102,0.6);}
    70% {box-shadow: 0 0 0 20px rgba(37,211,102,0);}
    100% {box-shadow: 0 0 0 0 rgba(37,211,102,0);}
}

/* RESPONSIVE */


@media(max-width: 576px) {
   

    .hero h1 {
        font-size: 36px;
    }

    .hero-content {
        max-width: 100%;
    }
}
.image-section {
    padding: 60px 8%;
    background: #f8f9fa;
}

.image-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 equal columns */
    gap: 30px;
}

.image-box img {
    width: 100%;
    height: 400px; /* Same height for both */
    object-fit: cover;
    border-radius: 12px;
    transition: 0.4s ease;
}

.image-box img:hover {
    transform: scale(1.05);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .image-container {
        grid-template-columns: 1fr; /* 1 column on mobile */
    }
}
.detailed-section {
    padding: 80px 8%;
    background: linear-gradient(to right, #f9fbff, #eef3ff);
}

.detailed-container {
    display: flex;
    flex-direction: column;
    gap: 70px;
}

/* Card Style */
.detailed-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    transition: 0.4s ease;
}

.detailed-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

/* Alternate Layout for even cards */
.detailed-box:nth-child(even) {
    direction: rtl; /* Image right, content left */
}

.detailed-box:nth-child(even) .detailed-content {
    direction: ltr;
}

/* Ensure mobile stacked layout */
@media (max-width: 768px) {
    .detailed-box {
        grid-template-columns: 1fr; /* Single column */
        direction: ltr !important;  /* Reset for mobile */
        text-align: center;
    }
    .detailed-image img {
        height: 300px; /* adjust as needed */
    }
}

/* Image Styling */
.detailed-image {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
}

.detailed-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: 0.6s ease;
}

/* Dark Overlay */
.detailed-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    transition: 0.4s ease;
}

.detailed-image:hover img {
    transform: scale(1.1);
}

.detailed-image:hover::after {
    opacity: 1;
}

/* Content */
.detailed-content h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.detailed-content p {
    line-height: 1.8;
    margin-bottom: 25px;
    color: #555;
    font-size: 16px;
}

/* Premium Button */


/* Mobile Responsive */
@media (max-width: 768px) {
    .detailed-box {
        grid-template-columns: 1fr;
        direction: ltr !important;
        text-align: center;
    }

    .detailed-image img {
        height: 300px;
    }
}
/* VISIT VISA CAROUSEL SECTION */






#contact {
    background: transparent;
}

#contact form {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(25px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
    max-width: 900px;
    margin: auto;
}

#contact h3 {
    margin-top: 40px;
    margin-bottom: 15px;
    font-size: 22px;
    color: #f4b860;
    border-bottom: 1px solid rgba(244,184,96,0.5);
    padding-bottom: 8px;
}

#contact input,
#contact select,
#contact textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 18px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-size: 14px;
    transition: 0.3s ease;
}

#contact input::placeholder,
#contact textarea::placeholder {
    color: rgba(255,255,255,0.6);
}

#contact input:focus,
#contact select:focus,
#contact textarea:focus {
    outline: none;
    border-color: #f4b860;
    box-shadow: 0 0 15px rgba(244,184,96,0.4);
}

#contact select option {
    color: #000;
}

#contact button {
    width: 100%;
    padding: 15px;
    background: #f4b860;
    border: none;
    border-radius: 40px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
}

#contact button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px #f4b860;
}

/* Hide dynamic sections */
.hidden {
    display: none;
}

/* Smooth show animation */
#visitFields,
#studyFields,
#workFields,
#immigrationFields {
    animation: fadeUp 0.5s ease;
}

/* Responsive */
@media (max-width:768px){
    #contact form{
        padding:25px;
    }
}

/* ================= PARTNERS PAGE ================= */

.partners-section {
    padding: 150px 8% 100px;
    text-align: center;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
    gap: 40px;
    margin-top: 50px;
}

.partner-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(25px);
    padding: 40px 30px;
    border-radius: 25px;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: fadeUp 1.2s ease;
}

.partner-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
    background: rgba(244,184,96,0.12);
}

/* Logo Styling */
.partner-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.partner-logo img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 50%;
    background: #fff;
    padding: 15px;
    transition: 0.4s ease;
}

.partner-card:hover .partner-logo img {
    transform: scale(1.1) rotate(5deg);
}

/* Text */
.partner-card h3 {
    color: #f4b860;
    margin-bottom: 15px;
    font-size: 22px;
}

.partner-card p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Links */
.partner-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
}

.fb-icon {
    width: 45px;
    height: 45px;
    background: #1877f2;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    transition: 0.3s;
}

.fb-icon:hover {
    transform: scale(1.1);
}

/* Responsive */
@media(max-width:768px){
    .partner-logo img {
        width: 90px;
        height: 90px;
    }
}
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    display: none;
    position: absolute;
}

.dropdown-submenu:hover .dropdown-menu {
    display: block;
}


/* ================= TOEFL PROFESSIONAL SECTION ================= */

.toefl-section {
    padding: 150px 8% 100px;
    position: relative;
}

.toefl-header {
    text-align: center;
    max-width: 900px;
    margin: auto;
    margin-bottom: 80px;
}

.toefl-header h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.toefl-header span {
    color: #f4b860;
}

.toefl-header p {
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.9;
}

.toefl-badge {
    margin-top: 25px;
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    background: rgba(244,184,96,0.15);
    border: 1px solid rgba(244,184,96,0.4);
    font-weight: 600;
    color: #f4b860;
}

/* GRID */
.toefl-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
    gap: 40px;
}

/* CARD */
.toefl-card {
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(25px);
    border-radius: 25px;
    overflow: hidden;
    transition: 0.4s ease;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.toefl-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 70px rgba(0,0,0,0.5);
    background: rgba(244,184,96,0.08);
}

/* IMAGE */
.toefl-image {
    height: 220px;
    overflow: hidden;
}

.toefl-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.toefl-card:hover .toefl-image img {
    transform: scale(1.1);
}

/* CONTENT */
.toefl-content {
    padding: 35px;
}

.toefl-content h3 {
    color: #f4b860;
    margin-bottom: 20px;
    font-size: 22px;
}

.toefl-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.toefl-content ul li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    font-size: 15px;
}

.toefl-content ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #f4b860;
}

/* RESPONSIVE */
@media(max-width:768px){
    .toefl-header h2 {
        font-size: 30px;
    }
}

/* ================= FULL WIDTH 500px BANNER ================= */

pte-section {
    padding: 150px 8% 100px;
    position: relative;
}

.pte-header {
    text-align: center;
    max-width: 900px;
    margin: auto;
    margin-bottom: 80px;
}

.pte-header h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.pte-header span {
    color: #f4b860;
}

.pte-header p {
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.9;
}

.pte-badge {
    margin-top: 25px;
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    background: rgba(244,184,96,0.15);
    border: 1px solid rgba(244,184,96,0.4);
    font-weight: 600;
    color: #f4b860;
}

/* GRID */
.pte-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
    gap: 40px;
}

/* CARD */
.pte-card {
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(25px);
    border-radius: 25px;
    overflow: hidden;
    transition: 0.4s ease;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.pte-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 70px rgba(0,0,0,0.5);
    background: rgba(244,184,96,0.08);
}

/* IMAGE */
.pte-image {
    height: 220px;
    overflow: hidden;
}

.pte-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.pte-card:hover .toefl-image img {
    transform: scale(1.1);
}

/* CONTENT */
.pte-content {
    padding: 35px;
}

.pte-content h3 {
    color: #f4b860;
    margin-bottom: 20px;
    font-size: 22px;
}

.pte-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.pte-content ul li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    font-size: 15px;
}

.pte-content ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #f4b860;
}

/* RESPONSIVE */
@media(max-width:768px){
    .pte-header h2 {
        font-size: 30px;
    }
}

/* ============================= */
/* LEFT FLOATING SOCIAL BUTTONS */
/* ============================= */

.social-float {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.social-btn {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    padding: 12px 18px;
    border-radius: 0 30px 30px 0;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.4s ease;
    transform: translateX(-120px);
    animation: slideIn 1s forwards;
}

/* Slide Animation */
@keyframes slideIn {
    to {
        transform: translateX(0);
    }
}

/* Icons */
.social-btn i {
    margin-right: 10px;
    font-size: 18px;
}

/* Individual Colors */
.facebook {
    background: #1877f2;
}

.tiktok {
    background: #000000;
}

.youtube {
    background: #ff0000;
}

/* Hover Effects */
.social-btn:hover {
    padding-left: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transform: scale(1.05);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .social-btn span {
        display: none;
    }

    .social-btn {
        padding: 14px;
        border-radius: 50%;
        transform: translateX(0);
    }

    .social-btn i {
        margin: 0;
        font-size: 20px;
    }
}

.form-description {
    max-width: 750px;        /* Match form width */
    margin: 0 auto 30px;     /* Center horizontally with bottom spacing */
    text-align: center;      /* Centered text */
    font-size: 15px;         /* Readable size */
    line-height: 1.6;        /* Good line spacing */
    color: #ffffff;             /* Soft dark text */
    font-family: Arial, sans-serif; /* Clean font */
}

  section#map {
        padding: 80px 20px;
        text-align: center;
    }

    section#map .section-title {
        font-size: 32px;
        margin-bottom: 40px;
        color: #ffffff;
    }

    section#map .section-title span {
        color: #f4b860;
    }

    #globe-container {
        width: 100%;
        max-width: 1000px;
        height: 600px;
        margin: 0 auto;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .overlay-text {
        position: absolute;
        top: 20px;
        width: 100%;
        text-align: center;
        font-size: 18px;
        color: #fff;
        text-shadow: 0 2px 8px rgba(0,0,0,0.6);
        pointer-events: none;
    }

    /* SECTION BACKGROUND */
.services-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f5f9ff, #eaf3ff);
    font-family: 'Poppins', sans-serif;
}

/* Remove particles background only for these sections */

.services-section{
    position: relative;
    background: transparent;
    z-index: 2;
}

#visa-services-detailed{
    position: relative;
    background: transparent;
    z-index: 2;
}
/* CONTAINER */
.container {
    max-width: 1200px;
    margin: auto;
}

/* SECTION TITLE */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #ffffff;
    position: relative;
}
.section-title span {
    color: #f4b860;
}
.section-title::after {
    content: "";
    width: 80px;
    height: 4px;
    background: #f4b860;
    display: block;
    margin: 15px auto 0;
    border-radius: 5px;
}

/* SERVICE CARD */
.service-card {
    background: #ffffff;
    padding: 35px;
    margin-bottom: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    transition: all 0.4s ease;
    border-left: 5px solid #f4b860;
}

/* HOVER EFFECT */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* CARD TITLE */
.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #0b3d91;
}

/* CARD TEXT */
.service-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .service-card {
        padding: 25px;
    }
}

.service-section{
background-image:url("images/immigration/immigrationBanner.jpg.jpeg");
background-size:cover;
background-position:center;
background-repeat:no-repeat;
position:relative;
}
@media (max-width: 768px) {
    .service-section {
        background-image: none;
    }
}
.service-section::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
}

.service-section .container{
position:relative;
z-index:2;
}

.service-section .card{
background:rgba(255,255,255,0.9);
}


@media (max-width: 768px) {
    footer .social-icons {
        display: none !important;
    }
}

/* NAVBAR */
.navbar{
    padding:10px 8%;
}

.company-name{
    font-size:18px;
    white-space:nowrap;
}

.navbar-nav .nav-link{
    color:#fff !important;
    font-size:15px;
    padding:8px 12px;
}

.navbar-nav .nav-link:hover{
    color:#f4b860 !important;
}

/* MOBILE FIX */
@media (max-width:991px){

.navbar{
    padding:10px 5%;
}

.company-name{
    font-size:16px;
}

}
.company-name{
    font-size:18px;
    white-space: nowrap;
}

/* Tablets */
@media (max-width:991px){
.company-name{
    font-size:16px;
}
}

/* Small phones */
@media (max-width:576px){
.company-name{
    font-size:14px;
}
}

/* Very small phones */
@media (max-width:400px){
.company-name{
    font-size:12px;
}
}


/* Logo text */
.company-name{
    font-size:18px;
}

/* Menu links */
.navbar-nav .nav-link{
    color:#fff !important;
    font-size:15px;
    padding:8px 12px;
}

.navbar-nav .nav-link:hover{
    color:#f4b860 !important;
}

/* Dropdown menu */
.dropdown-menu{
    background:#3a1948;
    border:none;
}

.dropdown-item{
    color:#fff;
}

.dropdown-item:hover{
    background:#4b245e;
    color:#f4b860;
}

/* Submenu */
.dropdown-submenu{
    position:relative;
}

.dropdown-submenu .dropdown-menu{
    top:0;
    left:100%;
}

/* MOBILE FIX */
@media (max-width:991px){

    .navbar-brand span{
        font-size:16px;
    }

    .navbar-collapse{
        background:rgba(11,31,58,0.95);
        padding:15px;
        border-radius:10px;
        margin-top:10px;
    }

    .dropdown-submenu .dropdown-menu{
        position:relative;
        left:0;
        top:0;
        margin-left:15px;
    }

}
/* NAVBAR DROPDOWN TEXT FIX */

.navbar .dropdown-menu{
    background:#3a1948;
}

.navbar .dropdown-menu .dropdown-item{
    color:#ffffff !important;
}

.navbar .dropdown-menu .dropdown-item:hover{
    background:#4b245e;
    color:#f4b860 !important;
}

/* Submenu items */
.navbar .dropdown-submenu .dropdown-menu .dropdown-item{
    color:#ffffff !important;
}




/* ================= IMMIGRATION INTRO ================= */
.immigration-intro {
    padding: 100px 8%;
    background: linear-gradient(135deg,#0b1f3a,#1a1a3a);
    color: #fff;
    text-align: center;
}
.immigration-intro .intro-text {
    font-size: 18px;
    line-height: 1.8;
    margin: 20px 0;
}
.immigration-intro .intro-tagline {
    font-size: 20px;
    margin-bottom: 30px;
}
.immigration-intro .services-list {
    list-style: disc;
    margin: 0 auto;
    display: inline-block;
    text-align: left;
    font-size: 16px;
    line-height: 1.8;
}

/* ================= IMMIGRATION PROGRAMS ================= */
.immigration-programs {
    padding: 100px 8%;
    background: #f5f7ff;
    color: #1a1a1a;
}
.program-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 30px;
    margin-top: 50px;
}
.program-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: 0.3s;
}
.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}
.program-card h3 {
    color: #007bff;
    margin-bottom: 15px;
}
.program-card p {
    font-size: 16px;
    line-height: 1.7;
}

/* ================= IMMIGRATION PROCESS ================= */
.immigration-process {
    padding: 100px 8%;
    background: linear-gradient(135deg,#ff0080,#7928ca);
    color: #fff;
}
.process-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 30px;
    margin-top: 50px;
}
.process-card {
    background: rgba(255,255,255,0.1);
    padding: 25px 20px;
    border-radius: 15px;
    transition: 0.3s;
}
.process-card:hover {
    transform: translateY(-8px);
    background: rgba(244,184,96,0.2);
}
.process-card h3 {
    color: #f4b860;
    margin-bottom: 12px;
    font-size: 20px;
}
.process-card p {
    font-size: 15px;
    line-height: 1.6;
}

/* ================= WHY CHOOSE US ================= */
.choose-us {
    padding: 100px 8%;
    background: #f5f9ff;
    color: #1a1a1a;
}
.choose-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 30px;
    margin-top: 50px;
}
.choose-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: 0.3s;
}
.choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}
.choose-card h3 {
    color: #007bff;
    margin-bottom: 12px;
    font-size: 20px;
}
.choose-card p {
    font-size: 15px;
    line-height: 1.6;
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){
    .program-cards,
    .process-cards,
    .choose-cards {
        grid-template-columns: 1fr;
    }
    .immigration-intro .services-list {
        text-align: left;
        display: block;
    }
}

/* Hide header on tablet and mobile (max-width 992px) */
@media (max-width: 992px) {
    old-header {
        display: none !important;
    }
}