body {
    /* font-family: 'Open Sans', sans-serif;  */
    /* font-family: 'Playfair Display', serif; */
    font-family: 'Gelasio', serif;
}
  /* Header Navigation */
  .header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px;
}

.logo-container {
    display: flex
    ;
        align-items: center;
        position: relative;
        gap: 5px;
}
.logo-container p{
        /* position: absolute; */
    /* width: 300px; */ 
    font-size: 14px;
    margin-bottom: 0px;
    color: #7F1824;
    font-weight: 500;
}


.logo-img {
    height: 70px;
    width: auto;
}
.spec{
    height: 80px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin-bottom: 0px;
}
/* nav-menu .active{} */
.nav-menu a {
    text-decoration: none;
    color: #7F1824;
    font-weight: 500;
    transition: color 0.3s ease;
    padding:5px 10px ;
    border-radius: 4px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #fff;
    background:#D2691E ;
}

.nav-cta {
    background: #7F1824;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: #D2691E;
    color: #fff;
}

/* Mobile menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #7F1824;
    margin: 3px 0;
    transition: 0.3s;
}

/* Mobile menu active state */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 80px 30px 30px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        gap: 10px;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
        padding: 5px 0;
    }

    .nav-menu a {
        font-size: 1.1rem;
        /* padding: 0px 0; */
        display: block;
        width: 100%;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .logo-img {
        height: 50px;
    }

    .nav-container {
        padding: 5px 15px;
    }

    /* Overlay for mobile menu */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        width: 90%;
        padding: 80px 20px 30px;
    }
    .logo-container p{
        font-size: 13px;
    }
  

    .nav-container {
        padding: 5px 10px;
    }
}
@media (max-width: 330px) {
    .logo-container p{
        font-size: 11px;
    }
}















 
/* Hero Section Styles */
.dinasi-hero {
    background: url('image/q1p6ohg1w0f63b0.png');
    background-size: cover;
    background-position: center;
    padding: 150px 0 100px;
    position: relative;
}

.dinasi-hero h1 {
    font-size: 3rem;
    font-weight: 400;
    color: #7F1824;
    margin-bottom: 25px;
    line-height: 1.1;
    /* text-shadow: 0 2px 4px rgba(0,0,0,0.1); */
}

.dinasi-hero p {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 25px;
    line-height: 1.6;
    font-weight: 400;
}

.dinasi-hero h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

/* Button Styles */
.dinasi-btn {
    background: transparent;
    color: #7F1824;
    padding: 8px 20px;
    border: 1.5px solid #7F1824;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.dinasi-btn:hover {
    background: #A0522D;
    color: white;
    transform: translateY(-2px);
}

/* Section Base Styles */
.dinasi-section {
    padding: 80px 0;
    overflow: hidden;
}

.dinasi-section h2 {
    font-size: 2rem;
    font-weight: 400;
    color: #2c1810;
    margin-bottom: 50px;
    /* text-align: center; */
}

/* .dinasi-section h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 30px;
    
} */

/* .dinasi-section p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
} */

/* Challenge Section Styles */
.challenge-section {
    background: #ffffff;
}

.challenge-title {
    margin-bottom: 30px;
    /* text-align: center; */
}

.challenge-label {
    color: #7F1824;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
    font-size: 2.5rem;
}

.challenge-main {
    color: #D2691E;
    font-weight: 400;
    font-size: 1.1em;
}

.challenge-content {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.dinasi-quote {
    background: #f8f5f2;
    border-left: 4px solid #7F1824;
    padding: 20px;
    margin: 30px 0;
    font-style: italic;
    font-size: 1.1rem;
    color: #555;
    border-radius: 0 8px 8px 0;
}

/* Why We Can Help Section Styles */
.help-section {
    padding: 20px 0;
    overflow: hidden;
    background: #f4efe6;
}
.help-section .help-intro{
    font-weight: 500;
    font-size: 18px;
    text-align: center;
}
.help-section .help-title{
    text-align: center;
    font-size: 2.3rem;
}
.help-section .help-label{
    margin-bottom: 20px;
}
.help-section img{
    padding-right: 30px;
    height: 700px;
    object-fit: cover;
}

.help-title {
    margin-bottom: 25px;
}

.help-label {
    color: #7F1824;
    font-weight: 400;
    display: block;
    margin-bottom: 15px;
}

.help-main {
    color: #D2691E;
    font-weight: 400;
    font-size: 1.1em;
}

 

.help-content-block {
   
    padding: 25px 15px;
    border-radius: 10px;
    transition: .6s ;
    cursor: pointer;
    margin-bottom: 0px;
}
.help-content-block:hover{
box-shadow: 0 3px 15px rgba(0,0,0,0.08);
 background: white;
}
.help-content-block h4 {
    color: #2c1810;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 19px;
}

.help-content-block p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 16px;
}

