/* Common Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
  img {
    -webkit-user-drag: none;
    user-drag: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
  }


:root {
    --primary-color: #46a1d1;
    --secondary-color: #033149;
    --dark-color: #333;
    --light-color: #f4f4f4;
    --white: #fff;
    --black: #000;
}

body {
    line-height: 1.6;
    color: var(--dark-color);
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.btn-secondary {
    background: var(--secondary-color);
}

.btn-secondary:hover {
    background: #e6951a;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: var(--primary-color);
}

.section-padding {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

/* Header Styles */


/* Mobile Menu */
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Footer Styles */
footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-column h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 20px;

}

/* banner styles */
.banner {
    background-size: cover;
    background-position: center;
    height: 85vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    margin-top: 70px;
    animation: slideshow 15s infinite ease-in-out;
}

/* Background Slideshow Animation */
@keyframes slideshow {
    0% {
        background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/solar1.jpg');
    }
    33% {
        background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/solar2.jpg');
    }
    66% {
        background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/solar3.jpg');
    }
    100% {
        background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/solar4.jpg');
    }
}

.banner-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.banner h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.banner p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Services Styles */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card i {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Testimonials Styles */
.testimonials {
  background-color: white;
  padding: 60px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

.section-title {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 40px;
  font-weight: 700;
  color: #46a1d1; /* Primary blue accent */
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: #fefefe;
  padding: 30px 25px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(10, 116, 218, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(10, 116, 218, 0.2);
}

.stars {
  color: #fbbf24; /* Gold color */
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.testimonial-card p {
  font-style: normal;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  flex-grow: 1;
  color: #555;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.client-info img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #0a74da;
  flex-shrink: 0;
}

.client-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  color: #0a74da;
}

.client-info span {
  font-size: 0.9rem;
  color: #777;
}

/* Contact CTA Styles */
.contact-cta {
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 60px 20px;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.cta-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.contact {
    background-color: #ffffff;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    align-items: flex-start;
}

.contact-info,
.contact-form {
    flex: 1 1 45%;
    min-width: 300px;
}

.contact-info h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-info p {
    color: #666;
    margin-bottom: 20px;
}

.contact-details {
    margin-bottom: 20px;
}

.contact-detail {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-icon {
    background: var(--primary-color);
    color: #fff;
    padding: 12px;
    border-radius: 50%;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    font-size: 1.2rem;
}

.contact-detail h4 {
    margin: 0;
    color: var(--primary-color);
}

.contact-detail p {
    margin: 5px 0 0;
    color: #444;
}

.social-links {
    margin-top: 20px;
}

.social-link {
    margin-right: 15px;
    font-size: 1.4rem;
    color: var(--primary-color);
    transition: color 0.3s;
}

.social-link:hover {
    color: var(--secondary-color);
}

/* Form Styling */
.contact-form form {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

/* About Section */
.about-section {
    background: #ffffff;
    padding: 0px 0;
    padding-bottom: 100px;
}

.about-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 0 20px;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-text p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.7;
}

.about-img img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(116, 60, 60, 0.1);
}

.about-features {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.feature-box {
    background: #fff;
    border: 1px solid #ddd;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box h4 {
    color: var(--primary-color);
    margin-top: 10px;
}

.feature-box img {
    height: 40px;
    color: #033149;
}


/* Banner Images */
.about-banner-img,
.contact-banner-img {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('../images/solar-about.jpeg') no-repeat center center/cover;
    color: var(--white);
    text-align: center;
    padding: 150px 20px;
    margin-top: 67px;
}

.contact-banner-img {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                     url('../images/solar-contact.jpeg');
}

.about-banner-img h1,
.contact-banner-img h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.about-banner-img p,
.contact-banner-img p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Map */
.map-container {
    width: 100%;
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
    margin-top: 40px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .navbar {
        padding: 15px 30px;
    }
    
    .banner h1 {
        font-size: 3rem;
    }
    
    .about-container {
        gap: 30px;
    }
    .logo {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 35px 20px;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.95);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: all 0.5s ease;
        padding: 0;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .banner {
        height: 80vh;
        margin-top: 70px;
    }
    
    .banner h1 {
        font-size: 2.5rem;
    }
    
    .banner p {
        font-size: 1rem;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-img img {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .service-card:nth-child(4),
    .service-card:nth-child(5) {
        grid-column: auto;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-banner-img h1,
    .contact-banner-img h1 {
        font-size: 2.5rem;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .contact-info,
    .contact-form {
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {
    .banner h1 {
        font-size: 2rem;
    }
    
    .banner p {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-banner-img h1,
    .contact-banner-img h1 {
        font-size: 2rem;
    }
    
    .about-banner-img p,
    .contact-banner-img p {
        font-size: 1rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-form input[type="email"] {
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
    
    .map-container {
        height: 300px;
    }
}

/* Logo Image - Base Styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25%;
  position: fixed;
  width: 100%;
  top: 0;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 999;
  transition: all 0.3s ease;
}

.logo-container {
  flex: 1;
}

.logo {
  height: auto;
  max-height: 80px;
  width: auto;
  max-width: 300px;
  object-fit: contain;
  transition: all 0.3s ease;
  padding-top: 7px;
}

.nav-links {
  display: flex;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

.call-btn {
  padding: 8px 18px;
  background: #048b40;
  color: #fff;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  margin-left: 20px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: #000;
  transition: all 0.3s ease-in-out;
}

.hamburger.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 1920px) {
  .navbar {
    padding: 15px 20%;
  }

  .logo {
    max-height: 40px;
    max-width: 200px;
  }
}
@media (max-width: 992px) {
  .navbar {
    padding: 15px 1%;
  }

  .logo {
    max-height: 40px;
    max-width: 200px;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
    order: 3;
  }

  .nav-links {
    position: fixed;
    top: 67px;
    left: -100%;
    width: 100%;
    background: rgba(219, 219, 219, 0.95);
    flex-direction: column;
    gap: 0;
    text-align: center;
    transition: 0.5s;
    padding: 2px 0;
    backdrop-filter: blur(10px);
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links li {
    padding: 15px 0;
  }

  .call-btn {
    display: none;
  }

  .logo {
    max-height: 35px;
    max-width: 210px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 15px 5%;
  }

  .logo {
    max-height: 30px;
    max-width: 200px;
  }
}
/* Show the button only inside hamburger menu on mobile */
.mobile-call-button {
  display: none;
  padding-top: 10px;
}

@media (max-width: 768px) {
  .mobile-call-button {
    display: block;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}


.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #007BFF;
}

.service-card p {
  font-size: 0.95rem;
  color: #333;
}
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

#how-it-works {
  padding: 80px 0;
  background-color: #f9f9f9;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #46a1d1;

}

.how-it-works-img img {
  width: 100%;
  max-width: 1000px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
  padding-top: 50px;
}

.why-choose-us {
  background-color: #ffffff;
  padding: 60px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #222;
  text-align: center;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  color:#46a1d1;
  padding-bottom: 30px;
}

.section-subtitle {
  font-size: 1.15rem;
  margin-bottom: 40px;
  color: #000000;
}

.usp-grid {
    
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

@media (min-width: 1200px) {
  .usp-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}


.usp-card {
  background: white;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(10, 116, 218, 0.12);
  transition: box-shadow 0.3s ease;
  cursor: default;
}

.usp-card:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.usp-icon {
  font-size: 2.8rem;
  color: #0a74da;
  margin-bottom: 18px;
}

.usp-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #0a74da;
}

.usp-card p {
  font-size: 1rem;
  line-height: 1.5;
  color: #444;
}

/* Wrapper makes the entire section light grey */
.faq-section-wrapper {
  background: #f9f9f9;
  padding: 80px 20px;
}

/* FAQ container stays centered and max-width */
.faq {
  max-width: 900px;
  margin: 0 auto;
  color: #222;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #46a1d1;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(10, 116, 218, 0.1);
  overflow: hidden;
  background: white; /* Box background */
}

.faq-question {
  width: 100%;
  background: #46a1d1;
  color: white;
  padding: 18px 20px;
  font-size: 1.15rem;
  border: none;
  text-align: left;
  cursor: pointer;
  outline: none;
  transition: background 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Hover and active states */
.faq-question:hover,
.faq-question.active {
  background: #065bb5;
}

/* Marked as read */
.faq-question.read {
  background: #065bb5;
  color: white;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: white;
  padding: 0 20px;
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
  margin: 15px 0;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 15px 20px;
}
body {
 
  color: #f9f9f9;
  font-family: 'Segoe UI', sans-serif;
}

.contact-section {
  padding: 80px 30px 30px;
  background-color: #0b1d3a;
  color: #fff;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.contact-text {
  flex: 1;
  min-width: 300px;
}

.contact-text h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.client-quote blockquote {
  font-style: italic;
  color: #ccc;
  margin: 20px 0 5px;
}

.client-quote cite {
  color: #aaa;
  font-size: 14px;
}

.contact-form-card {
  flex: 1;
  background-color: #fff;
  color: #000;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  min-width: 300px;
}

.contact-form-card h3 {
  margin-bottom: 20px;
  font-size: 22px;
}

.contact-form-card form input,
.contact-form-card form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
}

.input-group {
  display: flex;
  gap: 10px;
}

.contact-form-card form button {
  width: 100%;
  background-color: #0057ff;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

.contact-form-card form button:hover {
  background-color: #003fb3;
}

.footer {
  padding: 60px 30px 20px;
  background-color: #0b1d3a;
  color: #ccc;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  padding-bottom: 20px;
  border-bottom: 1px solid #333;
}

.footer-grid h4,
.footer-grid h3 {
  color: #fff;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
}

.footer-grid ul li {
  margin-bottom: 10px;
}

.footer-grid a {
  color: #ccc;
  text-decoration: none;
}

.footer-grid a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 20px;
  color: #666;
}








body {
  color: #f9f9f9;
  font-family: 'Segoe UI', sans-serif;
}
.contact-section {
  padding: 80px 30px 30px;
  background-color: #0b1d3a;
  color: #fff;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.contact-text {
  flex: 1;
  min-width: 300px;
}

.contact-text h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.client-quote blockquote {
  font-style: italic;
  color: #ccc;
  margin: 20px 0 5px;
}

.client-quote cite {
  color: #aaa;
  font-size: 14px;
}

.contact-form-card {
  flex: 0 0 40%;
  max-width: 420px;
  background-color: #fff;
  color: #000;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  min-width: 280px;
}

.contact-form-card h3 {
  margin-bottom: 20px;
  font-size: 22px;
}

.contact-form-card form input,
.contact-form-card form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
}

.input-group {
  display: flex;
  gap: 10px;
}

.contact-form-card button {
  width: 100%;
  padding: 12px;
  background-color: #0056ff;
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.contact-form-card button:hover {
  background-color: #0040cc;
}

/* Footer */
.footer {
  padding: 60px 30px 20px;
  background-color: #0b1d3a;
  color: #ccc;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  padding-bottom: 20px;
  border-bottom: 1px solid #333;
}

.footer-grid h4,
.footer-grid h3 {
  color: #fff;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
}

.footer-grid ul li {
  margin-bottom: 10px;
}

.footer-grid a {
  color: #ccc;
  text-decoration: none;
}

.footer-grid a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 17px;
  color: #666;
}

/* Swiper Styles */
.swiper {
  margin-top: 30px;
  background: #0b1d3a;
  padding: 20px;
  border-radius: 10px;
  max-width: 100%;
}

.swiper-slide {
  font-style: italic;
  color: #fff;
}

.reviewer {
  margin-top: 10px;
  font-weight: bold;
  font-size: 14px;
  color: #ccc;
}

/* Optional: Transition Overlay */
.transition-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #4CAF50;
  z-index: 9999;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.6s ease-in-out;
}

.transition-overlay.active {
  transform: scaleY(1);
  transform-origin: top;
}

.page-content {
  opacity: 1;
  transition: opacity 0.4s ease-in-out;
}

.page-content.fade-out {
  opacity: 0;
}
