* {
    margin: 0;
    padding: 0;
    overflow-x: hidden;  
    box-sizing: border-box;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;  
}

body {
    font-family: Arial, sans-serif;
    background-color: white; 

}
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 64px; /* Height of navbar */
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: calc(100vh - 64px);
        margin-top: 0px* Match navbar height */
    }
    
    .carousel {
        height: 60vh;
        min-height: 400px;
    }
    
    .content {
        padding: 30px 20px;
        text-align: center;
    }
    
    .content h1 {
        font-size: 2rem !important;
        line-height: 1.3;
    }
    
    .stats-section {
        padding: 20px 0 !important;
    }
    
    .stats-section .grid {
        grid-template-columns: 1fr 1fr !important;
    }
    
    .stats-section .col-span-3 {
        padding: 10px 0;
    }
    
    .footer-banner {
        padding: 15px 20px !important;
        font-size: 1rem !important;
    }
}



.carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 310%;
    height: 100%;
    display: flex;
    transition: transform 1s ease-in-out;
}

.carousel img {
    width: 100vw; 
    height: 100%;
    object-fit: cover;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    background-color: #ffff00;
    z-index: 1000;
    flex-wrap: wrap;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

/* Mobile Menu Styles */
@media (max-width: 992px) {
    .mobile-menu-btn {
        display: block;
        color: #11191F;
        position: relative;
        z-index: 1001;
    }
    
    .navbar {
        padding: 15px 20px;
        background-color: #ffff00;
    }
    
    /* Reset desktop menu styles for mobile */
    .menu {
        display: none !important; /* Force hide by default */
        position: fixed;
        top: 64px; /* Match navbar height */
        left: 0;
        right: 0;
        width: 100%;
        background-color: #ffff00;
        padding: 0;
        margin: 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        align-items: stretch;
        z-index: 1000;
        max-height: calc(100vh - 64px);
        overflow-y: auto;
    }
    
    .menu.active {
        display: flex !important; /* Force show when active */
    }
    
    /* Reset all menu item styles */
    .menu > * {
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
        float: none !important;
        display: block !important;
        text-align: left !important;
    }
    
    .menu a {
        display: block !important;
        padding: 12px 25px !important;
        color: #11191F !important;
        text-decoration: none !important;
        font-size: 16px !important;
        font-weight: 500 !important;
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(17, 25, 31, 0.1);
        background: none !important;
        text-transform: none !important;
        letter-spacing: normal !important;
        width: 100% !important;
    }
    
    .menu a:hover {
        background-color: rgba(255, 255, 255, 0.5) !important;
    }
    
    .menu a.contact {
        background: none !important;
        color: #11191F !important;
    }
    
    /* Reset dropdown styles for mobile */
    .dropdown {
        position: static !important;
        width: 100% !important;
    }
    
    .dropdown-content {
        position: static !important;
        width: 100% !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 !important;
        margin: 0 !important;
        background: rgba(0, 0, 0, 0.05) !important;
    }
    
    .dropdown-content a {
        padding-left: 40px !important;
    }
    
    .dropdown-content {
        position: static !important;
        width: 100% !important;
        box-shadow: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        display: none;
    }
    
    .dropdown:hover .dropdown-content,
    .dropdown.active .dropdown-content {
        display: block;
    }
    
    .services-dropdown {
        justify-content: center;
    }
    
    .hero {
        margin-top: 60px;
    }
}

.navbar .logo {
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    text-align: left;
    gap: 10px;
    flex-wrap: nowrap;
    white-space: nowrap;
    height: 100%;
    padding-bottom: 5px;
    pointer-events: none; /* Prevents any hover effects */
}

.navbar .logo img {
    height: 44px;
    border-radius: 4px;
    padding: 2px;
    background: rgba(255, 255, 255, 0.9);
    display: inline-block;
    vertical-align: bottom;
    margin-bottom: 0;
    transform: none !important; /* Ensures no transform is applied */
}

.logo-tagline {
    font-size: 11px;
    font-weight: bold;
    color: #c52d28;
    letter-spacing: 0.5px;
    white-space: nowrap;
    text-transform: uppercase;
    padding: 3px 10px 2px;
    border-radius: 0px;
    margin-left: -10px;
    line-height: 1.2;
    display: inline-block;
    vertical-align: bottom;
    margin-bottom: 2px;
}

.navbar .logo:hover img {
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(17, 25, 31, 0.2);
}

.navbar .menu {
    display: flex;
    gap: 15px;
    align-items: center;
    position: relative;
    height: 100%;
    transition: all 0.3s ease;
}

@media (min-width: 993px) {
    .navbar .menu {
        flex-direction: row;
    }
}

.navbar .menu > a {
    color: #11191F;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.navbar .menu a.contact {
    background: #11191F;
    color: #ffffff;
    padding: 8px 15px;
    border-radius: 5px;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
    display: inline-block;
    height: 100%;
}

.dropdown-content {
    position: fixed;
    width: 220px;
    background-color: #1a2630;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 1001;
    pointer-events: none;
    transform: translateY(-10px);
}

.dropdown-content a {
    color: #f8f9fa;
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 15px;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.dropdown-content a:hover {
    background-color: #2a3a4a;
    padding-left: 25px;
}

.dropdown-content a::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background-color: #FEF500;
    transform: scaleY(0);
    transition: transform 0.2s ease;
}

.dropdown-content a:hover::after {
    transform: scaleY(1);
}

.dropdown:hover .dropdown-content,
.dropdown-content.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.services-dropdown {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 12px;
    border-radius: 6px;
    transition: background-color 0.2s ease;
    color: #11191F;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    position: relative;
    z-index: 1001;
}

.services-dropdown:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.services-dropdown i {
    font-size: 10px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 2px;
}

.dropdown:hover .services-dropdown i {
    transform: rotate(180deg);
}

.contact-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

@media (max-width: 768px) {
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-card {
        margin: 0 10px 20px;
        padding: 20px !important;
    }
    
    .contact-card h3 {
        font-size: 1.2rem !important;
    }
    
    .contact-card p {
        font-size: 0.9rem !important;
    }
}

.services-section {
    padding: 80px 0;
    background-color: white; 
    color: #11191F;
}

.service-card {
    background: #ffffff;
    padding: 30px 30px 80px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    position: relative;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    overflow: visible;
}

.contact-card {
    background: #ffffff;
    padding: 25px 25px 70px;
    border-radius: 8px;
    height: 100%;
    box-sizing: border-box;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #11191F;
    position: relative;
    min-height: 278px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
    transform: translateY(0);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 235, 59, 0.3);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ffeb3b, #ffc107);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.contact-card .service-icon {
    font-size: 2.2rem;
    color: #ffeb3b;
    margin: 0 auto 20px;
    background: #11191F;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #11191F;
}

