* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}


body {
    background-color: #f9f9f9;
}

/* Keep your existing navbar styles from your paste.txt */
.navbar {
    position: sticky;
    top: 0;
    background-color: white; /* or any color */
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    position: sticky;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    background-color: #461111;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
}

.nav-left, .nav-right {
    display: flex;
    gap: 30px;
    align-items: center;
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo-img {
    max-height: 100px; /* Increased from 70px to 100px */
}

.nav-item {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-item:hover {
    color: #e7a835;
}

.arrow {
    font-size: 10px;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

/* Dropdown styling */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 250px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    padding: 10px 0;
    border-radius: 4px;
    margin-top: 10px;
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: #666;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
    font-size: 13px;
}

.dropdown-item:hover {
    background-color: #f5f5f5;
    color: #c0a97e;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown:hover .arrow {
    transform: rotate(180deg);
}

/* Hamburger menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.bar {
    height: 3px;
    width: 100%;
    background-color: #ffffff;
    border-radius: 10px;
}

/* Mobile menu styling */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    background-color: #665252;
    z-index: 9;
    flex-direction: column;
    align-items: center;
    padding-top: 60px;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
}

.mobile-menu.active {
    transform: translateX(0);
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 36px;
    cursor: pointer;
    color: #ffffff;
    transition: color 0.3s ease;
}

.close-menu:hover {
    color: #c0a97e;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 20px;
}

.mobile-nav-item {
    font-size: 18px;
    padding: 15px;
    width: 100%;
    text-align: center;
    animation: fadeIn 0.5s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile dropdown */
.mobile-dropdown {
    width: 100%;
    text-align: center;
}

.mobile-dropdown-toggle {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    width: 100%;
    background-color: #f9f9f9;
}

.mobile-dropdown-menu.active {
    max-height: 200px;
}

.mobile-dropdown-menu .dropdown-item {
    padding: 15px;
    text-align: center;
}

/* Animation delay for mobile menu items */
.mobile-menu.active .mobile-nav-item:nth-child(1) {
    animation-delay: 0.1s;
}

.mobile-menu.active .mobile-nav-item:nth-child(2) {
    animation-delay: 0.2s;
}

.mobile-menu.active .mobile-dropdown-toggle {
    animation-delay: 0.2s;
}

.mobile-menu.active .mobile-nav-item:nth-child(3) {
    animation-delay: 0.3s;
}

.mobile-menu.active .mobile-nav-item:nth-child(4) {
    animation-delay: 0.4s;
}

.mobile-menu.active .mobile-nav-item:nth-child(5) {
    animation-delay: 0.5s;
}

/* Responsive design */
@media (max-width: 1200px) {
    .nav-item {
        font-size: 12px;
    }
    
    .nav-left, .nav-right {
        gap: 20px;
    }
}

@media (max-width: 992px) {
    #product1 .pro{
        width: 100%;
    }
    #product1 .pro-container{
        justify-content: center;
    }
    #product1 .pro {
        margin: 15px;
    }
    #feature{
        justify-content: space-between;
    }
    #feature .fe-box{
        width: 155px;
        margin:0 0 15px 0;
    }
    #feature{
        justify-content: center;
    }
    #feature .fe-box{
        margin: 15px 15px;
    }
    .nav-left, .nav-right {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .mobile-menu {
        display: flex;
    }
    
    .logo {
        position: relative;
        left: 0;
        transform: none;
    }
    
    .navbar {
        position: sticky;
        justify-content: space-between;
    }
}

#product1 {
    text-align: center;
    }
#product1 .pro {
    width: 23%;
    min-width: 200px;
    padding: 10px 12px;
    border: 1px solid #cce7d0;
    border-radius: 25px;
    cursor: pointer; 
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.02);
    margin: 15px 0;
    transition: 0.2s ease;
    position: relative;
}

#product1 .pro-container {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    flex-wrap: wrap;
}

