/* Reset margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General body styling */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}






.highlight {
    font-weight: bold; /* Make text bold */
    color: #D7222E; /* Change to your desired color */
    font-size: 2rem;
  }
  .section-hr {
    border: 0;
    height: 3px;
    background: linear-gradient(to right, #1D699D, #DE232C, #1D699D);
    border-radius: 2px;
    margin: 20px auto;
    width: 30%!important;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    opacity: 0.8;
    transition: width 0.4s ease;
}

.section-hr:hover {
    width: 80%;
    opacity: 1;
}







/* Floating WhatsApp Icon */
.floating-icons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.whatsapp-icon img {
    width: 50px;
    height: 50px;
    cursor: pointer;
    transition: transform 0.3s;
}

.whatsapp-icon img:hover {
    transform: scale(1.1);
}

/* Call Options (Initially Hidden) */
.call-options {
    display: none;
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 999;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 10px;
}

.call-button {
    display: block;
    padding: 10px 20px;
    color: white;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    transition: background-color 0.3s ease;
}

.call-button i {
    margin-right: 10px;
}

/* WhatsApp Call Button */
.whatsapp-call {
    background-color: #25d366;
}

.whatsapp-call:hover {
    background-color: #1ebe56;
}

/* Direct Call Button */
.direct-call {
    background-color: #056579;
}

.direct-call:hover {
    background-color: #ff5e00;
}

/* Show Call Options when clicked */
.show-options {
    display: block;
}











.navbar-toggler {
    font-size: 24px; /* Adjust size if needed */
    position: relative; /* Required for positioning */
    border: none; /* Remove border */
    background: transparent; /* Remove background */
    padding: 0; /* Remove default padding */
    color: #D01C3B;
}

/* Change the hover effect */
.navbar-toggler:hover,
.navbar-toggler:focus {
    background: none !important; /* No background on hover */
    border: none !important; /* Ensure no border on hover */
    outline: none !important; /* Remove outline if it appears */
    box-shadow: none !important; /* Remove any box shadow that might appear */
}


.navbar-toggler i {
    position: relative; /* Required for positioning */
    top: -9px; /* Move icon up, adjust value as needed */
    left:-13px;
    font-weight: bold; /* Make icon bold */
}
.navbar-toggler i:hover {
    background: none !important; /* No background on hover */
    border: none !important; /* Ensure no border on hover */
    outline: none; /* Remove outline if it appears */
}

  .navbar {
    background: linear-gradient(to bottom, #ffffff 70%, rgba(0, 0, 0, 0) 100%)!important; /* solid red to transparent */
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 85px;
    width: 100%;
    color: #ffffff;
    border: none;
    box-shadow: none;
}

.navbar-brand img {
    vertical-align: middle;
    margin-top:-7px;
    padding-left: 20px;
    /* Optional: Adjust top margin or padding to center-align the logo */
}
.nav-link{
    color: #16244E;
    font-weight: bolder;
    font-size: 0.8rem;
    margin-top:-20px;
}
.nav-link:hover{
    color: #D01C3B;
  
}
.nav-link:focus{
    color: #D01C3B;
  
}
   /* Mobile Navbar Styles */
   .mobile-navbar {
    overflow-y: auto; /* Enable vertical scrolling */
    max-height: 100vh; /* Ensure it doesn't exceed the viewport height */
    position: fixed;
    top: 0; /* Place it below the header navbar */
    right: -300px; /* Start hidden off-screen */
    width: 300px; /* Width of the navbar */
    height: 100%; /* Full height */
    background-color: #16244ec2;
    transition: right 0.3s ease; /* Smooth transition */
    z-index: 9999!important; /* Above other elements */
}

.mobile-navbar-content {
    padding: 20px;
    color: #ffffff;
}

.mobile-navbar-content .close-btn {
    background: none; /* Remove background */
    border: none; /* Remove border */
    color: white !important; /* Force white color */
    font-size: 24px;
    cursor: pointer;
    margin-bottom: 15px; /* Adjust spacing */
    -webkit-appearance: none; /* Remove native styling in Safari */
}



/* Mobile Navigation Links */
.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-links li {
    margin: 25px 0; /* Increased space between links */
}

.mobile-nav-links .nav-link {
    color: #ffffff;
    font-size: 1.2rem; /* Larger text for visibility */
}

/* Join Us Button */
.join-us-btn {
    display: block;
    margin: 20px auto; /* Center the button */
    padding: 5px 10px; /* Adjust padding to control size */
    background-color: #D7222E; /* Red color */
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold; /* Make the font bold */
    font-size: 1.1rem; /* Adjust font size as needed */
    max-width: 120px; /* Set a maximum width */
    width: fit-content; /* Ensure the button width fits its content */
}
/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center; /* Center social icons */
    margin-top: 20px;
}

.social-icons a {
    margin: 0 10px; /* Space between icons */
    color: #D7222E; /* White color for icons */
    font-size: 1.5rem; /* Adjust size as needed */
}




/* Submenu item styles */
.dropdown-menu .dropdown-item {
    display: block; /* Make links block-level */
    padding: 8px 15px; /* Add padding */
    border-radius: 5px; /* Round corners for submenu items */
    transition: background-color 0.3s ease; /* Smooth transition */
    font-size: 16px; /* Increase font size */
    font-weight: bold; /* Make the font bold */
}

/* Change background on hover */
.dropdown-menu .dropdown-item:hover {
    background-color: #dddddd; /* Light grey on hover */
}
/* Dropdown Menu Styles for Desktop */
.dropdown-menu {
    display: none; /* Initially hidden */
    position: absolute; /* Position absolutely */
    background-color: white; /* Background color */
    border-radius: 5px; /* Round corners */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); /* Add shadow */
    z-index: 9999; /* Ensure it is above other elements */
    padding: 20px; /* Add padding */
    width: 400px; /* Set width */

}

