/*--------------------------------------------------------------
# General - Dark Theme
--------------------------------------------------------------*/
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: #121212; /* Dark background */
    color: #f5f5f5; /* Light text for contrast */
}

a {
    color: #00ff7f; /* Neon green for a sleek look */
    font-weight: 600;
    transition: color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

a:hover, a:active, a:focus {
    color: #f0e5c8; /* Muted gold for elegance */
    transform: scale(1.05);
    outline: none;
    text-decoration: none;
}

/* Paragraphs */
p {
    margin: 0 0 20px;
    font-size: 18px;
    color: #cccccc; /* Light grey for readability */
    font-weight: 400;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #ffffff; /* Pure white for emphasis */
    margin-bottom: 15px;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

/* Images */
img {
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    filter: brightness(0.9) contrast(1.1); /* Enhancing visibility on dark mode */
}

img:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0, 255, 127, 0.3); /* Subtle green glow */
}

/* Section Backgrounds */
/*
section {
    background: rgba(30, 30, 30, 0.8);  Soft dark glass effect 
    padding: 50px 0;
    backdrop-filter: blur(10px);
    border-radius: 10px;
}
*/

/* Buttons */
.btn {
    background: #00ff7f;
    color: #121212;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #f0e5c8;
    color: #222;
    transform: scale(1.05);
}

 /*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
 
 .back-to-top {
     position: fixed;
     visibility: hidden;
     opacity: 0;
     right: 15px;
     bottom: 15px;
     z-index: 996;
     background: #8cb58c;
     width: 40px;
     height: 40px;
     border-radius: 50px;
     transition: all 0.4s;
 }
 
 .back-to-top i {
     font-size: 28px;
     color: #fff;
     line-height: 0;
 }
 
 .back-to-top:hover {
     background: #003486;
     color: #fff;
 }
 
 .back-to-top.active {
     visibility: visible;
     opacity: 1;
 }
 /* Prelaoder */
 
 #preloader {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     z-index: 9999;
     overflow: hidden;
     background: #fff;
 }
 
 #preloader:before {
     content: "";
     position: fixed;
     top: calc(50% - 30px);
     left: calc(50% - 30px);
     border: 6px solid #f2f2f2;
     border-top: 6px solid #8cb58c;
     border-radius: 50%;
     width: 60px;
     height: 60px;
     animation: animate-preloader 1s linear infinite;
 }
 
 @keyframes animate-preloader {
     0% {
         transform: rotate(0deg);
     }
     100% {
         transform: rotate(360deg);
     }
 }
 /*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
 
 #header {
     transition: all 0.5s;
     z-index: 997;
     background: #000;
     height: 80px;
 }
 
 #header.header-transparent {
     background: transparent;
 }
 
 #header.header-scrolled {
     background: rgb(0, 0, 0);
     height: 60px;
 }
 
 #header .logo {
     font-size: 34px;
     margin: 0;
     padding: 0;
    font-family: 'Poppins', sans-serif;
     font-weight: 700;
     letter-spacing: 3px;
     padding-left: 10px;
     border-left: 4px solid #8cb58c;
 }
 
 #header .logo a {
     color: #fff;
 }
 
 #header .logo img {
     max-height: 40px;
 }
 
 @media (max-width: 992px) {
     #header .logo {
         font-size: 28px;
     }
 }
 /*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
 /**
* Desktop Navigation 
*/
 
 .navbar {
     padding: 0;
 }
 
 .navbar ul {
     margin: 0;
     padding: 0;
     display: flex;
     list-style: none;
     align-items: center;
 }
 
 .navbar li {
     position: relative;
 }
 
 .navbar a,
 .navbar a:focus {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 10px 0 10px 30px;
     font-size: 13px;
     font-weight: 600;
     color: #fff;
     white-space: nowrap;
     text-transform: uppercase;
     transition: 0.3s;
 }
 
 .navbar a i,
 .navbar a:focus i {
     font-size: 12px;
     line-height: 0;
     margin-left: 5px;
 }
 
 .navbar a:hover,
 .navbar .active,
 .navbar .active:focus,
 .navbar li:hover>a {
     color: #8cb58c;
 }
 
 .navbar .dropdown ul {
     display: block;
     position: absolute;
     left: 14px;
     top: calc(100% + 30px);
     margin: 0;
     padding: 10px 0;
     z-index: 99;
     opacity: 0;
     visibility: hidden;
     background: #fff;
     box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
     transition: 0.3s;
 }
 
 .navbar .dropdown ul li {
     min-width: 200px;
 }
 
 .navbar .dropdown ul a {
     padding: 10px 20px;
     text-transform: none;
     color: #666666;
 }
 
 .navbar .dropdown ul a i {
     font-size: 12px;
 }
 
 .navbar .dropdown ul a:hover,
 .navbar .dropdown ul .active:hover,
 .navbar .dropdown ul li:hover>a {
     color: #8cb58c;
 }
 
 .navbar .dropdown:hover>ul {
     opacity: 1;
     top: 100%;
     visibility: visible;
 }
 
 .navbar .dropdown .dropdown ul {
     top: 0;
     left: calc(100% - 30px);
     visibility: hidden;
 }
 
 .navbar .dropdown .dropdown:hover>ul {
     opacity: 1;
     top: 0;
     left: 100%;
     visibility: visible;
 }
 
 @media (max-width: 1366px) {
     .navbar .dropdown .dropdown ul {
         left: -90%;
     }
     .navbar .dropdown .dropdown:hover>ul {
         left: -100%;
     }
 }
 /**
* Mobile Navigation 
*/
 
 .mobile-nav-toggle {
     color: #fff;
     font-size: 28px;
     cursor: pointer;
     display: none;
     line-height: 0;
     transition: 0.5s;
 }
 
 @media (max-width: 991px) {
     .mobile-nav-toggle {
         display: block;
     }
     .navbar ul {
         display: none;
     }
 }
 
 .navbar-mobile {
     position: fixed;
     overflow: hidden;
     top: 0;
     right: 0;
     left: 0;
     bottom: 0;
     background: rgba(26, 26, 26, 0.9);
     transition: 0.3s;
     z-index: 999;
 }
 
 .navbar-mobile .mobile-nav-toggle {
     position: absolute;
     top: 15px;
     right: 15px;
 }
 
 .navbar-mobile ul {
     display: block;
     position: absolute;
     top: 55px;
     right: 15px;
     bottom: 15px;
     left: 15px;
     padding: 10px 0;
     background-color: #fff;
     overflow-y: auto;
     transition: 0.3s;
 }
 
 .navbar-mobile a,
 .navbar-mobile a:focus {
     padding: 10px 20px;
     font-size: 15px;
     color: #333333;
 }
 
 .navbar-mobile a:hover,
 .navbar-mobile .active,
 .navbar-mobile li:hover>a {
     color: #8cb58c;
 }
 
 .navbar-mobile .getstarted,
 .navbar-mobile .getstarted:focus {
     margin: 15px;
 }
 
 .navbar-mobile .dropdown ul {
     position: static;
     display: none;
     margin: 10px 20px;
     padding: 10px 0;
     z-index: 99;
     opacity: 1;
     visibility: visible;
     background: #fff;
     box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
 }
 
 .navbar-mobile .dropdown ul li {
     min-width: 200px;
 }
 
 .navbar-mobile .dropdown ul a {
     padding: 10px 20px;
 }
 
 .navbar-mobile .dropdown ul a i {
     font-size: 12px;
 }
 
 .navbar-mobile .dropdown ul a:hover,
 .navbar-mobile .dropdown ul .active:hover,
 .navbar-mobile .dropdown ul li:hover>a {
     color: #8cb58c;
 }
 
 .navbar-mobile .dropdown>.dropdown-active {
     display: block;
 }
 /*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
 
 #hero {
     width: 100%;
     height: 100vh;
     background: #000;
     overflow: hidden;
     position: relative;
 }
 
 @media (max-height: 500px) {
     #hero {
         height: 150vh;
     }
 }
 
 #hero .carousel,
 #hero .carousel-inner,
 #hero .carousel-item,
 #hero .carousel-item::before {
     position: absolute;
     top: 0;
     right: 0;
     left: 0;
     bottom: 0;
 }
 
 #hero .carousel-item {
     background-size: cover;
     background-position: center;
     background-repeat: no-repeat;
 }
 
 #hero .carousel-item::before {
     content: "";
     background-color: rgba(0, 0, 0, 0.7);
 }
 
 #hero .carousel-container {
     display: flex;
     justify-content: center;
     align-items: center;
     position: absolute;
     bottom: 0;
     top: 70px;
     left: 50px;
     right: 50px;
 }
 
 #hero .container {
     text-align: center;
 }
 
 #hero h2 {
     color: #fff;
     font-size: 88px;
     font-weight: 700;
 }
 
 @media (max-width: 768px) {
     #hero h2 {
         font-size: 58px;
     }
 }
 
 #hero p {
     width: 80%;
     margin: 0 auto 30px auto;
     color: #fff;
 }
 
 @media (min-width: 1024px) {
     #hero p {
         width: 60%;
         font-size: 24px;
     }
 }
 
 #hero .carousel-fade {
     overflow: hidden;
 }
 
 #hero .carousel-fade .carousel-inner .carousel-item {
     transition-property: opacity;
 }
 
 #hero .carousel-fade .carousel-inner .carousel-item,
 #hero .carousel-fade .carousel-inner .active.carousel-item-start,
 #hero .carousel-fade .carousel-inner .active.carousel-item-end {
     opacity: 0;
 }
 
 #hero .carousel-fade .carousel-inner .active,
 #hero .carousel-fade .carousel-inner .carousel-item-next.carousel-item-start,
 #hero .carousel-fade .carousel-inner .carousel-item-prev.carousel-item-end {
     opacity: 1;
     transition: 0.5s;
 }
 
 #hero .carousel-fade .carousel-inner .carousel-item-next,
 #hero .carousel-fade .carousel-inner .carousel-item-prev,
 #hero .carousel-fade .carousel-inner .active.carousel-item-start,
 #hero .carousel-fade .carousel-inner .active.carousel-item-end {
     left: 0;
     transform: translate3d(0, 0, 0);
 }
 
 #hero .carousel-control-prev,
 #hero .carousel-control-next {
     width: 10%;
 }
 
 @media (min-width: 1024px) {
     #hero .carousel-control-prev,
     #hero .carousel-control-next {
         width: 5%;
     }
 }
 
 #hero .carousel-control-next-icon,
 #hero .carousel-control-prev-icon {
     background: none;
     font-size: 32px;
     line-height: 1;
 }
 
 #hero .carousel-indicators li {
     cursor: pointer;
     list-style-type: none;
 }
 
 #hero .btn-get-started {
     font-weight: 500;
     font-size: 16px;
     letter-spacing: 1px;
     display: inline-block;
     padding: 8px 32px;
     border-radius: 50px;
     transition: 0.5s;
     margin: 10px;
     color: #fff;
     background: #8cb58c;
 }
 
 #hero .btn-get-started:hover {
     background: #fff;
     color: #8cb58c;
 }
/*--------------------------------------------------------------
# Sections - Dark Theme
--------------------------------------------------------------*/