#product1 .pro:hover {
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.06);
}

#product1 .pro img {
    width: 100%;
    border-radius: 20px;
}

#product1 .pro .des{
    text-align: start;
    padding: 10px 0;
}
#product1 .pro .des span {
    color: #606063;
    font-size: 12px;
}

#product1 .pro .des h5 {
    padding-top: 7px;
    color: #1a1a1a;
    font-size: 14px;
}

#product1 .pro .des h4 {
    padding-top: 7px;
    font-size: 15px;
    font-weight: 700;
    color: #088178;
}


#feature{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

#feature .fe-box {
    width: 180px;
    text-align: center;
    padding: 25px 15px;
    box-shadow: 20px 20px 34px rgba(0, 0, 0, 0.03);
    border: 1px solid #cce7d0;
    border-radius: 4px;
    margin: 15px 0;
}

#feature .fe-box:hover {
    box-shadow: 10px 10px 54px rgba(70, 62, 221, 0.1);
}

#feature .fe-box h6 {
    display: inline-block;
    padding: 9px 8px 6px 8px;
    line-height: 1;
    border-radius: 4px;
    color: #088178;
    background-color: #fddde4;
}

#feature .fe-box:nth-child(2) h6 {
    background-color: #cdebbc;
}
#feature .fe-box:nth-child(3) h6 {
    background-color: #d1e8f2;
}
#feature .fe-box:nth-child(4) h6 {
        background-color: #cdd4f8;
}
#feature .fe-box:nth-child(5) h6 {
            background-color: #f6dbf6;
}
#feature .fe-box:nth-child(6) h6 {
                background-color: #fff2e5;
}


/* NEW STYLES FOR HERO SECTION AND THREE COLUMNS */

/* Hero Section */
.hero-section {
    width: 100%;
    position: relative;
    margin-bottom: 40px;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.sliding-text-container {
    width: 100%;
    overflow: hidden;
    background-color: rgb(234 208 110);
    padding: 15px 0;
}

.sliding-text {
    color: rgb(0, 0, 0);
    white-space: nowrap;
    animation: slide 20s linear infinite;
    font-size: 18px;
    font-weight: bold;
}

@keyframes slide {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}


/* Three Column Section - UPDATED to place small sections to the right */
.three-column-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 20px;
}

/* Equal sized sections */
.left-section {
    flex: 1 1 calc(50% - 10px);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.right-section {
    flex: 1 1 calc(50% - 10px);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Card styles - making all cards equal in styling */
.card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* Improved image handling to fill space */
.card-img {
    width: 100%;
    height: 300px; /* Increased height */
    object-fit: cover; /* This ensures the image covers the container */
    display: block;
}

.card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    color: #333;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: bold;
}

.card h3 {
    color: #555;
    font-size: 16px;
    margin-bottom: 10px;
}

.card p {
    color: #666;
    margin-bottom: 8px;
    font-size: 14px;
}

.highlight {
    color: #ff9900;
    font-weight: bold;
}

.circle-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: #ff9900;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
    z-index: 10;
}

.circle-icon:hover {
    transform: scale(1.1);
    background-color: #e88800;
}

/* Right section cards - ensure equal heights */
.right-section .card {
    flex: 1;
}

#placement-section, #notice-section {
    height: calc(50% - 10px);
}

/* Video container styling */
.video-wrapper {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.video-title {
    padding: 15px 20px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    text-align: left; /* Aligned left for consistency */
    border-bottom: 1px solid #f0f0f0;
}

/* Improved video player to fill space */
.video-player {
    width: 100%;
    height: 300px; /* Fixed height to match images */
    background-color: #000;
}

.responsive-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Makes video fill the container */
}