.dinasi-icon {
    font-size: 2.1rem;
    color: #7F1824;
    margin-bottom: 10px;
}

/* How We Help Section Styles */
.services-section {
    background: #ffffff;
    padding: 30px 0;
    overflow: hidden;
}
.services-section img{
    height: 900px;
    object-fit: cover;
}
.help-timeline {
    position: relative;
}

.help-timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 60px;
    cursor: pointer;
}
.help-timeline-item:hover .help-timeline-number{
    background: #D2691E;
    border: 2px solid #D2691E;
}
.help-timeline-item:hover:not(:last-child)::after{
background: #D2691E;
}

.help-timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 19px;
    top: 47px;
    width: 13px;
    height: calc(50% + 10px);
    background: #7f1824;
}
/* .help-timeline-item:nth-child(-n+4)::after */
/* .help-timeline-item:nth-child::after {
content: '';
position: absolute; 
left: 19px;
top: 50px;
width: 13px;
height: calc(50% + 10px);
background: #ddd;
} */

.help-timeline-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background: #7f1824;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 400;
    color: #fff;
    border: 2px solid #ddd;
}

.help-timeline-content h4 {
    color: #2c1810;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.help-timeline-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 1rem;
}

/* Getting Started Section Styles */
.getting-started-section img{
    height: 600px;
    object-fit: cover;
}
.getting-started-section {
    background: #f8f5f2;
    padding: 30px 0;
    overflow: hidden;
}

.getting-started-title {
    font-size: 2.2rem;
    font-weight: 400;
    color: #7F1824;
    margin-bottom: 25px;
}