/* Show dropdown on click */
.dropdown.show .dropdown-menu {
    display: block; /* Show on click */
}

/* Flexbox for two column layout */
.dropdown-menu .row {
    display: flex; /* Use flexbox for layout */
    justify-content: space-between; /* Space between columns */
}

/* Column styles */
.dropdown-menu .col-6 {
    padding: 10px; /* Padding inside columns */
}

/* Submenu item styles */
.dropdown-item {
    display: block; /* Make links block-level */
    padding: 8px 15px; /* Add padding */
    border-radius: 5px; /* Round corners for submenu items */
    border: 2px solid #D7222E; /* Always show border around submenu items */
    margin: 5px 0; /* Space between items */
}

/* Change background on hover */
.dropdown-item:hover {
    background-color: #f0f0f0; /* Light grey on hover */
}

/* Submenu heading styles */
.dropdown-menu h6 {
    margin: 0; /* Remove margin */
    padding: 5px 0; /* Spacing above and below heading */
    font-weight: bold; /* Make headings bold */
}

/* Style for desktop hover effect */
.nav-item.dropdown:hover .dropdown-menu {
    display: block; /* Show on hover */
}
/* Down Arrow Style */
.down-arrow {
    font-size: 0.8rem; /* Adjust size */
    margin-left: 5px; /* Space between text and arrow */
    color: #ffffff; /* Change to your desired color */
    vertical-align: middle; /* Align vertically with text */
}

/* Mobile Submenu Styles */
.mobile-submenu {
    padding-left: 35px!important; /* Push submenu to the right */
    display: none; /* Hidden by default */
}

/* Show submenu when parent is active */
.mobile-nav-links li.active .mobile-submenu {
    display: block; /* Show when active */
}

/* Active state styling */
.mobile-nav-links li.active .down-arrow {
    transform: rotate(180deg); /* Rotate arrow when active */
}







/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    background-color: #000;
    overflow: hidden;
    color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -40px;
}

.hero-section video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}










  /* Styles for the bold part */