/* Animation for cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease forwards;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
}

/* Animation for video section */
.video-wrapper {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

/* Active states for dropdowns */
.dropdown-item.active {
    background-color: #f0f0f0;
    color: #c0a97e;
    font-weight: bold;
}

.dropdown:hover .dropdown-menu {
    /* Disable hover effect from original CSS */
    opacity: 0;
    visibility: hidden;
}

.dropdown-menu.show {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    display: block !important;
    z-index: 1000;
}

/* Responsive layout for tablets and mobile */
@media (max-width: 992px) {
    .three-column-container {
        flex-direction: column;
    }

    .left-section, .right-section {
        flex: 1 1 100%;
    }

    .right-section {
        gap: 20px;
    }

    #placement-section, #notice-section {
        height: auto; 
    }
    
    /* Ensure images maintain proportions on mobile */
    .card-img {
        height: 250px;
    }
    
    .video-player {
        height: 250px;
    }
}

/* Mobile optimization */
@media (max-width: 576px) {
    body {
        padding: 10px 0;
    }
    
    .three-column-container {
        padding: 0 15px;
    }
    
    .card-content {
        padding: 15px;
    }
    
    .card-title {
        font-size: 16px;
    }
    
    .card h3 {
        font-size: 14px;
    }
    
    .card p {
        font-size: 13px;
    }
    
    .circle-icon {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .video-title {
        font-size: 16px;
        padding: 12px 15px;
    }
    
    /* Adjust image and video height for mobile */
    .card-img, .video-player {
        height: 200px;
    }
}
.dropdown:hover .dropdown-menu {
    /* Disable hover effect from original CSS */
    opacity: 0;
    visibility: hidden;
}

.dropdown-menu.show {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    display: block !important;
    z-index: 1000;
}

/* MOBILE DROPDOWN FIXES */
.mobile-dropdown-menu.active {
    max-height: 300px !important;
    padding: 10px 0;
}

.mobile-menu.active {
    transform: translateX(0) !important;
    display: flex !important;
}

/* ARROW ROTATIONS */
.dropdown-toggle .arrow,
.mobile-dropdown-toggle .arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

/* ACTIVE STATE STYLING */
.dropdown-item.active {
    background-color: #f5f5f5;
    color: #c0a97e;
    font-weight: bold;
    position: relative;
    padding-left: 25px;
}

.dropdown-item.active::before {
    content: '→';
    position: absolute;
    left: 10px;
    color: #ff9900;
}

/* ANIMATION FOR CIRCLE ICONS */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.circle-icon {
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.circle-icon:hover {
    animation: pulse 1s infinite;
    background-color: #e88800;
}

/* DROPDOWN TRANSITIONS */
.dropdown-menu {
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

/* MOBILE MENU IMPROVEMENTS */
.mobile-menu {
    z-index: 1001;
    transition: transform 0.4s ease;
}

.mobile-dropdown-menu {
    transition: max-height 0.4s ease;
    overflow: hidden;
}

/* IMPROVED CLOSE BUTTON */
.close-menu {
    font-size: 36px;
    font-weight: bold;
}

/* MOBILE RESPONSIVENESS FIXES */
@media (max-width: 576px) {
    .mobile-menu {
        padding-top: 60px;
    }
    
    .mobile-nav-item {
        font-size: 16px;
        padding: 12px;
    }
}
#about-us {
    background-color: #461111;
    color: #ffffff;
    text-align: center;
    padding: 80px 20px;
    margin-top: 50px;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

#about-us h1 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 400;
    font-family: 'Times New Roman', Times, serif;
}

.about-text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.show-more-btn {
    background-color: #ffffff;
    color: #461111;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.show-more-btn:hover {
    background-color: #f1f1f1;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    #about-us h1 {
        font-size: 32px;
    }
    
    .about-text {
        font-size: 16px;
    }
}
/* Add this CSS to your existing style.css file */

/* Footer Styles */
.site-footer {
    background: linear-gradient(135deg, #461111 0%, #662222 100%);
    color: #f5f5f5;
    padding: 60px 0 20px;
    position: relative;
    margin-top: 70px;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
}

.site-footer::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 40px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 120' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' fill='%23461111' opacity='.25'%3E%3C/path%3E%3Cpath d='M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z' fill='%23461111' opacity='.5'%3E%3C/path%3E%3Cpath d='M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z' fill='%23461111'%3E%3C/path%3E%3C/svg%3E") center top no-repeat;
    background-size: cover;
}











.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Logo Section */
.footer-logo-section {
    flex: 0 0 100%;
    max-width: 280px;
    margin-bottom: 30px;
    text-align: center;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 15px;

}

.footer-logo-section p {
    font-style: italic;
    margin-bottom: 20px;
    color: #e7a835;
    font-size: 14px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #e7a835;
    transform: translateY(-3px);
}

/* Footer Links Section */
.footer-links-section {
    flex: 0 0 100%;
    max-width: 200px;
    margin-bottom: 30px;
}

.footer-links-section h3 {
    position: relative;
    font-size: 18px;
    margin-bottom: 25px;
    padding-bottom: 10px;
    color: #e7a835;
}

.footer-links-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #e7a835;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #f5f5f5;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;

}