section {
    overflow: hidden;
    padding: 100px 0;
    position: relative;
 }

/* Sections Header - Dark Theme */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

/* Stylish Heading */
.section-header h3 {
    font-size: 42px;
    color: #f5f5f5; /* Light text for contrast */
    text-transform: uppercase;
    font-weight: 700;
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #1e1e1e, #2a2a2a); /* Dark gradient */
    border-radius: 12px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 255, 127, 0.1); /* Subtle neon glow */
    letter-spacing: 2px;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    border: 2px solid #00ff7f; /* Neon green */
}

/* Animated Decorative Bars */
.section-header h3::before,
.section-header h3::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 4px;
    background: #00ff7f;
    bottom: 0;
    transition: all 0.4s ease-in-out;
}

.section-header h3::before {
    left: 50%;
    transform: translateX(-50%);
}

.section-header h3::after {
    right: 50%;
    transform: translateX(50%);
}

.section-header h3:hover::before,
.section-header h3:hover::after {
    width: 100%;
    background: #f0e5c8; /* Muted gold */
}

/* Hover Effect */
.section-header h3:hover {
    background: linear-gradient(135deg, #2a2a2a, #3a3a3a);
    box-shadow: 0 8px 20px rgba(0, 255, 127, 0.2);
    transform: translateY(-3px);
    border-color: #f0e5c8;
}

/* Section Description */
.section-header p {
    font-size: 18px;
    color: #cccccc; /* Light grey for readability */
    max-width: 700px;
    margin: 20px auto 0;
    line-height: 1.8;
    font-weight: 400;
}

/* Section Background */
.section-bg {
    padding: 120px 0;
    position: relative;
    border-radius: 15px;
    box-shadow: inset 0 0 30px rgba(0, 255, 127, 0.1);
}

/*--------------------------------------------------------------
# Featured Services - Dark Theme
--------------------------------------------------------------*/

#featured-services {
    background: #000;
}