.contact-card p {
    color: #11191F;
    line-height: 1.6;
    margin: 0;
    padding: 12px 0 25px;
    font-size: 1rem;
    flex-grow: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    line-clamp: 3;
    max-height: 5.2em;
    position: relative;
    z-index: 1;
}

.contact-card .service-card-footer {
    position: absolute;
    bottom: 15px;
    left: 20px;
    right: 20px;
    height: 40px;
    z-index: 2;
}

.contact-card .circle-arrow-btn {
    position: absolute;
    left: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ffeb3b;
    color: #11191F;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    text-decoration: none;
    z-index: 2;
}

.contact-card .circle-arrow-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    background-color: white;
    color: #11191F;
    text-decoration: none;
}

.services-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
    color: #11191F;
}

.services-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: #ffeb3b;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    width: 100%;
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        margin: 0 10px;
    }
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.service-icon {
    font-size: 2.5rem;
    color: #ffeb3b;
    margin-bottom: 20px;
    background: #11191F;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #11191F;
}

.service-card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-card p {
    color: #11191F;
    line-height: 1.6;
    margin: 0;
    padding: 15px 0 25px;
    flex-grow: 1;
    overflow: visible;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    line-clamp: 4;
    max-height: 7.8em;
    position: relative;
    z-index: 1;
}