/* Center the button for mobile view */
@media only screen and (max-width: 768px) {

    .about-content {
        text-align: center; /* Center the text content in mobile */
    }

    .about {
        padding-left: 20px;
        padding-right: 20px; /* 30px padding on left and right, 60px on top and bottom */
    }
    
    .about-content p {
        font-size: 1rem!important;
        text-align: justify!important; /* Set paragraph font size to 1rem */
    }
    .aboutimg {
        position: relative; /* Allows positioning adjustments if needed */
        left: 55%; /* Shift to the right by half the width */
        right: 50%; /* Shift to the left by half the width */
        margin-left: -50vw; /* Pull it to the left by half the viewport width */
        margin-right: -50vw; /* Pull it to the right by half the viewport width */
        width: 90vw; /* Make the image full viewport width */
        max-width: none; /* Override any max-width constraints */
        height: auto; /* Maintain aspect ratio */
        display: block; /* Ensure it behaves like a block element */
    }
    

}





/* Business Setup Section */
/* Business Setup Section */
.business-setup-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.business-setup-section h4 {
    font-size: 1.2rem;
}

.business-setup-section p {
    color: #555555;
    font-size: 1.1rem;
}

.step-icon {
    color: #1D699D;
}

.step-icon i {
    transition: transform 0.3s ease, color 0.3s ease;
}

.step-icon i:hover {
    transform: scale(1.2);
    color: #DE232C;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .setup{
        font-size: 0.9rem!important;
        padding-left: 20px;
        padding-right: 20px;
    }
    .business-setup-section h4 {
        font-size: 1.2rem;
    }
    .business-setup-section p {
        font-size: 1rem;
    }
}








.why-choose-us-section {
    padding: 60px 15px;
    background-color: #f8f9fa;
}

.why-choose-us-section h3 {
    font-size: 2rem;
    color: #1D699D;
}

.why-choose-card {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-choose-card img {
    border-radius: 6px;
    max-height: 200px;
    width: 100%;
    object-fit: cover;
}

.why-choose-card h4 {
    font-size: 1.3rem;
    color: #1D699D;
    margin-top: 15px;
}

.why-choose-card p {
    color: #555555;
    font-size: 1rem;
    margin-top: 10px;
}

.why-choose-us p {
    color: #000000;
    font-size: 0.9rem!important;
    margin-top: 5px;
    line-height: 1.5!important; /* Adds space between lines */
}
.why-choose-us-reversed p {
    color: #000000;
    font-size: 0.9rem!important;
    margin-top: 5px;
    line-height: 1.5!important; /* Adds space between lines */
}

.why-choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .why-choose-us-section h3 {
        font-size: 1.5rem;
    }
}
.align-left {
    text-align: left;
    margin: 0;
    padding: 0;
    list-style-position: inside; /* Ensures bullet points stay aligned */
}











/* UAE Free Zone */
.business-setup-section {
    background-color: #f8f9fa;
    padding: 60px 15px;
    font-family: 'Roboto', sans-serif;
}

.business-setup-section h3 {
    font-size: 32px;
    color: #1D699D;
    font-weight: bold;
    margin-bottom: 30px;
}

.business-setup-section h4,
.business-setup-section h5 {
    color: #1D699D;
    font-weight: 600;
    margin-top: 30px;
}

.business-setup-section p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
}

/* Benefits List */
.benefit-list {
    list-style: none;
    padding-left: 0;
}