#featured-services .box {
    padding: 30px 20px;
    background: #1e1e1e;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#featured-services .box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 255, 127, 0.3); /* Neon glow effect */
}

/* Background Gradient */
#featured-services .box-bg {
    background-image: linear-gradient(0deg, #000000 0%, #242323 50%, #000000 100%);
}

/* Icons */
#featured-services i {
    color: #00ff7f; /* Neon green */
    font-size: 48px;
    display: inline-block;
    line-height: 1;
    transition: color 0.3s ease;
}

#featured-services .box:hover i {
    color: #f0e5c8; /* Muted gold on hover */
}

/* Headings */
#featured-services h4 {
    font-weight: 400;
    margin: 15px 0;
    font-size: 18px;
    color: #f5f5f5;
}

#featured-services h4 a {
    color: #ffffff;
}

#featured-services h4 a:hover {
    color: #00ff7f;
}

/* Paragraphs */
#featured-services p {
    font-size: 14px;
    line-height: 24px;
    color: #cccccc;
    margin-bottom: 0;
}


/* About Us Section */
#about {
    padding: 100px 0;
    position: relative;
 }

#about .container {
    position: relative;
    z-index: 10;
}

#about .about-cols {
    display: flex;
    gap: 30px;
    justify-content: center;
}

#about .about-col {
    background: rgba(30, 30, 30, 0.8); /* Glassmorphism effect */
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#about .about-col:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 255, 127, 0.3);
}

