:root {
    --primary-color: #1a3154;
    --secondary-color: #2a8a9e;
    --accent-color: #e74c3c;
    --light-color: #ffffff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    padding-bottom: 0px !important;
    
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 10px 0;
    font-size: 14px;
}


/* Header styles */
.site-header {
    position: sticky; /* Changed from 'position: sticky' to make it work on all screen sizes */
    top: 0;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    width: 100%;
  }

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 120px;
}

/* Logo styles */
.brand-logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 115px;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

/* Menu styles */
.main-menu {
    display: flex;
    align-items: center;
}

.menu-items {
    display: flex !important;
    list-style: none;
}

.menu-link {
    margin: 0 15px;
}

.menu-link a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s ease;
}

.menu-link a:hover {
    color: #e74c3c;
}

.menu-link a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #e74c3c;
    transition: width 0.3s ease;
}

.menu-link a:hover::after {
    width: 100%;
}

/* Button styles */
.action-button {
    display: inline-flex;
    align-items: center;
    background-color: #e74c3c;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    /*margin-left: 20px;*/
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(231, 76, 60, 0.3);
}

.action-button:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(231, 76, 60, 0.4);
}

.action-button i {
    margin-right: 8px;
}

/* Mobile toggle button */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Responsive styles */
@media (max-width: 992px) {
    .mobile-toggle {
        display: flex;
    }

    .main-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        /*height: 100vh;*/
        background-color: white;
        flex-direction: column;
        justify-content: center;
        padding: 50px 20px;
        transition: right 0.4s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .main-menu.active {
        right: 0;
    }

    .menu-items {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .menu-link {
        margin: 8px 0;
        width: 100%;
        text-align: center;
        margin-top: 0;
    }

    .action-button {
        margin: 20px 0 0 0;
    }

    /* Animated hamburger to X */
    .mobile-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    /* Add overlay when menu is open */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

























/* Logo */
.logo {
   height: 50px !important;
   padding-top: 10px !important;
   margin-bottom: 10px !important;
   margin-right: 90px !important;
}

.logo-footer{
    height: 50px !important;
   
   margin-bottom: 70px !important;
}

.dropdown-menu {
    min-width: 200px;
}

.dropdown-menu .dropdown-menu {
    position: absolute;
    left: 100%;
    top: 0;
    margin-left: 0.1rem;
    margin-top: -0.25rem;
    display: none;
}

/* Show submenu on hover */
.dropdown:hover > .dropdown-menu {
    display: block;
}











/* Navigation */
/* .navbar {
    padding: 0px 0;
    height:120px;
}

.navbar-nav .nav-link {
    color: #333;
    font-weight: 500;
    margin: 0 10px;
    
}

.navbar-nav .nav-link:hover {
    color: #e74c3c;
    font-weight: bold;
    font-size:18px;
} */ 

.dropdown-toggle::after {
    vertical-align: middle;
}

/* Register Button */
.register-btn {
    background-color: var(--primary-color) !important;
    color: white !important;
    margin-top: 5px !important;
    border-radius: 4px !important;
    padding: 10px 20px !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
}

.register-btn:hover {
    background-color: red !important;
    color: white !important;
    font-size:24px;
}



/* Hero Section */
.hero-section {
    background-color: var(--primary-color);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--light-color) !important;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.consultation-btn {
    background-color: var(--light-color) !important;
    color: var(--primary-color) !important;
    padding: 12px 20px !important;
    border-radius: 4px !important;
    font-weight: 600 !important;
    display: inline-flex !important;
    align-items: center !important;
    transition: all 0.3s ease !important;
}

.consultation-btn:hover {
    background-color: #f0f0f0 !important;
    transform: translateY(-2px) !important;
}

.consultation-btn i {
    margin-left: 10px !important;
}

/* UAE Map Image */
.uae-map-container {
    position: relative;
    height: 100%;
}

.uae-map {

    right: -50px;
    top: 0;
    height: 100%;
    max-height: 450px;
    object-fit: contain;
}


/* Responsive Adjustments */
@media (max-width: 1100px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .uae-map {
        position: relative;
        right: 0;
        margin-top: 40px;
        max-height: 320px;
        width: 320px;
    }
}

@media (max-width: 800.98px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .top-bar {
        text-align: center;
    }
    
    .top-bar .text-end {
        text-align: center !important;
        margin-top: 5px;
    }
}



/* service section */
        /* Services Section */
        .services-section {
            padding: 80px 0;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            text-align: center;
            margin-bottom: 50px;
        }
        
        .service-card {
            background-color: var(--light-color);
            border-radius: 8px;
            box-shadow: var(--shadow);
            padding: 30px 25px;
            text-align: center;
            height: 100%;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            margin-bottom: 30px;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            
        }
        
        .service-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0;
            background-color: rgba(26, 49, 84, 0.03);
            transition: all 0.3s ease;
            z-index: 0;
        }
        
        .service-card:hover:before {
            height: 100%;
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            background-color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            position: relative;
            z-index: 1;
            transition: all 0.3s ease;
        }
        
        .service-card:hover .service-icon {
            transform: scale(1.1);
        }
        
        .service-icon img {
            width: 40px;
            height: 40px;
            object-fit: contain;
        }
        
        .service-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }
        
        .service-description {
            font-size: 0.95rem;
            line-height: 1.6;
            color: #666;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }
        
        .read-more {
            color: var(--accent-color);
            font-weight: 500;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            position: relative;
            z-index: 1;
            transition: all 0.3s ease;
        }
        
        .read-more:hover {
            color: #c0392b;
        }
        
        .read-more i {
            margin-left: 5px;
            transition: transform 0.3s ease;
        }
        
        .read-more:hover i {
            transform: translateX(5px);
        }
        
        /* Responsive Adjustments */
        @media (max-width: 1100px) {
            .section-title {
                font-size: 2.2rem;
            }
        }
        
        @media (max-width: 800px) {
            .section-title {
                font-size: 1.8rem;
            }
            
            .service-card {
                padding: 25px 20px;
            }
            
            .service-icon {
                width: 70px;
                height: 70px;
            }
            
            .service-icon img {
                width: 35px;
                height: 35px;
            }
            
            .service-title {
                font-size: 1.3rem;
            }
        }


  /* advertise section */

        /* Advisors Section */
        .advisors-section {
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            color: #555;
            margin-bottom: 10px;
        }
        
        .section-title {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 25px;
            line-height: 1.2;
        }
        
        .section-description {
            font-size: 1rem;
            line-height: 1.7;
            color: #555;
            margin-bottom: 30px;
        }
        
        .feature-list {
            list-style: none;
            padding: 0;
            margin-bottom: 30px;
        }
        
        .feature-list li {
            position: relative;
            padding-left: 30px;
            margin-bottom: 15px;
            font-size: 1rem;
            color: #444;
        }
        
        .feature-list li:before {
            content: '✓';
            position: absolute;
            left: 0;
            top: 0;
            color: var(--primary-color);
            font-weight: bold;
        }
        
        .consultation-btn {
            background-color: var(--primary-color);
            color: white;
            padding: 12px 30px;
            border-radius: 4px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .consultation-btn:hover {
            background-color: #152642;
            color: white;
            transform: translateY(-2px);
        }
        
        .consultation-btn i {
            margin-left: 10px;
        }
        
        /* Images Container */
        .images-container {
            position: relative;
            height: 100%;
        }
        
        .advisor-image {
            border-radius: 8px;
            box-shadow: var(--shadow);
            position: absolute;
            transition: all 0.3s ease;
        }
        
        .advisor-image:hover {
            transform: scale(1.02);
        }
        
        .advisor-image-1 {
            width: 70%;
            top: 0;
            right: 0;
            z-index: 3;
        }
        
        .advisor-image-2 {
            width: 60%;
            top: 50%;
            right: 60%;
            z-index: 2;
        }
        
        .advisor-image-3 {
            width: 70%;
            bottom: 0;
            right: 10%;
            z-index: 1;
        }
        
        /* Stats Section */
        .stats-section {
            padding: 40px 0;
            border-top: 1px solid #eee;
        }
        
        .stat-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .stat-icon {
            width: 70px;
            height: 70px;
            background-color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .stat-icon img {
            width: 35px;
            height: 35px;
            object-fit: contain;
        }
        
        .stat-content {
            flex-grow: 1;
        }
        
        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-color);
            line-height: 1;
            margin-bottom: 5px;
        }
        
        .stat-text {
            font-size: 0.9rem;
            color: #666;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 1100px) {
            .section-title {
                font-size: 2.2rem;
            }
            
            .images-container {
                margin-top: 50px;
                height: 400px;
            }
            
            .advisor-image-1 {
                width: 60%;
                top: 0;
                right: 20%;
            }
            
            .advisor-image-2 {
                width: 50%;
                top: 30%;
                right: 0;
            }
            
            .advisor-image-3 {
                width: 60%;
                bottom: 0;
                right: 30%;
            }
        }
        
        @media (max-width: 800px) {
            .section-title {
                font-size: 1.8rem;
            }
            
            .images-container {
                height: 350px;
            }
            
            .stat-item {
                justify-content: center;
                text-align: center;
                flex-direction: column;
            }
            
            .stat-icon {
                margin-right: 0;
                margin-bottom: 10px;
            }
        }






        .business-setup {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(image/hhr.jpg);
     
            background-size: cover;
            background-position: center;
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .section-header {
            margin-bottom: 50px;
        }
        
        .section-header h5 {
            font-size: 18px;
            font-weight: 500;
            margin-bottom: 10px;
        }
        
        .section-header h2 {
            font-size: 36px;
            font-weight: 700;
        }
        
        .steps-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }
        
        .step-item {
            flex: 1;
            /*min-width: 220px;*/
            /*max-width: 280px;*/
            /*padding: 20px;*/
            text-align: center;
        }
        
        .step-icon {
            position: relative;
            display: inline-block;
            margin-bottom: 20px;
        }
        
        .icon-circle {
            width: 80px;
            height: 80px;
            background-color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
        }
        
        .icon-circle i {
            font-size: 30px;
            color: #e74c3c;
        }
        
        .step-number {
            position: absolute;
            top: 0;
            right: -10px;
            width: 30px;
            height: 30px;
            background-color: #e74c3c;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 14px;
        }
        
        .step-item h3 {
            font-size: 20px;
            margin-bottom: 10px;
            font-weight: 600;
        }
        
        .step-item p {
            font-size: 14px;
            color: #e0e0e0;
        }
        
        /* Responsive adjustments */
        @media (max-width: 1100px) {
            .steps-container {
                gap: 20px;
            }
            
            .step-item {
                min-width: 200px;
            }
        }
        
        @media (max-width: 800px) {
            .steps-container {
                flex-direction: column;
                align-items: center;
            }
            
            .step-item {
                max-width: 100%;
                width: 100%;
            }
            
            .section-header h2 {
                font-size: 30px;
            }
        }
        
        @media (max-width: 480px) {
            .business-setup {
                padding: 50px 0;
            }
            
            .section-header h5 {
                font-size: 16px;
            }
            
            .section-header h2 {
                font-size: 26px;
            }
            
            .icon-circle {
                width: 70px;
                height: 70px;
            }
            
            .icon-circle i {
                font-size: 24px;
            }
        }






        .slide-sect{
            background-color: #F8FAFF; ;
        }
        
        .logo-slider {
            background-color: #F8FAFF; ;
            display: flex;
            gap: 20px;
            overflow: hidden;
            white-space: nowrap;
            position: relative;
        }
        
        .logo-item {
            flex: 0 0 auto;
            width: 150px;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #ddd;
            background: #fff;
            border-radius: 8px;
        }
        
        .logo-item img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }











/* Container */
.profile-container-unique {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 650px;
    background: #fff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    padding: 40px;
}

/* Arc */
.arc-unique {
    position: relative;
    width: 100%;
    height: 250px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: -80px;
}

.arc-unique::before {
    content: "";
    position: absolute;
    top: 40%;
    left: 50%;
    width: 85%;
    height: 0;
    /*border-top: 2px solid #ccc;*/
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

/* Circular Profiles */
.circle-unique {
    width: 120px;
    height: 120px;
    border: 5px solid #ddd;
    border-radius: 50%;
    overflow: hidden;
    transition: 0.3s;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.circle-unique:hover {
    border-color: #4CAF50;
    transform: scale(1.1);
}

.circle-unique img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Main Profile */
.main-profile-unique {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -60px;
}

.profile-card-unique {
    text-align: center;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: 0.5s;
    width: 500px;
}

.profile-card-unique img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
    border: 5px solid #4CAF50;
}

.profile-card-unique h2 {
    font-size: 28px;
    margin: 10px 0;
    color: #333;
}

.profile-card-unique p {
    color: #555;
    line-height: 1.6;
}

/* Social Icons */
.social-icons-unique {
    display: flex;
    justify-content: center;
    margin: 15px 0;
}

.social-icons-unique a {
    text-decoration: none;
    color: #4CAF50;
    font-size: 20px;
    margin: 0 10px;
    transition: 0.3s;
}

.social-icons-unique a:hover {
    color: #333;
}

/* Button */
.btn-view-unique {
    display: inline-block;
    padding: 12px 30px;
    background: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-view-unique:hover {
    background: #45a049;
}





/* Section Container */
.epcg-section-unique {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--light-color);
    padding: 50px 20px;
}

/* Main Container */
.epcg-container-unique {
    display: flex;
    width: 1200px;
    width: 100%;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    background: var(--light-color);
}

/* Left Side Image */
.epcg-image-wrapper-unique {
    flex: 1;
}

.epcg-image-unique {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Right Side Content */
.epcg-content-unique {
    flex: 1;
    padding: 40px;
    background: var(--light-color);
}

.epcg-heading-unique {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

/* Table Styling */
.epcg-table-wrapper-unique {
    overflow-x: auto;
}

.epcg-table-unique {
    width: 100%;
    border-collapse: collapse;
}

.epcg-th-unique, .epcg-td-unique {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    font-size: 16px;
}

/* Header Styles */
.epcg-th-unique {
    background: var(--secondary-color);
    color: var(--light-color);
    font-weight: bold;
}

.epcg-td-unique {
    color: var(--primary-color);
}

/* Alternating Row Colors */
.epcg-td-unique:nth-child(even) {
    background: #f9f9f9;
}

/* Hover Effect */
.epcg-table-unique tbody tr:hover {
    background: var(--accent-color);
    color: var(--light-color);
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    .epcg-container-unique {
        flex-direction: column;
    }

    .epcg-content-unique {
        padding: 30px;
    }

    .epcg-heading-unique {
        font-size: 28px;
    }

    .epcg-th-unique, .epcg-td-unique {
        font-size: 14px;
        padding: 10px;
    }
}

@media screen and (max-width: 600px) {
    .epcg-content-unique {
        padding: 20px;
    }

    .epcg-heading-unique {
        font-size: 24px;
    }

    .epcg-th-unique, .epcg-td-unique {
        font-size: 12px;
        padding: 8px;
    }
}














/* blog-section */

.blog-section {
    padding: 80px 0;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.subtitle {
    display: block;
    color: var(--accent-color);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}

.title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
}

.blog-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.blog-card {
    flex: 1;
    /*min-width: 31.7%;*/
    max-width: 365px;
    border-radius: 8px;
    overflow: hidden;
    /*box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);*/
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
    color: white;
    padding: 20px;
    display: flex;
}

.dollar-sign {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 30px;
    height: 30px;
    background-color: #1a1a2e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.overlay-content {
    align-self: flex-end;
}

.overlay-content h3 {
    font-size: 24px;
    margin: 5px 0;
    color: var(--accent-color);
}

.overlay-content p {
    font-size: 14px;
}

.simple-overlay .overlay-content {
    width: 100%;
}

.blog-content {
    padding: 20px;
    /*background-color: #f0f7ff;*/
}

.blog-title {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.blog-excerpt {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* First blog card with diagonal design */
.blog-card:first-child .blog-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 50%, transparent 50%);
}

.blog-card:first-child .overlay-content {
    width: 50%;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .blog-container {
        gap: 20px;
    }
}

@media (max-width: 1100px) {
    .blog-card {
        min-width: 280px;
    }
}

@media (max-width: 800px) {
    .blog-container {
        flex-direction: column;
        align-items: center;
    }
    
    .blog-card {
        max-width: 100%;
        width: 100%;
    }
    
    .section-header .title {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .blog-section {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .subtitle {
        font-size: 16px;
    }
    
    .title {
        font-size: 26px;
    }
    
    .blog-image {
        height: 200px;
    }
    
    .overlay-content h3 {
        font-size: 20px;
    }
}






/* footer-section */

/* CTA Banner */
.cta-banner {
    background-color: #1e3a5f;
    padding: 30px 0;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cta-content h2 {
    color: white;
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.cta-button {
    background-color: #d63031;
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #b71c1c;
}

/* Footer Main */
.rfooter-main {
    background-color: #0a1429;
    padding: 60px 0;
    color: white;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

/* Logo Section */
.footer-logo-section {
    flex: 1;
    min-width: 300px;
}

.logo {
    margin-bottom: 25px;
}

.logo img {
    max-width: 100%;
    height: auto;
}

.contact-info {
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-item i {
    margin-right: 10px;
    min-width: 20px;
}

.phone-icon::before {
    content: "📞";
    color: #d63031;
}

.location-icon::before {
    content: "📍";
    color: #d63031;
}

.social-icons {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    padding: 10px;
}
.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f1f1f1;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
    color: white;
    font-size: 20px;
}
.social-icon:hover {
    transform: scale(1.1);
}
.facebook { background-color: #1877F2; }
.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.twitter { background-color: #1DA1F2; }
.linkedin { background-color: #0077B5; }
.youtube { background-color: #FF0000; }


/* Links Section */
.footer-links-section {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-links-column {
    flex: 1;
    min-width: 250px;
}

.footer-links-column h3 {
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #d63031;
}

.arrow-icon {
    margin-right: 10px;
    color: #d63031;
}

.arrow-icon::before {
    content: "▶";
    font-size: 10px;
}

/* Responsive Adjustments */
@media (max-width: 1100px) {
    .footer-content {
        flex-direction: column;
    }
    
    .footer-logo-section, 
    .footer-links-section {
        width: 100%;
    }
}

@media (max-width: 800px) {
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-content h2 {
        font-size: 20px;
    }
    
    .footer-links-section {
        flex-direction: column;
    }
    
    .footer-links-column {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .cta-banner {
        padding: 20px 0;
    }
    
    .footer-main {
        padding: 40px 0;
    }
    
    .social-icons {
        justify-content: center;
    }
}