.footer-links a::before {
    content: "→";
    position: absolute;
    left: 0;
    top: 0;
    color: #e7a835;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: #e7a835;
    padding-left: 20px;
}

.footer-links a:hover::before {
    transform: translateX(5px);
}

/* Contact Section */
.footer-contact-section {
    flex: 0 0 100%;
    max-width: 300px;
    margin-bottom: 30px;
}

.footer-contact-section h3 {
    position: relative;
    font-size: 18px;
    margin-bottom: 25px;
    padding-bottom: 10px;
    color: #e7a835;
}

.footer-contact-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #e7a835;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.contact-info i {
    color: #e7a835;
    margin-right: 10px;
    min-width: 16px;
}

/* Newsletter Section */
.footer-newsletter-section {
    flex: 0 0 100%;
    max-width: 320px;
    margin-bottom: 30px;
}

.footer-newsletter-section h3 {
    position: relative;
    font-size: 18px;
    margin-bottom: 25px;
    padding-bottom: 10px;
    color: #e7a835;
}

.footer-newsletter-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #e7a835;
}

.footer-newsletter-section p {
    margin-bottom: 20px;
    font-size: 14px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-form input {
    padding: 12px 15px;
    border: none;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form button {
    padding: 12px;
    border: none;
    border-radius: 4px;
    background-color: #e7a835;
    color: #461111;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Certificates Section */
.certificates {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.certificate-icon {
    max-width: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.certificate-icon:hover {
    filter: brightness(0) invert(1);
    transform: scale(1.1);
}

/* Copyright Section */
.copyright {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    font-size: 14px;
}

.copyright p {
    margin-bottom: 5px;
}

.heart {
    color: #e74c3c;
    animation: heartbeat 1.5s infinite;
    display: inline-block;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .footer-content {
        justify-content: center;
    }
    
    .footer-logo-section, 
    .footer-links-section, 
    .footer-contact-section, 
    .footer-newsletter-section {
        flex: 0 0 45%;
        margin: 0 2.5% 30px;
    }
}

@media (max-width: 768px) {
    .footer-logo-section, 
    .footer-links-section, 
    .footer-contact-section, 
    .footer-newsletter-section {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .footer-links-section h3::after,
    .footer-contact-section h3::after,
    .footer-newsletter-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links a {
        padding-left: 0;
    }
    
    .footer-links a::before {
        display: none;
    }
    
    .contact-info li {
        justify-content: center;
    }
    
    .newsletter-form {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .certificates {
        flex-wrap: wrap;
        gap: 15px;
    }
}

/* Main Footer Structure */
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Adjust the overall layout */
.footer-logo-section {
    flex: 0 0 25%;
    max-width: 280px;
    margin-bottom: 30px;
}

.footer-links-section {
    flex: 0 0 25%;
    max-width: 200px;
    margin-bottom: 30px;
}

.footer-offices-section {
    flex: 0 0 45%;
    /*max-width: 500px;*/
    margin-bottom: 30px;
}

.footer-newsletter-section {
    flex: 0 0 25%;
    max-width: 300px;
    margin-bottom: 30px;
}

/* Our Offices Section */
.footer-offices-section h3 {
    position: relative;
    font-size: 18px;
    margin-bottom: 25px;
    padding-bottom: 10px;
    color: #e7a835;
}

.footer-offices-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #e7a835;
}

/* Grid layout - 2 cards per row */
.offices-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

/* Make USA card span full width */
.office-card-usa {
    /* grid-column: 1 / span 2; - Remove this */
    /* Center the New York card */
    margin: 0 auto;
    grid-column: 1 / span 2; /* Keep spanning but we'll set width */
    width: calc(60% - 7.5px); /* Make it the same width as other cards */
}
.office-card {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    padding: 15px;
}

.office-card {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    padding: 15px;
}
.office-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.country-flag {
    width: 24px;
    height: auto;
}

.country-name {
    font-weight: bold;
    color: #fff;
    flex-grow: 1;
}

.office-tag {
    display: inline-block;
    background-color: #e7a835;
    color: #461111;
    padding: 3px 8px;
    font-size: 12px;
    border-radius: 12px;
    font-weight: bold;
    white-space: nowrap;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .footer-content {
        justify-content: space-around;
    }
    
    .footer-logo-section, 
    .footer-links-section {
        flex: 0 0 45%;
        max-width: 45%;
    }
    
    .footer-offices-section,
    .footer-newsletter-section {
        flex: 0 0 45%;
        max-width: 45%;
    }
}

@media (max-width: 768px) {
    .footer-logo-section, 
    .footer-links-section,
    .footer-offices-section,
    .footer-newsletter-section {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .footer-links-section h3::after,
    .footer-offices-section h3::after,
    .footer-newsletter-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .offices-grid {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .office-header {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .offices-grid {
        grid-template-columns: 1fr;
    }
    
    .office-card-usa {
        grid-column: auto;
    }
}

/* Grid layout - 2 cards per row */


/* Modified - Remove the full-width span for USA card */


/* Add this to your existing CSS */

/* Contact Info Section */
.footer-contact-info {
    flex: 0 0 20%;
    max-width: 250px;
    margin-bottom: 30px;
}

.footer-contact-info h3 {
    position: relative;
    font-size: 18px;
    margin-bottom: 25px;
    padding-bottom: 10px;
    color: #e7a835;
}

.footer-contact-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #e7a835;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-item i {
    color: #e7a835;
    font-size: 16px;
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.contact-item span {
    color: #f5f5f5;
    transition: color 0.3s ease;
}

.contact-item:hover span {
    color: #e7a835;
}

/* Newsletter Form - Adjusting to work with the new layout */
.newsletter-form {
    display: flex;
    flex-direction: column;
}

.newsletter-form input {
    padding: 10px;
    border-radius: 4px;
    border: none;
    margin-bottom: 10px;
}

.newsletter-form button {
    padding: 10px;
    background-color: #e7a835;
    color: #461111;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #d49728;
}

/* Updated Responsive Styles */
@media (max-width: 1024px) {
    .footer-content {
        justify-content: space-around;
    }
    
    .footer-logo-section, 
    .footer-links-section,
    .footer-offices-section,
    .footer-newsletter-section,
    .footer-contact-info {
        flex: 0 0 45%;
        max-width: 45%;
    }
}

@media (max-width: 768px) {
    .footer-logo-section, 
    .footer-links-section,
    .footer-offices-section,
    .footer-newsletter-section,
    .footer-contact-info {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    /* Adjust the offices grid to full width on mobile */
    .offices-grid {
        grid-template-columns: 1fr;
    }
    
    .office-card-usa {
        grid-column: 1;
        width: 100%;
    }
}