.service-card-footer {
    position: absolute;
    bottom: 20px;
    left: 30px;
    right: 30px;
    height: 50px;
    z-index: 2;
}

.circle-arrow-btn {
    position: absolute;
    left: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ffeb3b;
    color: #11191F;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    z-index: 2;
}

.circle-arrow-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    background-color: white;
    color: #11191F; /* Ensure text color remains consistent on hover */
    text-decoration: none; /* Ensure no underline appears on hover */
}

.circle-arrow-btn i {
    transition: transform 0.3s ease;
}

.circle-arrow-btn:hover i {
    transform: translateX(3px);
}

.serviceclass {
    font-size: 3rem;
    margin-bottom: 30px;
    font-weight: bold;
    color: white;
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 5;
    width: 100%;
}

.content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.content h1 span {
    color: yellow;
}

.content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.stats-section {
    position: absolute;
    bottom: 35px;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 0, 0.3);
    z-index: 10;
    padding: 10px 0;
}

.stats-section .gsNumbersPart {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stats-section .grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 10px;
}

.stats-section .col-span-3 {
    flex: 1;
    text-align: center;
    padding: 10px 5px;
    position: relative;
}

.stats-section .col-span-3:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background-color: white;
}

.stats-section h2 {
    margin: 0;
    line-height: 1.2;
    color: white;
}

.stats-section h6 {
    margin: 5px 0 0;
    line-height: 1.2;
    color: white;
    font-size: medium;
}

.footer-banner {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: #11191F;
    color: white;
    text-align: center;
    padding: 15px 0;
    font-size: 16px;
    z-index: 10;
}

.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 80px;
    padding: 20px;
    width: 100%;
    max-width: 1200px;
    justify-content: center; /* Center cards horizontally */
    align-items: center;
}