#about .about-col .icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6fa06f, #8cb58c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 255, 127, 0.5);
}

#about .about-col .icon i {
    font-size: 36px;
    color: #fff;
}

#about .about-col:hover .icon {
    background: transparent;
    border: 2px solid #00ff7f;
    box-shadow: 0 0 15px rgba(0, 255, 127, 0.8);
}

#about .about-col:hover .icon i {
    color: #00ff7f;
}

#about .about-col h2 {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff; /* White text */
    margin-bottom: 20px;
}

#about .about-col p {
    font-size: 18px;
    color: #dddddd; /* Light grey for readability */
    line-height: 1.6;
}

/*--------------------------------------------------------------
# Founder Section - Dark Theme
--------------------------------------------------------------*/

.founder {
     padding: 80px 0;
    border-radius: 15px;
 }

.founder-title {
    font-size: 36px;
    font-weight: 700;
    color: #f5f5f5; /* Light text */
    text-align: center;
    position: relative;
    padding-bottom: 10px;
    border-bottom: 3px solid #00ff7f; /* Neon green */
    display: inline-block;
}

.founder-img-wrapper {
    text-align: center;
    padding: 20px;
}

.founder-img-wrapper img {
    max-width: 100%;
    border-radius: 15px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.founder-img-wrapper img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 255, 127, 0.2); /* Neon green glow */
}

.founder-message {
    background: #222; /* Darker card */
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 255, 127, 0.1);
}

.founder-message p {
    font-size: 18px;
    color: #ddd; /* Light text */
    line-height: 1.6;
    margin-bottom: 15px;
}

.founder-name {
    font-size: 20px;
    font-weight: bold;
    color: #00ff7f; /* Neon green */
}

/*--------------------------------------------------------------
# Services Section - Dark Theme
--------------------------------------------------------------*/

.services .card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 255, 127, 0.1); /* Subtle neon glow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 20px;
    background: linear-gradient(135deg, #1e1e1e, #2a2a2a);
    overflow: hidden;
    position: relative;
}

.services .card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #00ff7f, #4c874c); /* Neon green */
}

.services .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 255, 127, 0.3);
    background: linear-gradient(135deg, #2a2a2a, #3a3a3a);
}

.services .card-body {
    text-align: center;
    padding: 30px;
    position: relative;
}

.services .card-title {
    font-size: 22px;
    color: #f5f5f5; /* Light text */
    font-weight: 700;
}

.services .card-text {
    font-size: 16px;
    color: #cccccc; /* Light gray */
    line-height: 1.6;
}

/* Bootstrap Icon Styling */
.services i {
    transition: transform 0.3s ease, color 0.3s ease;
    color: #00ff7f; /* Neon green */
}

.services .card:hover i {
    transform: scale(1.2);
    color: #f0e5c8; /* Muted gold */
}

/*--------------------------------------------------------------
# Call To Action Section - Dark Theme
--------------------------------------------------------------*/

#call-to-action {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.95)), url(../img/cta.jpg) fixed center center;
    background-size: cover;
    padding: 80px 0;
    color: #fff;
    position: relative;
}

