/* Discount Popup Styles */
.discount-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    transition: color 0.3s;
}

.popup-close:hover {
    color: #ff0000;
}

.popup-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.popup-subtitle {
    font-size: 18px;
    margin-bottom: 20px;
    color: #666;
}

.popup-discount {
    font-size: 36px;
    font-weight: 900;
    color: #ff6b6b;
    margin: 20px 0;
}

.popup-button {
    display: inline-block;
    background-color: #4CAF50;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 15px;
    transition: background-color 0.3s;
}

.popup-button:hover {
    background-color: #3e8e41;
    color: white;
}

/* Global Variables */
:root {
    --primary-color: #007bff;
    --secondary-color: #00d2ff;
    --dark-color: #2d3436;
    --light-color: #f8f9fa;
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --navbar-height: 80px;
    --top-bar-height: 40px;
}

/* Navbar Styles */
.navbar {
    height: var(--navbar-height);
    padding: 0 1.5rem;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed !important;
    top: var(--top-bar-height) !important;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: transform 0.3s ease;
    will-change: transform;
    width: 100%;
}

.navbar.headroom--not-top {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.headroom--pinned {
    transform: translateY(0) !important;
}

.navbar.headroom--unpinned {
    transform: translateY(0) !important;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 50px;
    width: auto;
    margin-right: 10px;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-left: auto;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--dark-color) !important;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Ensure .nav-link and .nav-link-arrow are aligned */
.nav-link-container {
    display: flex;
    align-items: center;
    padding: 0;
}

.nav-link-arrow {
    padding: 0 0.3rem;
    color: inherit;
    display: flex;
    align-items: center;
    transition: color 0.2s, transform 0.2s;
}

.nav-link-arrow i {
    font-size: 1em;
    transition: transform 0.3s;
}

.nav-item.dropdown:hover .nav-link-arrow i {
    transform: rotate(180deg);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary-color) !important;
}

.nav-link.active::after {
    width: 100%;
}

/* Dropdown Styles */
.dropdown-menu {
    border: none;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    min-width: 200px;
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    color: var(--dark-color);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
}

.dropdown-item.active {
    background-color: var(--primary-color);
    color: #fff;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .navbar {
        height: auto;
        padding: 1rem;
    }

    .navbar-nav {
        gap: 0;
        margin-top: 1rem;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
        padding: 0.75rem 1rem;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .dropdown-menu {
        box-shadow: none;
        border-left: 3px solid var(--primary-color);
        margin-left: 1rem;
        background-color: var(--light-color);
    }

    .nav-item.dropdown .nav-link::before {
        margin-left: auto;
    }
}

/* Top Contact Bar */
.top-contact-bar {
    height: var(--top-bar-height);
    background-color: var(--dark-color);
    padding: 0 1.5rem;
    font-size: 0.875rem;
    position: fixed !important;
    top: 0 !important;
    left: 0;
    right: 0;
    z-index: 1001;
    width: 100%;
}

.top-contact-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-contact-info a {
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.top-contact-info a:hover {
    color: var(--primary-color);
}

.top-contact-info i {
    margin-right: 0.5rem;
    color: #ffffff;
}

.top-social-icons {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.top-social-icons a {
    color: #ffffff;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.top-social-icons a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .top-contact-bar {
        height: auto;
        padding: 0.5rem 1rem;
    }
    
    .top-contact-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .top-social-icons {
        justify-content: flex-start;
        margin-top: 0.5rem;
    }
}

/* Sticky Consultation Button */
.sticky-consultation-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #e74c3c;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: all 0.3s;
    display: flex;
    align-items: center;
}

.sticky-consultation-btn:hover {
    background-color: #c0392b;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.sticky-consultation-btn i {
    margin-right: 8px;
}