.benefit-list li {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.benefit-list li::before {
    content: '✔';
    color: #DE232C;
    font-size: 18px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* Company Formation and License Types Lists */
.company-formation-list,
.license-list {
    list-style: none;
    padding-left: 0;
}

.company-formation-list li,
.license-list li {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.company-formation-list li::before,
.license-list li::before {
    content: '•';
    color: #DE232C;
    font-size: 18px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* Zone Cards */
.zone-card {
    border: 1px solid #ddd;
    padding: 20px;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.zone-card h5 {
    font-size: 18px;
    color: #1D699D;
    font-weight: bold;
    margin-bottom: 15px;
}

.zone-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.zone-card .btn-link {
    color: #1D699D;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s;
}

.zone-card .btn-link:hover {
    color: #DE232C;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .business-setup-section h3 {
        font-size: 24px;
    }
    .zone-card {
        margin-bottom: 20px;
    }
}
.btn-link{
    color: #DE232C!important;
}








.uae-bank-account {
    padding: 40px 0;
    background-color: #f4f4f4;
}

.bank-account-benefits h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    font-size: 1.1rem;
    margin: 10px 0;
    display: flex;
    align-items: center;
}

.offshore-bank-account-section {
    margin-top: 40px;
}

.offshore-card {
    background-color: #fff;
    padding: 20px;
    margin: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.offshore-card h4 {
    font-size: 1.5rem;
    color: #333;
}

.documents-required ul {
    list-style: none;
    padding: 0;
}

.documents-list li {
    font-size: 1.1rem;
    margin: 8px 0;
    display: flex;
    align-items: center;
}

.btn-contact {
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
}

.btn-contact:hover {
    background-color: #0056b3;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}












/* why-choose-us */
.choose-hr{
    color: #D7222E;
    width: 99px;
    margin-top: -5px;
}
.why-choose-us {
  
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
  }
  
  .card {
    background: #ffffff;
    border-radius: 15px; /* Slightly rounded corners */
    padding: 30px;
    width: 650px;
    z-index: 10;
    position: relative;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15); /* Soft shadow */
  }
  
  .card h2 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: bold;
    text-align: left;
  }
  
  .card p {
    font-size: 0.8rem;
    line-height: 1.5;
    text-align: left;
  }
  
  .image-container {
    position: relative;
    width: 50%;
  }
  
  .background-image {
    width: 100%;
    height: auto;
    position: relative;
    top: -10%;
    z-index: 5;
  }
  
  /* Desktop styling */
  @media (min-width: 768px) {
    .why-choose-us {
      flex-direction: row;
    }
    .image-container {
      width: 120%;
      margin-left: -5%;
    }
    .background-image {
      width: 90%; /* Extra width for the overlap effect */
      border-radius: 15px; /* Slightly rounded corners */
    }
  }
  
  /* Mobile styling */
/* Mobile styling */
@media (max-width: 767px) {
    .why-choose-us {
        background-color: #EEEEEE;
      flex-direction: column-reverse; /* Reverses the order to show the image first */
    }
    .card {
        width:400px;
      border-radius: 15px;
      padding: 20px;
      text-align: center;
      margin-top: -20%;
      z-index: 10;
    }
    .background-image {
      width: 100vw;
      margin-left: -30vw;
      top: -10%;
       border-radius: 15px; /* Slightly rounded corners */
    }
  }
  

  


/* Styling for the reversed section */
.why-choose-us-reversed {
    
    display: flex;
    align-items: center;
    position: relative;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    gap: 20px;
}

.card-reversed {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    width: 600px;
    z-index: 10;
    position: relative;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15); /* Soft shadow */
}

.card-reversed h2 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: bold;
    text-align: left;
}

.card-reversed p {
    font-size: 0.8rem;
    line-height: 1.5;
    text-align: left;
}

.image-container-reversed {
    position: relative;
    width: 50%;
}

.background-image-reversed {
    width: 100%;
    height: auto;
    position: relative;
    top: -10%;
    z-index: 5;
}

/* Desktop styling */
@media (min-width: 768px) {
    .why-choose-us-reversed {
        flex-direction: row; /* Image on left, content on right */
    }
    .image-container-reversed {
        width: 100%;
        margin-right: -20%;
    }
    .background-image-reversed {
        width: 80%; /* Extra width for the overlap effect */
        border-radius: 15px; /* Slightly rounded corners */
    }
}

/* Mobile styling */
@media (max-width: 767px) {
    .why-choose-us-reversed {
        background-color: #EEEEEE;
      flex-direction: column; /* Stacks elements vertically */
      align-items: center;
    }
    .card-reversed {
        width: 90%; /* Adjust width to fit smaller screens */
        border-radius: 15px;
        padding: 20px;
        text-align: center;
        margin-top: -20%;
        z-index: 10;
    }
    .image-container-reversed {
        width: 100%;
        position: relative;
        top: 0;
        margin: 0;
    }
    .background-image-reversed {
        width: 100vw;
        margin-left: -5%;
        top: -10%;
    }
}
















/* Contact Section Styles */
#contact {
    background-color: #ffffff; /* White background for the contact section */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */

}
.contact-image {
    max-width: 100%; /* Ensures the image doesn't overflow the container */
    height: auto; /* Maintains the aspect ratio of the image */
    border-radius: 8px; /* Rounded corners for a modern look */
    margin-bottom: 20px; /* Spacing below the image */
}