.card {
    position: relative; /* Required for ::before pseudo-element */
    width: 350px; /* Fixed width */
    height: 400px; /* Fixed height */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #ffff00; /* Card background */
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 10px;
    padding: 1.5px;
    background: linear-gradient(90deg,#000000,#11191F);
    background-size: 300% 300%;
    animation: flow-border 8s linear infinite;
    z-index: 1;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: destination-out;
}

@keyframes flow-border {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

.card img {
    width: 100%;
    height: 50%; /* Fixed height for the image */
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card:hover img {
    transform: scale(1.1); /* Zoom-in effect */
}

.card-content {
    height: 50%; /* Remaining height for the content */
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column; /* Arrange items vertically */
    justify-content: space-between; /* Evenly distribute space */
    align-items: center; /* Center align horizontally */
    z-index: 2; /* Ensure content is above the border animation */
}

.card-content h3 {
    font-size: 1.5rem;
    margin: 0; /* Remove default margin */
    color: white;
}

.card-content p {
    font-size: 1rem;
    color: white;
    margin: 10px 0; /* Consistent spacing */
    flex-grow: 1; /* Allow the paragraph to expand if needed */
}

.card-content button {
    padding: 10px 20px;
    border: none;
    background-color: white;
    color: #11191F;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.card-content button:hover {
    background-color: #0056b3;
}

.custom-section {
    color: white;
    text-align: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
    min-height: auto;
}

@media (max-width: 768px) {
    .custom-section {
        width: 95%;
        padding: 40px 0;
    }
    
    .custom-section h1 {
        font-size: 1.8rem !important;
        margin-bottom: 15px !important;
    }
    
    .custom-section h2 {
        font-size: 1.3rem !important;
        margin-bottom: 20px !important;
    }
    
    .custom-section video {
        width: 100% !important;
        height: auto !important;
    }
}

.custom-section h1 {
    font-size: 2.5rem; /* Main heading size */
    color: #11191F; /* Gold color for emphasis */
    margin-bottom: 20px; /* Space below the heading */
}

.custom-section h2 {
    font-size: 1.2rem; /* Subheading size */
    margin-bottom: 30px; /* Increase space below subheading */
    font-weight: bold;
    color: #11191F; /* White color for subheading */
}

.custom-section video {
    width: 100%; /* Full-width video */
    max-width: 1200px; /* Optional: Limit max width for large screens */
    height: auto; /* Maintain aspect ratio */
    border-radius: 10px; /* Optional rounded corners */
    margin: 30px 0; /* Add space above and below the video */
}

.custom-section p {
    font-size: 1.3rem; /* Paragraph text size */
    line-height: 1.6; /* Improve readability */
    max-width: 800px; /* Limit the width of the paragraph */
    margin: 20px auto 0 auto; /* Add space above and center-align */
    color: #11191F; 
    font-weight: bold;
}

.global-presence {
    background-color: white;
    color: black;
    width: 100%;
    min-height: 100vh; /* Use min-height instead of height */
    display: flex;
    flex-direction: column;
    margin-top: 60px;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    position: relative; /* Ensure no unintended stacking */
    z-index: 0; /* Ensure it stays below custom-section */
}

.global-presence h1 {
    font-size: 2rem; /* Adjust heading size */
    margin-bottom: 75px; /* Space below heading */
    font-weight: 600; /* Bold heading */
    text-align: center; /* Center align heading */
}

.global-presence img {
    width: 75%; /* Adjust image width to fit nicely */
    max-width: 1200px; /* Maximum width of the map */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Center image */
    margin: 0 auto; /* Center the image horizontally */
}

.contact-section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #f8f9fa;
    border: 2px solid #000;
}

.contact-info {
    flex: 1;
    padding: 20px;
}

.contact-info h2 {
    font-family: Arial, sans-serif;
    margin-bottom: 20px;
}

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

.contact-item h3 {
    font-family: Arial, sans-serif;
    font-size: 16px;
}

.contact-item p {
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #333;
}

.map-container {
    flex: 1;
    padding: 20px;
}

.map-container img {
    width: 100%;
    border: 2px solid #000;
}

.footer {
    background-color: #11191F;
    color: #fff;
    font-family: Arial, sans-serif;
    padding: 0;
}

.footer-bottom {
    background-color: #0a0f14;
    padding: 30px 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    max-width: 800px;
    margin: 0 auto 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

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

.footer-logo h1 {
    color: #ffeb3b;
    font-size: 1.2rem;
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.copyright {
    color: #aaa;
    font-size: 0.9rem;
    margin: 20px 0 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    padding: 50px 5%;
}
.footer-about,
.quick-links,
.footer-connect {
    flex: 1;
    min-width: 300px;
    color: #fff;
    padding: 0 15px;
}

.footer-about p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

  .footer-about img {
    margin-top: 15px;
    max-width: 150px;
    height: auto;
  }
  
  .footer-about h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 12px;
    color: #fff;
  }
  
  .quick-links {
    flex: 1;
    min-width: 300px;
  }

  .quick-links h4 {
    color: #ffeb3b;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
  }

  .quick-links h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #ffeb3b;
  }

  .links-grid {
    display: flex;
    gap: 40px;
  }

  .link-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .quick-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
  }

  .quick-links a:hover {
    color: #ffeb3b;
    padding-left: 5px;
  }
  
  .footer-links h4 {
    font-size: 16px;
    margin-bottom: 12px;
    color: #11191F;
    position: relative;
    padding-bottom: 8px;
  }
  
  .footer-links h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #11191F;
  }
  
  .footer-links ul {
    list-style-type: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  
  .footer-links ul li {
    margin-bottom: 6px;
  }
  
  .footer-links ul li a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: color 0.3s ease;
  }

  .footer-links ul li a:hover {
    color: #11191F;
    font-weight: 500;
  }
  
  .footer-connect {
    flex: 1;
    min-width: 300px;
  }

  .footer-connect h4 {
    color: #ffeb3b;
    font-size: 1.2rem;
    margin: 0 0 20px 0;
    position: relative;
    padding-bottom: 10px;
    text-align: left;
  }

  .footer-connect h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #ffeb3b;
  }

  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .contact-info {
    text-align: left;
  }

  .contact-info p {
    margin: 0 0 10px 0;
    color: #ffffff;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .contact-info p:last-child {
    margin-bottom: 0;
  }

  .contact-info i {
    color: #ffeb3b;
    margin-top: 4px;
    min-width: 16px;
  }
  
  .footer-connect h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #ffffff;
    position: relative;
    padding-bottom: 8px;
    padding-left: 43px;
  }

  .footer-connect h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #11191F;
  }
  
  .footer-connect p {
    font-size: 14px;
    margin-bottom: 10px;
    color: #333;
    line-height: 1.5;
  }

  .footer-connect .contact-info {
    margin: 15px 0;
  }

  .footer-connect .contact-info p {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #ffffff;
  }

  .footer-connect .contact-info i {
    color: #11191F;
    width: 20px;
    text-align: center;
  }

  /* Footer Socials */
  .footer-socials {
    margin-top: 25px;
  }

  .footer-socials h4 {
    font-size: 1.1rem;
    margin: 0 0 15px 0;
    color: #fff;
  }

  .social-links {
    display: flex;
    gap: 12px;
  }

  .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffeb3b;
    border-radius: 50%;
    transition: all 0.3s ease;
  }

  .social-links a:hover {
    background-color: #ffeb3b;
    color: #11191F;
    transform: translateY(-3px);
  }

  .social-links {
    display: flex;
    gap: 10px;
    justify-content: flex-start; /* right-bottom alignment for the right column */
  }

  .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #11191F;
    color: #ffffff;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease;
  }

  .social-links a:hover {
    transform: translateY(-2px);
    background-color: #000000;
  }


  /* ================================================== get in touch section ========================================================== */

 .services-section-2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #FEF500;
    padding: 40px 20px;
    text-align: center;

}

