  @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
   
   * {
    font-family: 'Montserrat', sans-serif;
}

   body {
            font-family: 'Montserrat', 'Arial', sans-serif;
        }
        .pt-50{
            padding-top: 50px;
        }
        
        
        /* Slider Styles */
        #slider-area {
            margin-bottom: 0px;
        }
        
        #slider-area .carousel-item img {
            height: 650px!important;
            object-fit: cover;
        }
        
        /* Responsive */
        @media (min-width:320px) and (max-width: 767px) {
            #slider-area .carousel-item img {
                height: 100%!important;
            }
            
            .logo {
                font-size: 24px;
            }
        }
        
        /* Footer Styles */
         .footer {
            background:#eeeded;
            color: #000;
            padding: 50px 0 20px;
        }
        
.footer h5 {
    margin-bottom: 20px;
    color: #000;
}
        
        .footer ul {
            list-style: none;
            padding: 0;
        }
        
        .footer ul li {
            margin-bottom: 10px;
        }
        
        .footer ul li a {
            color: #000;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer ul li a:hover {
            color: #000;
        }
        
        .social-links a {
            color: #000;
            font-size: 20px;
            margin-right: 15px;
            transition: color 0.3s ease;
        }
        
        .social-links a:hover {
            color: #000;
        }
        
        .footer-bottom {
            border-top: 1px solid #34495e;
            margin-top: 30px;
            padding-top: 20px;
/*            text-align: center;*/
            color: #000;
        }
        
        .footer-bottom p{
            color: #000; 
        }
        
       

        .form-subtitle {
    margin-top: -25px;
}

 .about-page {
            padding: 60px 0;
            background: #f8f9fa;
        }

        .page-header {
            margin-bottom: 80px;
        }

        .page-title {
            font-size: 3rem;
            color: #2c3e50;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .page-subtitle {
            font-size: 1.2rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        .section-title {
            color: #2c3e50;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .section-subtitle {
            color: #666;
            font-size: 1.1rem;
            max-width: 500px;
            margin: 0 auto;
        }
        
        .section-subtitle1 {
	color: #666;
	font-size: 1.1rem;
	max-width: 1050px;
	margin: 0 auto;
}

        /* About Image Container */
        .about-image-container {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }

        .about-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: white;
            padding: 30px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .about-image-container:hover .image-overlay {
            transform: translateY(0);
        }

        .about-image-container:hover .about-image {
            transform: scale(1.05);
        }

        .overlay-content h4 {
            font-size: 1.5rem;
            margin-bottom: 5px;
        }

        /* About Content */
        .about-content .lead {
            font-size: 1.25rem;
            color: #2c3e50;
            font-weight: 500;
            margin-bottom: 25px;
        }

        .about-content p {
            color: #666;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .stats-row {
            display: flex;
            gap: 40px;
            margin-top: 30px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-item h4 {
            font-size: 2rem;
            color: #3498db;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .stat-item span {
            color: #666;
            font-size: 14px;
        }

        /* Mission & Vision Cards */
        .mission-vision-card {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            height: 100%;
            text-align: center;
            transition: transform 0.3s ease;
        }

        .mission-vision-card:hover {
            transform: translateY(-10px);
        }

        .card-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #3498db, #2980b9);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 24px;
        }

        .mission-vision-card h3 {
            color: #2c3e50;
            margin-bottom: 20px;
        }

        .mission-vision-card p {
            color: #666;
            line-height: 1.7;
        }

        /* Services Overview */
        .services-section {
            background: whitesmoke;
            padding: 50px 40px;
          /*  border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);*/
        }

        /*.service-item {
            text-align: center;
            padding: 30px 20px;
            transition: transform 0.3s ease;
        }*/

   .service-item {
    text-align: center;
    padding: 5px;
    transition: transform 0.3s ease;
    border: 1px solid rgba(0,0,0,.1);
    height: 100%;
    background: #fff;
}

        .service-item:hover {
            transform: translateY(-5px);
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #3498db, #2980b9);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 20px;
        }

        .service-image img{
            width: 100%;
            height:130px;
        }

        .service-item h4 {
            color: #000;
            margin-top: 15px;
            font-size:20px;
        }

        .service-item p {
            color: #666;
            font-size: 14px;
        }

        /* Why Choose Us */
        .whychooseus-section {
            background: white;
            padding: 50px 40px;
            /*border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);*/
        }

        .feature-list {
            margin-top: 30px;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }

        .feature-icon {
            width: 40px;
            height: 40px;
            background: #000;
            color: red;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
        }

        .feature-content h5 {
            color: #2c3e50;
            margin-bottom: 5px;
        }

        .feature-content p {
            color: #666;
            margin: 0;
            font-size: 14px;
        }

        .why-image-container {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }

        .why-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

        /* Team Section */
        .team-section {
            background: white;
            padding: 60px 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .team-member {
            text-align: center;
            background: #f8f9fa;
            border-radius: 15px;
            padding: 30px 20px;
            transition: transform 0.3s ease;
        }

        .team-member:hover {
            transform: translateY(-10px);
        }

        .member-image {
            position: relative;
            margin-bottom: 20px;
        }

        .member-image img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .member-social {
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .team-member:hover .member-social {
            opacity: 1;
        }

        .member-social a {
            width: 30px;
            height: 30px;
            background: #3498db;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            text-decoration: none;
        }

        .member-info h4 {
            color: #2c3e50;
            margin-bottom: 5px;
        }

        .member-info span {
            color: #3498db;
            font-weight: 500;
            font-size: 14px;
        }

        .member-info p {
            color: #666;
            font-size: 13px;
            margin-top: 10px;
        }

        /* CTA Section */
        .cta-section {
            background: #000;
            color: white;
            padding: 50px 40px;
            border-radius: 10px;
/*            box-shadow: 0 15px 35px rgba(0,0,0,0.1);*/
        }

        .cta-content h2 {
            margin-bottom: 15px;
        }

        .cta-content p {
            font-size: 1.1rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .btn-primary {
            background: white;
            color: red;
            border: 2px solid white;
            padding: 15px 30px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            background: transparent;
            color: white;
            transform: translateY(-2px);
            border: 2px solid red;
        }

        .btn-outline-primary {
            background: transparent;
            color: white;
            border: 2px solid white;
            padding: 15px 30px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
        }

        .btn-outline-primary:hover {
            background: white;
            color: red;
            transform: translateY(-2px);
            border: 2px solid red;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .about-page {
                padding: 40px 0;
            }

            .page-title {
                font-size: 2.5rem;
            }

            .about-image,
            .why-image {
                height: 250px;
            }

            .stats-row {
                gap: 20px;
                justify-content: center;
            }

            .services-overview,
            .why-choose-us,
            .team-section,
            .cta-section {
                padding: 40px 20px;
                margin-bottom: 30px;
            }

            .cta-buttons {
                flex-direction: column;
                gap: 15px;
            }

            .btn-primary,
            .btn-outline-primary {
                width: 100%;
                margin: 0 !important;
            }
        }

        @media (max-width: 480px) {
            .page-title {
                font-size: 2rem;
            }

            .mission-vision-card {
                padding: 25px;
            }

            .feature-item {
                flex-direction: column;
                text-align: center;
            }

            .feature-icon {
                margin: 0 auto 15px;
            }
        }



        /*gallery*/
        .title-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #FFB829, #ff9500);
    margin-top: 20px;
    border-radius: 2px;
}

/* Gallery Section */
.gallery-section {
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
}

.gallery-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="%23000" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.gallery-card {
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    background: white;
    border-radius: 15px;
    padding: 10px;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 4/3;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-card:hover .gallery-img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
}

.image-number {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.8);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.85rem;
}

/* Modal Styles */
.modal-content {
    border-radius: 15px;
    overflow: hidden;
}

.modal-header {
    background: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
}

.modal-footer {
    background: #f8f9fa;
    border-top: 1px solid #dee2e6;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-item {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }
.gallery-item:nth-child(7) { animation-delay: 0.7s; }
.gallery-item:nth-child(8) { animation-delay: 0.8s; }
.gallery-item:nth-child(9) { animation-delay: 0.9s; }

/* Responsive Design */
@media (max-width: 768px) {
    .gallery-card {
        padding: 8px;
    }
    
    .image-number {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
        top: 10px;
        right: 10px;
    }
    
    .modal-dialog {
        margin: 10px;
    }
}

@media (max-width: 576px) {
    .gallery-section {
        padding: 40px 0 !important;
    }
    
    .image-container {
        aspect-ratio: 1/1;
    }
}
        /*gallery*/



        /*client*/
        .feedback-section {
/*            background: #000;*/
            padding: 40px 0;
            position: relative;
            overflow: hidden;
            background: #fff;
        }
        
        .feedback-section .feedback-bg-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 12rem;
            font-weight: 900;
            color: rgba(255, 255, 255, 0.03);
            z-index: 1;
            white-space: nowrap;
            pointer-events: none;
            letter-spacing: 0.05em;
        }
        
        .feedback-section .feedback-content {
            position: relative;
            z-index: 2;
        }
        
        .feedback-section .feedback-tag {
            background: #f39c12;
            color: #000;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 8px 16px;
            display: inline-block;
            margin-bottom: 20px;
        }
        
        .feedback-section .feedback-title {
            font-size: 48px;
            font-weight: 400;
            line-height: 1.1;
            margin-bottom: 20px;
            color: #000;
            text-align: center;
        }
        
        .feedback-section .feedback-subtitle {
            font-size: 14px;
            line-height: 1.7;
            color:#000;
            margin-bottom: 50px;
            text-align: center;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .feedback-section .testimonial-card {
            background:#000;
            border-radius: 0;
            padding: 30px;
            height: 100%;
            position: relative;
            margin: 0 10px;
        }
        
        .feedback-section .client-info {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .feedback-section .client-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
            border: 3px solid rgba(255, 255, 255, 0.2);
        }
        
        .feedback-section .client-details h5 {
            color: white;
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 2px;
        }
        
        .feedback-section .client-details p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 12px;
            margin: 0;
            font-weight: 400;
        }
        
        .feedback-section .testimonial-text {
            color: rgba(255, 255, 255, 0.9);
            font-size: 13px;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .feedback-section .rating {
            display: flex;
            gap: 3px;
        }
        
        .feedback-section .rating i {
            color: #f39c12;
            font-size: 14px;
        }
        
        .feedback-section .carousel-control-prev,
        .feedback-section .carousel-control-next {
            width: 50px;
            height: 50px;
            background:#000;
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            opacity: 1;
        }
        
        .feedback-section .carousel-control-prev {
            left: 0px;
        }
        
        .feedback-section .carousel-control-next {
            right: 0px;
        }
        
        .feedback-section .carousel-control-prev:hover,
        .feedback-section .carousel-control-next:hover {
            background: red;
        }
        
        .feedback-section .carousel-control-prev-icon,
        .feedback-section .carousel-control-next-icon {
            background-size: 20px;
        }
        
        .feedback-section .carousel-indicators {
            bottom: -50px;
        }
        
        .feedback-section .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            border: none;
            margin: 0 5px;
        }
        
        .feedback-section .carousel-indicators button.active {
            background: #f39c12;
        }
        
        @media (max-width: 992px) {
            .feedback-section .feedback-bg-text {
                font-size: 8rem;
            }
            
            .feedback-section .feedback-title {
                font-size: 36px;
            }
            
            .feedback-section .carousel-control-prev,
            .feedback-section .carousel-control-next {
                display: none;
            }
        }
        
        @media (max-width: 768px) {
            .feedback-section .feedback-bg-text {
                font-size: 5rem;
            }
            
            .feedback-section .feedback-title {
                font-size: 28px;
            }
            
            .feedback-section .feedback-section {
                padding: 50px 0;
            }
            
            .feedback-section .testimonial-card {
                margin: 0 5px;
                padding: 20px;
            }
        }
       /*client*/


        /*        blog section*/
        .blog-section {
            background-color:var(--bg-light);
            padding: 50px 0px 50px 0px;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .blog-section-subtitle {
            color: #6c757d;
            font-size: 0.95rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }
        
        .blog-section-title {
            font-size: 3rem;
            font-weight: 700;
            color: #2c3e50;
            margin: 0;
        }

.blog-section-title p {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}
        
        .section-title .highlight {
            color: #dc3545;
        }
        
        .blog-card {
            background: white;
            border-radius: 0;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border: none;
            height: 100%;
        }
        
        .blog-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.15);
        }
        
        .blog-image {
            position: relative;
            overflow: hidden;
            height: 280px;
        }
        
        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        
        .blog-card:hover .blog-image img {
            transform: scale(1.05);
        }
        
        .blog-content {
            padding: 30px;
        }
        
        .blog-meta {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            font-size: 0.85rem;
            color: #6c757d;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .blog-date {
            margin-right: 15px;
        }
        
        .blog-author {
            margin-left: 15px;
        }
        
        .meta-separator {
            color: #dee2e6;
            margin: 0 8px;
        }
        
        .blog-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 15px;
            line-height: 1.4;
            transition: color 0.3s ease;
        }
        
        .blog-card:hover .blog-title {
            color: #dc3545;
        }
        
        .blog-excerpt {
            color: #6c757d;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 25px;
        }
        
        .blog-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 20px;
            border-top: 1px solid #e9ecef;
        }
        
        .read-more {
            color: #dc3545;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }
        
        .read-more:hover {
            color: #c82333;
            transform: translateX(5px);
        }
        
        .comments-count {
            color: #6c757d;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
        }
        
        .comments-count i {
            margin-right: 5px;
            font-size: 0.8rem;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .blog-section-title {
                font-size: 2.2rem;
            }
            
            .blog-content {
                padding: 25px;
            }
            
            .blog-title {
                font-size: 1.25rem;
            }
            
            .blog-section {
                padding: 60px 0;
            }
        }
        
        @media (max-width: 576px) {
            .blog-section-title {
                font-size: 1.8rem;
            }
            
            .blog-content {
                padding: 20px;
            }
            
            .blog-image {
                height: 240px;
            }
            
            .blog-footer {
                flex-direction: column;
                gap: 15px;
                align-items: flex-start;
            }
        }
/*        blog section*/



.wrap {
    display: flex;
    background: white;
    padding: 1rem 1rem 1rem 1rem;
    /* border-radius: 0.5rem; */
    /* box-shadow: 7px 7px 30px -5px rgba(0,0,0,0.1); */
    margin-bottom: 1rem;
}

.wrap:hover {
    background: red;
    color: white;
}

.wrap .ico-wrap {
    margin: auto;
}

.wrap .mbr-iconfont {
    font-size: 4.5rem !important;
    color: #313131;
    margin: 1rem;
    padding-right: 1rem;
}
.wrap .vcenter {
    margin: auto;
}

.wrap .mbr-section-title3 {
    text-align: left;
}
.wrap h2 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}
.wrap .display-5 {
    font-size: 1.4rem;
}
.wrap .mbr-bold {
    font-weight: 700;
}

 .wrap p {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    line-height: 25px;
}
.wrap .display-6 {
    font-size: 1rem;
}