/* Global Font Size Reduction */
body {
    font-size: 14px;
    padding-top: calc(var(--navbar-height) + var(--top-bar-height));
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p, li {
    font-size: 0.95rem;
}

.lead {
    font-size: 1.1rem;
}

/* About Section Font Size Reduction */
.about.section-padding h2 {
    font-size: 1.6rem;
}

.about.section-padding h4 {
    font-size: 1.2rem;
}

.about.section-padding p {
    font-size: 0.9rem;
}

/* Fix Button Alignment */
.nav-pills .nav-item {
    margin-bottom: 10px;
}

.nav-pills .nav-link {
    padding: 8px 15px;
    font-size: 0.9rem;
}

/* Remove Google Rating Box */
.google-rating-box {
    display: none !important;
}

/* Fix Tab Alignment */
.nav-pills {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.nav-pills .nav-item {
    width: 100%;
    margin-bottom: 10px;
}

.nav-pills .nav-link {
    width: 100%;
    text-align: left;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-pills .nav-link:hover {
    background-color: rgba(0, 123, 255, 0.1);
}

.nav-pills .nav-link.active {
    background-color: #007bff;
    color: white;
}

/* Add logo styles */
.navbar-brand img {
    height: 60px;
    width: auto;
    margin-right: 10px;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

/* Mobile responsive adjustments */
@media (max-width: 991.98px) {
    .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: transparent;
        border: 0;
        box-shadow: none;
    }
    
    .dropdown-submenu > .dropdown-menu {
        position: static;
        left: 0;
        margin-left: 1rem;
    }
}

/* Achievement Section Styles */
.achievements-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
}

.section-header h2 {
    color: #2d3436;
    margin-bottom: 1rem;
}

.section-header .lead {
    color: #636e72;
}

.achievement-box {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.achievement-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #00d2ff);
    opacity: 0;
    transition: all 0.3s ease;
}

.achievement-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.achievement-box:hover::before {
    opacity: 1;
}

.achievement-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #007bff;
    transition: all 0.3s ease;
}

.achievement-box:hover .achievement-icon {
    transform: scale(1.1);
}

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

.achievement-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2d3436;
    line-height: 1;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.achievement-number .counter {
    background: linear-gradient(135deg, #007bff, #00d2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.achievement-number .plus,
.achievement-number .percent {
    font-size: 2rem;
    margin-left: 5px;
    color: #007bff;
}

.achievement-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 0.5rem;
}

.achievement-content p {
    font-size: 0.9rem;
    color: #636e72;
    margin: 0;
}

@media (max-width: 991px) {
    .achievements-section {
        padding: 60px 0;
    }

    .achievement-box {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .achievement-number {
        font-size: 2.5rem;
    }

    .achievement-number .plus,
    .achievement-number .percent {
        font-size: 1.75rem;
    }
}

@media (max-width: 767px) {
    .achievements-section {
        padding: 40px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .achievement-icon {
        font-size: 2rem;
    }

    .achievement-number {
        font-size: 2.25rem;
    }

    .achievement-content h3 {
        font-size: 1.1rem;
    }
}

/* Footer Styles */
.site-footer {
    padding: 70px 0 40px;
    background: #000;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu-item {
    margin-bottom: 10px;
}

.footer-menu-link {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-menu-link:hover {
    opacity: 1;
    padding-left: 5px;
}

.social-icon {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icon-link {
    color: #ffffff;
    font-size: 20px;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.social-icon-link:hover {
    opacity: 1;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .site-footer {
        padding: 50px 0 30px;
    }
    
    .nav-pills {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .nav-pills .nav-item {
        width: auto;
        margin-right: 10px;
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .navbar-brand img {
        height: 50px;
    }
    
    .top-contact-bar {
        display: block;
    }
    
    .top-contact-info {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .top-contact-info a {
        margin-bottom: 5px;
    }
    
    .top-social-icons {
        justify-content: flex-start;
        margin-top: 10px;
    }
    
    .sticky-consultation-btn {
        bottom: 20px;
        right: 20px;
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .social-icon {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .popup-content {
        padding: 20px;
        width: 85%;
    }
    
    .popup-title {
        font-size: 24px;
    }
    
    .popup-subtitle {
        font-size: 16px;
    }
    
    .popup-discount {
        font-size: 32px;
    }
}

/* Global Styles and Animations */
body {
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Animated Background */
.bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.4;
    background: 
        linear-gradient(45deg, transparent 45%, rgba(0, 123, 255, 0.05) 45%, rgba(0, 123, 255, 0.05) 55%, transparent 55%),
        linear-gradient(-45deg, transparent 45%, rgba(0, 210, 255, 0.05) 45%, rgba(0, 210, 255, 0.05) 55%, transparent 55%);
    background-size: 30px 30px;
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% { background-position: 0 0; }
    100% { background-position: 60px 60px; }
}

/* Enhanced Hero Section */
.slick-slideshow {
    position: relative;
    height: 100vh;
    margin-top: -92px;
    z-index: 1;
}

.slick-custom {
    position: relative;
    height: 100vh;
    padding-top: 92px;
    overflow: hidden;
}

.slick-custom::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.slick-custom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slick-bottom {
    position: absolute;
    bottom: 50%;
    left: 0;
    right: 0;
    transform: translateY(50%);
    z-index: 2;
}

.slick-title {
    color: var(--white-color);
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s forwards;
}

.slick-bottom .lead {
    font-size: 24px;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s 0.2s forwards;
}

.slick-bottom .custom-btn {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s 0.4s forwards;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .slick-title {
        font-size: 36px;
    }
    
    .slick-bottom .lead {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .slick-title {
        font-size: 28px;
    }
    
    .slick-bottom .lead {
        font-size: 18px;
    }
}

/* Enhanced About Section */
.about.section-padding {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 100px 0;
}

.about.section-padding::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><circle cx="20" cy="20" r="1" fill="%23007bff" opacity="0.2"/></svg>');
    opacity: 0.5;
    z-index: 0;
}

.nav-pills .nav-link {
    border-radius: 30px;
    padding: 15px 30px;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 10px;
    border: none;
}

.nav-pills .nav-link.active {
    background: var(--gradient-primary);
    transform: translateX(10px);
}

/* Enhanced Front Product Section */
.front-product {
    position: relative;
    background: var(--light-color);
    overflow: hidden;
}

.front-product::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transform: rotate(45deg);
    opacity: 0.05;
}

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

.visa-type-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.visa-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
}

.visa-type-card:hover {
    transform: translateY(-10px);
}

.visa-type-card:hover::before {
    width: 100%;
    opacity: 0.1;
}

/* Company Details Section */
.company-details {
    position: relative;
    overflow: hidden;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    z-index: -1;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    color: white;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover .icon-wrapper i,
.feature-card:hover h4,
.feature-card:hover p {
    color: white;
}

.icon-wrapper {
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .slick-title {
        font-size: 3rem;
    }
    
    .lead.text-white {
        font-size: 1.2rem;
    }
    
    .about.section-padding {
        padding: 60px 0;
    }
}

@media (max-width: 767px) {
    .slick-title {
        font-size: 2.5rem;
    }
    
    .slick-bottom {
        padding: 150px 0;
    }
    
    .visa-types {
        grid-template-columns: 1fr;
    }
} 