.card-container-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 80px;
  padding: 20px;
  width: 100%;
  max-width: 1200px;
  justify-content: center; /* Center cards horizontally */
  align-items: center;
}

.card-2 {
  position: relative; /* Required for ::before pseudo-element */
  width: 350px; /* Fixed width */
  height: 400px; /* Fixed height */
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #11191F; /* Card background */
}

.card-2:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* Flowing border animation */
.card-2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 10px;
  padding: 1.5px;
  background: linear-gradient(90deg,#000000,#11191F);
  background-size: 300% 300%;
  animation: flow-border 8s linear infinite;
  z-index: 1;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: destination-out;
}

/* Animation keyframes */
@keyframes flow-border {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

.card-2 img {
  width: 100%;
  height: 50%; /* Fixed height for the image */
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card-2:hover img {
  transform: scale(1.1); /* Zoom-in effect */
}

.card-content-2 {
  height: 50%; /* Remaining height for the content */
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column; /* Arrange items vertically */
  justify-content: space-between; /* Evenly distribute space */
  align-items: center; /* Center align horizontally */
  z-index: 2; /* Ensure content is above the border animation */
}

.card-content-2 h3 {
  font-size: 1.5rem;
  margin: 0; /* Remove default margin */
  color: white;
}

.card-content-2 p {
  font-size: 1rem;
  color: white;
  margin: 10px 0; /* Consistent spacing */
  flex-grow: 1; /* Allow the paragraph to expand if needed */
}

.card-content-2 button {
  padding: 10px 20px;
  border: none;
  background-color: #FEF500;
  color: #11191F;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.card-content-2 button:hover {
  background-color: #0056b3;
}

.serviceclass-2
{
    font-size: 3rem;
    margin-bottom: 30px;
    font-weight: bold;
    color: #11191f;
}