#call-to-action .container {
    max-width: 700px;
    margin: auto;
}

#call-to-action .cta-title {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    border-bottom: 3px solid #00ff7f;
}

#call-to-action .cta-text {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #ddd;
}

/* CTA Button */
#call-to-action .cta-btn {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    transition: all 0.4s ease;
    margin-top: 15px;
    border: 2px solid #00ff7f;
    color: #fff;
    background: #00ff7f;
    text-decoration: none;
}

#call-to-action .cta-btn:hover {
    background: transparent;
    color: #00ff7f;
    box-shadow: 0 0 15px rgba(0, 255, 127, 0.5); /* Glowing effect */
}

/*--------------------------------------------------------------
# Facts Section - Dark Theme
--------------------------------------------------------------*/

#facts {
     padding: 80px 0;
    position: relative;
    overflow: hidden;
}

#facts .fact-box {
    background: #222;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 255, 127, 0.1);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 350px;
    margin: auto;
}

#facts .fact-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 255, 127, 0.3);
}

#facts .fact-icon {
    width: 60px;
    height: 60px;
    background: #00ff7f; /* Neon Green */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #222;
    font-size: 28px;
    margin-right: 15px;
}

#facts .counters span {
    font-size: 50px;
    font-weight: 700;
    color: #fff;
}

#facts .counters p {
    font-size: 18px;
    font-weight: 500;
    color: #ccc;
    margin-top: -5px;
}

/*--------------------------------------------------------------
# Clients Section - Dark Theme
--------------------------------------------------------------*/

#clients {
     padding: 60px 0;
}

#clients img {
    opacity: 0.7;
    transition: 0.3s;
}

#clients img:hover {
    opacity: 1;
}

#clients .swiper-pagination {
    margin-top: 30px;
    position: relative;
}

#clients .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #333;
    opacity: 1;
    border: 1px solid #00ff7f;
}

#clients .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #00ff7f;
}

/*--------------------------------------------------------------
# Testimonials Section - Dark Theme
--------------------------------------------------------------*/

#testimonials {
     padding: 60px 0;
}

#testimonials .section-header {
    margin-bottom: 40px;
    color: #fff;
}

#testimonials .testimonials-carousel,
#testimonials .testimonials-slider {
    overflow: hidden;
}

#testimonials .testimonial-item {
    text-align: center;
    background: #222;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 255, 127, 0.1);
}

#testimonials .testimonial-item .testimonial-img {
    width: 120px;
    border-radius: 50%;
    border: 4px solid #00ff7f;
    margin: 0 auto;
}

#testimonials .testimonial-item h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: #fff;
}

#testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #aaa;
    margin: 0 0 15px 0;
}

#testimonials .testimonial-item .quote-sign-left {
    margin-top: -15px;
    padding-right: 10px;
    display: inline-block;
    width: 37px;
    filter: invert(1);
}

#testimonials .testimonial-item .quote-sign-right {
    margin-bottom: -15px;
    padding-left: 10px;
    display: inline-block;
    max-width: 100%;
    width: 37px;
    filter: invert(1);
}

#testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 auto 15px auto;
    color: #ddd;
}

@media (min-width: 992px) {
    #testimonials .testimonial-item p {
        width: 80%;
    }
}

#testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

#testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #333;
    opacity: 1;
    border: 1px solid #00ff7f;
}

#testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #00ff7f;
}

 /* Contact Section
--------------------------------*/
 
/*--------------------------------------------------------------
# Contact - Dark Theme
--------------------------------------------------------------*/

#contact {
    padding: 60px 0;
     color: #ddd;
}


#contact .contact-info {
 
    margin-bottom: 80px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 15px 25px rgba(0, 255, 127, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease-in-out;
}

#contact .contact-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 255, 127, 0.3);
}

#contact .contact-info i {
    font-size: 48px;
    display: inline-block;
    margin-bottom: 10px;
    color: #00ff7f;
}
 
#contact .contact-info address,
#contact .contact-info p {
    margin-bottom: 0;
    color: #bbb;
}

#contact .contact-info h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: bold;
    text-transform: uppercase;
    color: #00ff7f;
}

#contact .contact-info a {
    color: #bbb;
    text-decoration: none;
    transition: 0.3s ease-in-out;
}

#contact .contact-info a:hover {
    color: #6fa06f;
}