.masonry-grid {
    column-count: 4;
    column-gap: 15px;
    width: 100%;
}

@media (max-width: 991px) {
    .masonry-grid {
        column-count: 2;
    }
}

@media (max-width: 575px) {
    .masonry-grid {
        column-count: 1;
    }
}

.masonry-item {
    display: inline-block;
    margin: 0 0 15px;
    width: 100%;
    break-inside: avoid;
    page-break-inside: avoid;
    -webkit-column-break-inside: avoid;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.masonry-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.masonry-item img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: middle;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.masonry-item:hover img {
    transform: scale(1.08);
}

/* Modal Styling */
#imageModal .modal-content {
    background: transparent;
    border: none;
}

#imageModal .modal-header {
    position: absolute;
    right: 15px;
    top: 15px;
    z-index: 1055;
    border: none;
    padding: 0;
}

#imageModal .btn-close {
    background: #fff;
    opacity: 1;
    border-radius: 50%;
    padding: 10px;
    width: 40px;
    height: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

#imageModal .modal-body {
    padding: 0;
    background: #000;
}

#imageModal .modal-body img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}


/*event*/
.events-section {
            padding: 40px 0;
            background: whitesmoke;
            position: relative;
        }

        .event-card {
            display: flex;
            background: white;
            border-radius: 0px;
/*            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);*/
            transition: all 0.3s ease;
            margin-bottom: 25px;
            overflow: hidden;
            border: 1px solid  rgba(0, 0, 0, 0.05);
            height: 280px;
        }

        .event-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px var(--shadow-medium);
        }

        .event-image {
            width: 180px;
            height: 220px;
            flex-shrink: 0;
            overflow: hidden;
        }

        .event-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .event-card:hover .event-image img {
            transform: scale(1.05);
        }

        .event-content {
            flex: 1;
            padding: 20px 25px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .event-meta {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 10px;
            font-size: 0.85rem;
            color: var(--text-gray);
        }

        .event-meta i {
            color: var(--primary-red);
            font-size: 0.8rem;
        }

        .event-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 12px;
        }

        .event-card:hover .event-title {
            color: var(--primary-red);
        }

        .event-btn {
            color: var(--secondary);
            font-weight: 600;
            text-decoration: none;
            font-size: 13px;
            border: 1px solid var(--secondary);
            width: 150px;
            padding: 10px;
            text-align: center;
            letter-spacing: 1px;
/*            background: #dc3545;*/
            border-radius: 0px;
            color:var(--black);
        }

        .event-btn:hover {
            color:var(--black);
            border: 1px solid var(--secondary);
            background: var(--secondary);
        }

        @media (max-width: 768px) {
            .event-card {
                flex-direction: column;
                height: auto;
            }

            .event-image {
                width: 100%;
                height: 160px;
            }

            .event-meta {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
           
        }


/*event*/