.getting-started-intro {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.getting-started-steps {
    margin-bottom: 30px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.step-number {
    /* background: #7F1824; */
    color: #000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 400;
    margin-right: 0px;
    flex-shrink: 0;
    margin-top: 2px;
}

.step-content {
    font-size: 1rem;
    color: #242424;
    line-height: 1.6;
}

.step-content strong {
    color: #2c1810;
    font-weight: 600;
}

.getting-started-cta {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 25px;
    font-style: italic;
}

/* Why Choose Us Section Styles */
.why-choose-section {
    background: #ddd3c7;
    padding: 80px 0;
    overflow: hidden;
}

.why-choose-title {
    font-size: 2.3rem ;
    color: #7F1824 ;
    font-weight: 400; 
    margin-bottom: 20px ;
}

.why-choose-subtitle {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 20px ; 
}

.feature-card {
    /* text-align: center; */
    margin-bottom: 30px;
    cursor: pointer;
    
}
.feature-card:hover{
background: white;
}
.feature-card .div-con2{
    padding: 5px 10px 5px ;
}
.feature-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-bottom: 15px;
}

.feature-title {
    color: #000;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 20px;
}

.feature-description {
    color: #333;
    line-height: 1.6;
    font-size: 17px ;

}

/* Contact Section Styles */
.contact-section {
    background: linear-gradient(135deg, #f8f5f2 0%, #fff 100%);
    padding: 100px 0;
    overflow: hidden;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23D2691E" opacity="0.03"/><circle cx="75" cy="75" r="1" fill="%23D2691E" opacity="0.03"/><circle cx="50" cy="10" r="0.5" fill="%23D2691E" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.contact-title {
    color: #7F1824;
    font-weight: 600;
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.contact-title i {
    color: #D2691E;
    margin-right: 15px;
    font-size: 2.8rem;
}

.contact-subtitle {
    color: #D2691E;
    font-weight: 500;
    font-size: 1.4rem;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.contact-content {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.contact-details {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.contact-details p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.contact-details p:last-child {
    margin-bottom: 0;
}

.contact-details i {
    color: #D2691E;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.contact-details strong {
    color: #7F1824;
    font-weight: 600;
    margin-right: 5px;
}

.contact-link {
    color: #D2691E;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #7F1824;
    text-decoration: underline;
}

.contact-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.contact-buttons .dinasi-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-buttons .dinasi-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(210, 105, 30, 0.2);
}

.contact-image-wrapper {
    position: relative;
    z-index: 2;
}

.contact-image {
    width: 100%;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.contact-image:hover {
    transform: scale(1.02);
}

.section-header {
    margin-bottom: 60px;
}

.contact-main-title {
    color: #7F1824;
    font-weight: 400;
    font-size: 2.4rem;
    margin-bottom: 20px;
    position: relative;
}

.contact-main-title i {
    color: #D2691E;
    margin-right: 15px;
    font-size: 2.5rem;
}

.contact-main-subtitle {
    font-size: 1.3rem;
    color: #666;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
}

.contact-content-wrapper {
    position: relative;
    z-index: 2;
}

.contact-info-cards {
    /* display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px; */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(210, 105, 30, 0.1);
    transition: all 0.3s ease;
    text-align: center;
 
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    border-color: #D2691E;
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #D2691E, #7F1824);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin: 0px auto 15px;
}

.contact-card-icon i {
    color: white;
    font-size: 1.5rem;
}

.contact-card-content h5 {
    color: #7F1824;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.contact-link {
    color: #D2691E;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #7F1824;
    transform: translateX(5px);
}

.contact-note {
    color: #666;
    font-size: 0.9rem;
    margin-top: 8px;
    margin-bottom: 0;
}

.business-hours {
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(210, 105, 30, 0.1);
    margin-bottom: 40px;
}

.hours-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.hours-header i {
    color: #D2691E;
    font-size: 1.5rem;
}

.hours-header h5 {
    color: #7F1824;
    font-weight: 600;
    font-size: 1.3rem;
    margin: 0;
}

.hours-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.hours-item:last-child {
    border-bottom: none;
}

.day {
    font-weight: 500;
    color: #333;
}

.time {
    font-weight: 600;
    color: #D2691E;
}

.urgent-support {
    background: linear-gradient(135deg, #D2691E, #7F1824);
    color: white;
    padding: 15px 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.urgent-support i {
    font-size: 1.2rem;
}

.contact-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #c15920;
}

.primary-btn {
    background: linear-gradient(135deg, #D2691E, #7F1824);
    color: white;
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(210, 105, 30, 0.3);
    color: white;
}

.secondary-btn {
    background: white;
    color: #D2691E;
    border-color: #D2691E;
}

.secondary-btn:hover {
    background: #D2691E;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(210, 105, 30, 0.2);
}

.contact-visual {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.contact-main-image {
    width: 100%;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 200px;
    animation: float 3s ease-in-out infinite;
}

.floating-card:nth-child(2) {
    top: 20px;
    right: -30px;
    animation-delay: 1s;
}

.floating-card-2 {
    bottom: 30px;
    left: -40px;
    animation-delay: 2s;
}

.floating-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #D2691E, #7F1824);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.floating-card-icon i {
    color: white;
    font-size: 1.2rem;
}

.floating-card-content h6 {
    color: #7F1824;
    font-weight: 600;
    margin: 0 0 5px 0;
    font-size: 1rem;
}

.floating-card-content p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}



/* Legacy contact styles for backward compatibility */
.contact-title {
    color: #7F1824;
    font-weight: 400;
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.contact-content {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact-info {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
}

.contact-info p {
    margin-bottom: 15px;
}

/* Responsive Design for Contact Section */
@media (max-width: 768px) {
    .contact-details{
        background: transparent;
        box-shadow: none;
    }
    .contact-section {
        padding: 80px 0;
    }
    
    .contact-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .contact-subtitle {
        font-size: 1.2rem;
        text-align: center;
    }
    
    .contact-content {
        text-align: center;
    }
    
    .contact-details {
        padding: 20px;
    }
    
    .contact-details p {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        text-align: left;
    }
    
    .contact-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .contact-buttons .dinasi-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .contact-image-wrapper {
        margin-top: 40px;
    }
}

@media (max-width: 480px) {
    .contact-title {
        font-size: 1.8rem;
    }
    
    .contact-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-details {
        padding: 15px;
    }
    
    .contact-details p {
        font-size: 1rem;
    }
}
/* About Us Section Styles */
.about-section {
    background: #f8f5f2;
    padding: 80px 0;
    overflow: hidden;
}
.about-section img{
    height: 400px;
    margin: auto;
    display: flex
;
}
.about-title {
    color: #000;
    font-weight: 400;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-subtitle {
    margin-bottom: 30px;
    font-size: 2.5rem;
}

.about-label {
    color: #7F1824;
    font-weight: 600; 
}

.about-main {
    color: #D2691E;
    font-weight: 600; 
}

.about-content {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-image {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Vision Section Styles */
.vision-section {
    background: #f8f5f2;
    padding: 30px 0;
    overflow: hidden;
}
.vision-section img{
    height: 600px;
    margin: auto;
    object-fit: cover;
    display: flex
;
}

.vision-title {
    margin-bottom: 30px;
    font-size: 2.1rem;
}

.vision-content {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Join Movement Section Styles */
.join-movement-section {
    background: #e5d9cb;
    padding: 80px 0;
    overflow: hidden;
}

.join-movement-title {
    color: #2c1810;
    font-weight: 400;
    font-size: 2.5rem;
    margin-bottom: 25px;
    text-align: center;
}

.join-movement-subtitle {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 40px;
    text-align: center;
}

.movement-card {
    
    /* padding: 30px; */
    /* border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); */
    height: 100%;
    border: 1px solid #e0e0e0;
    /* text-align: center; */
}
.contentsmd{
    padding: 15px 30px 20px 30px;
    background: #e0d0bf;
    cursor: pointer;
}
.contentsmd:hover{
    background: white;
}

.movement-icon {
    background: white;
    font-size: 2rem;
color: #2c1810;
text-align: center; 
display: flex
;
align-items: center;
padding: 10px 0px;
justify-content: center;
}

.movement-title {
    color: #2c1810;
    font-weight: 600;
    margin-bottom: 10px;
}

.movement-description {
    color: #333; 
    margin-bottom: 15px;
}

/* Brand Partnership Section Styles */
 

.partnership-title {
    color: #000;
    font-weight: 400;
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-align: left;
}

.partnership-subtitle {
    color: #7F1824;
    font-weight: 400;
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: left;
}

.partnership-subtitle-2 {
    color: #000;
    font-weight: 400;
    font-size: 1.4rem;
    margin-bottom: 40px;
    text-align: left;
}

.stat-item {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px 10px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 400;
    color: #7F1824;
    margin-bottom: 10px;
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: #333;
    font-weight: 400;
    margin-bottom: 10px;
    display: block;
}

.stat-description {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 0;
}

.key-message {
    text-align: center;
    margin-bottom: 50px;
}

.key-message-text {
    font-size: 1.3rem;
    color: #7F1824;
    font-weight: 400;
    margin-bottom: 20px;
}

.key-message-subtitle {
    color: #000;
    font-weight: 400;
    font-size: 1.4rem;
    margin-bottom: 40px;
}

.partnership-content {
    border-left: 3px solid #7F1824;
    padding-left: 20px;
}

.partnership-item {
    margin-bottom: 30px;
}

.partnership-item h4 {
    color: #7F1824;
    font-weight: 400;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.partnership-item p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 1rem;
}

.partnership-cta {
    text-align: center;
    margin-top: 50px;
}

.partnership-cta-text {
    font-size: 1.1rem;
    color: #333;
    font-style: normal;
}

/* Careers Section Styles */
.careers-section {
    background: #ffffff;
    padding: 30px 0;
    overflow: hidden;
}
.careers-section img{
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    height: 750px;
    margin: auto;
    object-fit: cover;
    display: flex
;
}
.div-concaree{
    padding: 0px 0px 0px 35px;
}

.careers-title {
    color: #000;
    font-weight: 400;
    font-size: 2.3rem;
    margin-bottom: 15px;
}

.careers-subtitle {
    color: #7F1824;
    font-weight: 600;
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.careers-content {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.7;
    margin-bottom: 20px;
}

.careers-subsection {
    margin-bottom: 30px;
}

.careers-subsection h4 {
    color: #7F1824;
    font-weight: 600;
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.careers-list {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 30px;
    padding-left: 20px;
}

.careers-list li {
    margin-bottom: 8px;
}

.careers-cta {
    font-size: 1.2rem;
    color: #7F1824;
    font-weight: 600;
    font-style: italic;
}

/* Final Contact Section Styles */
.final-contact-section {
    background: #f8f5f2;
    padding: 80px 0;
    overflow: hidden;
}

.final-contact-title {
    color: #000;
    font-weight: 400;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.final-contact-subtitle {
    color: #D2691E;
    font-weight: 600;
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.final-contact-content {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.7;
    margin-bottom: 30px;
}

.contact-details {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-details p {
    margin-bottom: 15px;
}

.contact-details i {
    margin-right: 10px;
}

.contact-details .fa-phone {
    color: #E91E63;
}

.contact-details .fa-envelope {
    color: #9C27B0;
}

.contact-details .fa-whatsapp {
    color: #2196F3;
}

.brand-logo {
    text-align: center;
}

.brand-logo img {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    margin-bottom: 20px;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 400;
    color: #000;
}

.brand-name .highlight {
    color: #D2691E;
}


































 

/* Responsive Styles */
@media (max-width: 993px) {
    .contact-info-cards{
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .spec{
        height: 50px;
    }
 
    .dinasi-hero h1 {
        font-size: 2.2rem;
    }
    
    .dinasi-section h2 {
        font-size: 2rem;
    }
    
    .dinasi-section h3 {
        font-size: 1.5rem;
    }
}
@media (max-width: 767px) {
    .challenge-label{
        font-size: 1.5rem;
    }
    .challenge-main{
        font-size: 1.5rem;
    }
    .challenge-content{
        margin-top: 20px;
    }
    .help-section img {
        padding-right: 0px;
        height: 340px;
        object-fit: cover;
        width: 100%;
        margin-bottom: 20px;
    }
    .help-section .help-title { 
        font-size: 1.5rem;
    }
    .help-title .help-label .help-main{
        font-size: 1.5rem;
    }
    .getting-started-title{
        font-size: 1.5rem;
    }
    .getting-started-intro {
        font-size: 1rem;
    }
    .help-title .help-label{
        font-size: 1.5rem;
    }
    .help-section .help-label {
        margin-bottom: 10px;
    }
    .help-section .help-intro{
        font-size: 14px;
    }
    .services-section img {
        height: 400px;
        object-fit: cover;
        width: 100%;
        margin-bottom: 20px;
    }
    .help-timeline-item{
        margin-left: 0px !important;
    }
    .getting-started-section img {
        margin-top: 20px;
        height: 300px;
        object-fit: cover;
    }
    .why-choose-title {
        font-size: 1.5rem ; 
        margin-bottom: 20px ;
    }
    .join-movement-title{
        font-size: 1.5rem;
    }
    .join-movement-subtitle{
        font-size: 1rem;
    }
    .contentsmd {
        padding: 15px 20px 20px 20px;
    }
    .contact-main-title{
        font-size: 1.5rem;
    }
    .contact-main-subtitle{
        font-size: 1rem;
    }
    .footer-content{
        text-align: center;
    }
    .about-subtitle{
        font-size: 1.5rem;
    }
    .vision-title{
        font-size: 1.5rem;
    }
    .vision-section img{
        height: 360px;
    }
    .careers-section img { 
        height: 400px;
        margin: 0px auto 30px;
    }
    .div-concaree{
        padding: 0px 0px 0px 0px;
    }
    .careers-title{
        font-size: 1.5rem;
    }
    .careers-subtitle{
        font-size: 1.5rem;
    }
    .careers-subsection h4{
        font-size: 1.5rem;
    }
    .contact-info-cards{
        grid-template-columns: repeat(1, 1fr);
    }

}






























.brand-partnership-section {
    background: #ffffff;
    padding: 80px 0;
}

.brand-partnership-section .section-header {
    margin-bottom: 20px;
}

.brand-partnership-section .main-title {
    font-size: 2.3rem;
    font-weight: 500;
    color: #000;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.brand-partnership-section .subtitle-red {
    font-size: 2rem;
    color: #7F1824;
    font-weight: 400;
    margin-bottom: 10px;
    max-width: 840px;
}

.brand-partnership-section .subtitle-gray {
    /* font-size: 1.8rem; */
    color: #D2691E;
    font-weight: 400;
    margin-bottom: 0;
}

.brand-partnership-section .stats-container {
    margin: 20px 0px 0px;
}

.brand-partnership-section .stat-card {
    text-align: center;
    padding: 20px 15px;
    margin-bottom: 30px;
}

.brand-partnership-section  .stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: #7F1824;
    line-height: 1;
    margin-bottom: 20px;
    display: block;
}

.brand-partnership-section .stat-label {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 12px;
    display: block;
}

.brand-partnership-section .stat-description {
    font-size: 1.1rem;
    color: #323232;
    line-height: 1.4;
    margin: 0;
}

.brand-partnership-section .key-message-section {
    text-align: center;
    margin: 0px 0px 30px;
    padding: 0 20px;
}

.brand-partnership-section .key-message-main {
    font-size: 1.6rem;
    color: #7F1824;
    font-weight: 500;
    margin-bottom: 15px;
    line-height: 1.5;
}
.brand-partnership-section .key-message-main span{ 
    color: #D2691E; 
}

.brand-partnership-section .key-message-sub {
    font-size: 2rem;
    color: #000;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.brand-partnership-section .content-section {
    margin-top: 50px;
}

.brand-partnership-section .partnership-image {
    margin-bottom: 30px;
}

.brand-partnership-section .partnership-image img {
    width: 100%;
    /* height: 400px; */
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.brand-partnership-section .benefits-list {
    padding-left: 0;
}

.brand-partnership-section .benefit-item {
    margin-bottom: 35px;
    padding-left: 20px;
    border-left: 15px solid #7F1824;
    height: 120px;
    cursor: pointer;
    transition: .6s;
    padding-top: 10px;
}
.brand-partnership-section .benefit-item:hover{
    border-left: 15px solid #D2691E;
}
.brand-partnership-section .benefit-item:hover .benefit-title{
    color: #D2691E;
}

.brand-partnership-section .benefit-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #7F1824;
    margin-bottom: 8px;
}

.brand-partnership-section .benefit-description {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

 

@media (max-width: 768px) {
    .brand-partnership-section  .main-title {
        font-size: 1.5rem;
    }
    .brand-partnership-section .subtitle-red{
        font-size: 1.5rem;
    }
    .brand-partnership-section .stat-number {
        font-size: 2.3rem;
        margin-bottom: 10px;
    }
    
    .brand-partnership-section .key-message-main, .key-message-sub {
        font-size: 1.3rem;
    }
    .brand-partnership-section .key-message-sub{
        font-size: 1.3rem;
    }
    .brand-partnership-section .benefit-item{
        height: 155px;
        margin-left: 0px !important;
    }
} 

/* Contact Details Section Styles */
.contact-details-section {
    background: #ffffff;
    padding: 80px 0;
    overflow: hidden;
}

.contact-info-box {
    background: linear-gradient(135deg, #f8f5f2 0%, #fff 100%);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border: 1px solid rgba(210, 105, 30, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23D2691E" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%23D2691E" opacity="0.02"/><circle cx="50" cy="10" r="0.5" fill="%23D2691E" opacity="0.01"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.contact-info-title {
    color: #7F1824;
    font-weight: 600;
    font-size: 1.8rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.contact-info-title i {
    color: #D2691E;
    margin-right: 15px;
    font-size: 2rem;
}

.contact-info-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.support-hours {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    z-index: 2;
}

.support-hours h5 {
    color: #7F1824;
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.support-hours h5 i {
    color: #D2691E;
    font-size: 1.4rem;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item .day {
    font-weight: 500;
    color: #333;
    font-size: 1rem;
}

.hours-item .time {
    font-weight: 600;
    color: #D2691E;
    font-size: 1rem;
}

.urgent-support-badge {
    background: linear-gradient(135deg, #D2691E, #7F1824);
    color: white;
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
}

.urgent-support-badge i {
    font-size: 1.1rem;
}

/* Enhanced Contact Visual Styles */
.contact-visual {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.contact-main-image {
    width: 100%;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 200px;
    animation: float 3s ease-in-out infinite;
}

.floating-card:nth-child(2) {
    top: 20px;
    right: -30px;
    animation-delay: 1s;
}

.floating-card-2 {
    bottom: 30px;
    left: -40px;
    animation-delay: 2s;
}

.floating-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #D2691E, #7F1824);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.floating-card-icon i {
    color: white;
    font-size: 1.2rem;
}

.floating-card-content h6 {
    color: #7F1824;
    font-weight: 600;
    margin: 0 0 5px 0;
    font-size: 1rem;
}

.floating-card-content p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Responsive Design for Contact Details Section */
@media (max-width: 768px) {
    .contact-details-section {
        padding: 60px 0;
    }
    
    .contact-info-box {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .contact-info-title {
        font-size: 1.5rem;
    }
    
    .support-hours {
        padding: 20px;
    }
    
    .hours-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .floating-card {
        position: relative;
        margin: 20px auto;
        max-width: 100%;
        right: auto;
        left: auto;
        top: auto;
        bottom: auto;
    }
    
    .contact-image-container {
        margin-top: 40px;
    }
}

@media (max-width: 480px) {
    .contact-info-box {
        padding: 25px 15px;
    }
    
    .contact-info-title {
        font-size: 1.3rem;
    }
    
    .support-hours {
        padding: 15px;
    }
    
    .urgent-support-badge {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
} 






































 /* Footer */

        .footer {
            /* background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%); */ 
                /* background: black; */
                background-image: url(image/footer-bg01.png);
                    background-position: center center;
    background-size: cover;
        background-color: #232323;
    background-repeat: no-repeat;
    background-attachment: scroll;
            color: #ecf0f1;
            padding: 20px 0 10px;
            position: relative;
            overflow: hidden;
        }
.tm-bg-layer {
        position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
        opacity: 0.93;
            background-color: #D2691E;
}
        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.01)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            opacity: 0.3;
        }

       .footer  .footer-container {
            
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

       .footer  .newsletter-section {
            /* text-align: center; */
            margin-bottom: 50px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgb(255, 255, 255);
             display: flex;
    align-items: center;
    justify-content: space-between;
        }

        .footer .newsletter-section h2 {
            font-size: 27px;
        }

        .footer .newsletter-section p {
            font-size: 16px;
            color: #bdc3c7;
            margin-bottom: 25px;
        }
 
       .footer  .newsletter-form {
            display: flex;
            /* max-width: 500px; */
            /* margin: 0 auto; */
            gap: 0;
            /* border-radius: 50px; */
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            border: 1px solid white;
        }

        .footer .newsletter-form input {
            flex: 1;
            padding: 15px 25px;
            border: none;
            background: rgba(255, 255, 255, 0.1);
            color: #ecf0f1;
            font-size: 16px;
            backdrop-filter: blur(10px);
            width: 350px;
        }

        .footer .newsletter-form input::placeholder {
            color: #bdc3c7;
        }

       .footer  .newsletter-form button {
           padding: 10px 10px;
    background: white;
    border: none;
    color: black;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex
;
    align-items: center;
    gap: 8px;
        }

       .footer  .newsletter-form button:hover {
            background: #d8b375;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(243, 156, 18, 0.4);
        }
        a{
            text-decoration: none;
        }

        .footer .footer-content .footer-section,.footer-brand{
              padding: 5px 0px 5px 0px;
        }
        .footer-brand .logo img{
        height: 120px;
        padding-right: 10px; 
        position: relative; /* required for absolute positioning of ::after */
    display: inline-block;
        }
         
        .footer-brand .logo {
  position: relative;
  display: inline-block;
}
.footer-brand{
    text-align: center;
}
.footer-brand .logo img {
  position: relative;
  z-index: 1; /* image upar rahegi */
}

.footer-brand .logo::after {
      content: "";
    position: absolute;
    inset: 0;
    background: white;
    z-index: 0;
    width: 80px;
    height: 50px;
    top: 50px;
    left: 20px;
}
        .footer .footer-content .div-sded{
            position: relative;
        }
        .footer .footer-content .div-sded::after {
        width: 1px;
        height: 100%;
        content: '';
        position: absolute;
        left: -25px;
        background-color: rgba(255, 255, 255, 0.10);
        top: 0;
    }
        .footer .footer-content {
           
            margin-bottom: 10px;
                border-top: 1px solid rgb(255 255 255 / 14%);
    border-bottom: 1px solid rgb(255 255 255 / 14%);
  
        }

        .div-flex-footer{
            display: flex; 
            gap: 30px;
            /* justify-content: space-between; */
            margin-top: 25px;
        }

       .footer  .logo {  
    cursor: pointer;
    margin-bottom: 20px;
    text-align: center;
        }
.footer .footer-brand p{
    font-size: 14px;
    padding-right: 20px;
    color: white;
    text-align: center;
}
        

        .footer .footer-section h4 {
            font-size: 18px;
            margin-bottom: 20px;
            color: #ecf0f1;
            position: relative;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer .footer-section h4::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 30px;
            height: 2px;
            background: white;
            border-radius: 2px;
        }

        .footer .footer-section ul {
            list-style: none;
            padding-left: 0px;
            margin-bottom: 0px;
        }

        .footer .footer-section ul li {
            margin-bottom: 12px;
        }

        .footer .footer-section ul li a {
            /* color: #bdc3c7; */
            color: #fff;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        

         .footer .footer-section ul li a:hover {
            color: #d8b375;
            transform: translateX(5px);
        }

         .footer .footer-section ul li a i {
            width: 16px; 
            text-align: center;
            /* opacity: 0.7; */
            transition: .6s;
        }
        /* .footer .footer-section ul li a:hover i{
    transform: rotate(10deg);
        } */

         .footer .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            margin-bottom:5px;
            padding:5px 0px 5px 0px;
            /* background: rgba(255, 255, 255, 0.05); */
            border-radius: 10px;
            transition: all 0.3s ease;
        }

         .footer .contact-item:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }

         .footer .contact-icon {
            width: 40px;
            height: 40px;
            /* background: white; */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            flex-shrink: 0;
            color: black;
        }
        .footer .contact-icon img{
                width: 30px;
    height: 30px;
    object-fit: contain;
    background: #ffffff;
    padding: 4px;
    border-radius: 10px;
        }

         .footer .contact-info h5 {
            font-size: 16px;
            margin-bottom: 1px;
            color: #ecf0f1;
            display: flex;
            align-items: center;
            gap: 8px;
        }

         .footer .contact-info p {
            font-size: 14px;
            color: #bdc3c7;
            margin: 0;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .footer .contact-info p a{
            color: #fff;
        }

        .footer .footer-bottom {
            /* border-top: 1px solid rgba(255, 255, 255, 0.1); */
            padding-top: 0px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

         .footer .copyright {
            font-size: 14px;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer .social-links {
            display: flex;
            gap: 5px;
        }

        .footer .social-link {
            width: 35px;
            height: 35px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 0%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .footer .social-link:hover {
            background: white;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(243, 156, 18, 0.4);
        }

        .footer .social-link.facebook:hover {
            background: #3b5998;
            box-shadow: 0 8px 25px rgba(59, 89, 152, 0.4);
        }

        .footer .social-link.twitter:hover {
            background: #1da1f2;
            box-shadow: 0 8px 25px rgba(29, 161, 242, 0.4);
        }

        .footer .social-link.linkedin:hover {
            background: #0077b5;
            box-shadow: 0 8px 25px rgba(0, 119, 181, 0.4);
        }

        .footer .social-link.pinterest:hover {
            background: #bd081c;
            box-shadow: 0 8px 25px rgba(189, 8, 28, 0.4);
        }
         @media (max-width: 1024px) {
            
        }
        @media (max-width: 1023px) {
 .footer .newsletter-section{
                    text-align: center;
                    display: block;
            }
           
        }
        @media (max-width: 968px) {
            
           
        }

        @media (max-width: 768px) {
           
           .footer  .newsletter-form {
                flex-direction: column;
                border-radius: 10px;
                    max-width: 500px;
                    text-align: center;
     margin: 0 auto;
            }

            .footer .newsletter-form button {
                border-radius: 0 0 10px 10px;
                justify-content: center;
            }

           .footer  .newsletter-form input {
                border-radius: 10px 10px 0 0;
                text-align: center;
                width: 100%;
            }

            .footer .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            
        }

         
        @media (max-width: 480px) {
             

            .footer .footer-brand {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .footer .contact-item {
                /* flex-direction: column; */
                align-items: center;
                text-align: center;
            }
        }