#contact .contact-address,
#contact .contact-phone,
#contact .contact-email {
    margin-bottom: 20px;
        border: solid 2px #fff;
        border-radius: 10px;
    padding: 10px;


}

@media (min-width: 768px) {
    #contact .contact-address,
    #contact .contact-phone,
    #contact .contact-email {
        padding: 20px 0;
    }
}

/*
@media (min-width: 768px) {
    #contact .contact-phone {
        border-left: 1px solid #444;
        border-right: 1px solid #444;
    }
}
*/

 #contact .php-email-form {
    padding: 30px;
/*    background: #222;*/
    border: 2px solid #fff;
    border-radius: 10px;
}

#contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
    border-radius: 5px;
}

#contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #00ff7f;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    border-radius: 5px;
}

#contact .php-email-form .loading {
    display: none;
    background: #444;
    text-align: center;
    padding: 15px;
    border-radius: 5px;
}


.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid green;
    border-top-color: #fff;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
}

#contact .php-email-form input,
#contact .php-email-form textarea {
    padding: 10px 14px;
    background: #fff;
    color: #000;
    border: 1px solid #fff;
    font-size: 15px;
    border-radius: 5px;
}

/*
#contact .php-email-form input:focus,
#contact .php-email-form textarea:focus {
    background-color: #444;
    border-color: #8cb58c;
}
*/


}

.contact .php-email-form input {
    height: 44px;
}

.contact .php-email-form textarea {
    padding: 10px 12px;
}

#contact .php-email-form button[type=submit] {
    background: #00ff7f;
    border-radius: 10px;
    padding: 10px 30px;
    color: #000;
    transition: 0.4s;
    cursor: pointer;
    border: none;
}

#contact .php-email-form button[type=submit]:hover {
    background: #6fa06f;
    color: #fff;
}
 
@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.map-container {
        position: relative;
        width: 100%;
        max-width: 800px; /* Adjust max width as needed */
        margin: 0 auto;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
    }

    .map-container iframe {
        width: 100%;
        height: 400px; /* Default height */
        border: 0;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
        .map-container iframe {
            height: 300px;
        }
    }

    @media (max-width: 480px) {
        .map-container iframe {
            height: 250px;
        }
    }
/*--------------------------------------------------------------
# Footer - Modern & Creative Dark Theme Redesign
--------------------------------------------------------------*/

#footer {
     padding: 50px 0;
    color: #ddd;
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    box-shadow: 0 -5px 20px rgba(255, 255, 255, 0.05);
}

/* Footer Top Section */
#footer .footer-top {
    padding: 50px 0;
    border-top: 2px solid #444;
    border-bottom: 2px solid #444;
}

/* Footer Brand/Info */
#footer .footer-info {
    margin-bottom: 30px;
}

#footer .footer-info h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #00ff7f;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

#footer .footer-info p {
    font-size: 16px;
    line-height: 1.8;
    color: #fff;
    max-width: 400px;
    margin: 0 auto;
}

/* Social Links */
#footer .social-links {
    margin-top: 20px;
}

#footer .social-links a {
    font-size: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #00ff7f;
    color: #000;
    margin: 0 8px;
    border-radius: 50%;
    width: 62px;
    height: 62px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(140, 181, 140, 0.3);
}

#footer .social-links a:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(140, 181, 140, 0.4);
}

/* Footer Links */
#footer .footer-links h4 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
}

#footer .footer-links ul {
    list-style: none;
    padding: 0;
}

#footer .footer-links ul li {
    padding: 8px 0;
    transition: all 0.3s ease-in-out;
}

#footer .footer-links ul i {
    color: #8cb58c;
    font-size: 18px;
    margin-right: 10px;
}

#footer .footer-links ul a {
    color: #bbb;
    font-size: 16px;
    text-decoration: none;
    transition: 0.3s ease-in-out;
}

#footer .footer-links ul a:hover {
    color: #6fa06f;
    transform: translateX(5px);
}

/* Footer Contact */
#footer .footer-contact {
    margin-top: 30px;
}

#footer .footer-contact p {
    font-size: 16px;
    line-height: 1.8;
    color: #bbb;
}

/* Copyright */
#footer .copyright {
    text-align: center;
    padding-top: 30px;
    font-size: 15px;
    color: #999;
}

#footer .credits {
    text-align: center;
    font-size: 14px;
    color: #aaa;
}

/* Responsive Design */
@media (max-width: 768px) {
    #footer {
        text-align: center;
    }
    
    #footer .footer-links ul li {
        justify-content: center;
    }
}