.contact-info h2 {
    font-size: 2.5rem; /* Larger heading */
    color: #333; /* Darker text color */
}

.contact-info h4 {
    font-size: 1.75rem; /* Slightly smaller than the main heading */
    margin: 20px 0 10px; /* Spacing around the subheading */
    color: #DE262C; /* Accent color for the subheading */
}

.contact-info p {
    font-size: 1.1rem; /* Slightly larger font size for better readability */
    color: #666; /* Grey text for better contrast */
}

.contact-info a {
    color: #DE262C; /* Link color matching the theme */
    text-decoration: none; /* Remove underline for a cleaner look */
}

.contact-info a:hover {
    text-decoration: underline; /* Underline on hover for better UX */
}


/* Form Styles */
/* Form Styles */
.contact-form {
    margin-top: 20px; /* Spacing above the form */
    background-color: #ffffff; /* White background for the form */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Shadow under the form */
    padding: 20px; /* Padding inside the form */
}

.contact-form .form-group {
    margin-bottom: 15px; /* Spacing between form fields */
}

.contact-form label {
    font-weight: bold; /* Bold labels for better readability */
    color: #333; /* Darker text color for labels */
}

.contact-form .form-control {
    border: 1px solid #ccc; /* Border for input fields */
    border-radius: 4px; /* Slightly rounded corners for inputs */
    padding: 10px; /* Padding inside inputs */
}

.contact-form .btn-primary {
    background-color: #DE262C; /* Primary button color */
    border: none; /* Remove border */
    width: 100%; /* Full-width button */
    padding: 10px; /* Padding for button */
    font-size: 1.1rem; /* Slightly larger font size for button */
}












/* Footer Styling */
#contact footer {
    background-color: #0d1b2a;
    color: #ffffff;

    text-align: center;
    font-family: Arial, sans-serif;
}

#contact .contact-info {
    max-width: 600px;
    margin: auto;
}

#contact .contact-info p {
    font-weight: bold;
    font-size: 1.4rem;
    margin: 20px 0 10px;
    color: #ffffff;
}

#contact .contact-info a {
    color: #0073ff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

#contact .contact-info a:hover {
    color: #00aaff;
}

#contact .social-icons a {
    color: #ffffff;
    font-size: 1.5rem;
    margin: 0 15px;
    transition: color 0.3s ease;
}

#contact .social-icons a:hover {
    color: #0073ff;
}

#contact hr {
    border-top: 1px solid #3a3a3a;
    width: 80%;
    margin: 20px auto;
}

#contact .footer-bottom p {
    margin: 10px 0;
    font-size: 0.9rem;
    color: #bbbbbb;
}

#contact .footer-bottom a {
    color: #0073ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

#contact .footer-bottom a:hover {
    color: #00aaff;
}










.cookie-policy-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
  }
  
  .cookie-policy-container h1,
  .cookie-policy-container h2 {
    color: #333;
    margin-top: 20px;
  }
  
  .cookie-policy-container p {
    margin-bottom: 16px;
    text-align: justify;
  }
  
  .cookie-policy-container ul {
    margin-left: 20px;
  }
  
  .cookie-policy-container ul li {
    margin-bottom: 10px;
  }
  
  .cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
  }
  
  .cookie-table th,
  .cookie-table td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: left;
  }
  
  .cookie-table th {
    background-color: #f7f7f7;
    font-weight: bold;
  }
  
  .cookie-table td {
    background-color: #fafafa;
  }
  







  
  /* Cookie Popup Styling */
  .cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #f8f9fa;
    border-top: 1px solid #ccc;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 7px;
    color: #333;
}

.cookie-content p {
    margin-bottom: 15px;
    font-size: 0.9rem!important;
}

.cookie-link {
    color: #056579;
    text-decoration: underline;
    font-weight: bold;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 13px;
}

.btn-accept {
    background-color: #056579;
    color: #fff;
}

.btn-reject {
    background-color: #e74c3c;
    color: #fff;
}

.btn:hover {
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-buttons {
        flex-direction: column;
        gap: 5px;
    }
}


.card-img-top{
    height: 220px;;
}