@import 'utilities.css';

/* Font import */
@font-face {
    font-family: nunito-medium;
    src: url(Nunito/nunito-medium);
}

/* Root Variables */
:root {
    --light-white: #D8F3DD;
    --gradient-start: rgba(25, 172, 54, 0.94); /* #19AC36 with 94% opacity */
    --gradient-stop: 29%;
    --gradient-end: #469655; /* 100% opacity */
    --main-gradient: linear-gradient(to right, var(--gradient-start) var(--gradient-stop), var(--gradient-end) 100%);
    --text-heading: #143D20;
    --heading: #B0F4BD;
    --low-white: #B3E6BC;
    --view-button: #406c2e;
    --bg-shade-green: #19BE38;
    --title-happy: #19BE38;
    --title-mud: #D7DBC0;
    --bg-green: #51865C;
    --bg-white: #D9D9D9;
    --about-us: #797070;
    --bg-dark: #313030;
    --last-text: #FFFFFF;
}

/* Base Styles */
body {
    font-family: 'nunito', sans-serif;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    --webkit-font-smoothing: antialised;
}

/* Header Section */
header {
    background: var(--heading);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.container {
    max-width: 1152px;
    padding: 0 40px;
    margin: 0 auto;
}



header nav .right {
    display: flex;              /* puts items in a row */
    align-items: center;        /* vertically centers them */
    justify-content: flex-end;  /* aligns them to the right side */
}

header nav .right a {
    color: var(--text-heading);
    text-decoration: none;
    margin: 0 1rem;             /* balanced spacing left & right */
    text-transform: uppercase;
    transition: color .3s ease; /* smoother hover effect */
    font-size: 1.2rem;          /* slightly smaller for elegance */
    font-weight: 600;           /* use a standard professional weight */
    padding: 0.3rem 0;          /* more breathing space */
}

header nav .right a:hover {
    color: var(--accent-color); /* highlight on hover */
}



/* ============================= */
/* 🍔 HAMBURGER MENU STYLING */
/* ============================= */

/* Basic navbar */
/* /* Navbar */
.navbar {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #c8f3c8;
  /* position: relative; */
  z-index: 1000;
}



/* Brand logo */
.branding {
  display: flex;
  align-items: center;
  gap: 10px;
}

.branding img {
  width: 200px;
  height: auto;
  margin-left: 200px;
}

.branding span {
  font-size: 20px;
  font-weight: 600;
  color: #0a7a2f;
}

/* Menu */
.nav-menu {
  display: flex;
  gap: 25px;
  margin-right: 100px;
  width: fit-content;
  font-size: 20px;
  pointer-events: auto;
}

.nav-menu :hover {
  cursor: pointer;
  color: #18d73d;
  transition: all 0.3s ease;
}


.nav-menu a {
  text-decoration: none;
  color: #0a7a2f;
  font-weight: 500;
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: #0a7a2f;
}

/* 🔽 Mobile & Tablet */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .branding img {
    width: 150px;
    margin-left: 0;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 65px;
    right: 0;
    width: 250px;
    background: #c8f3c8;
    flex-direction: column;
    padding: 15px;
    gap: 15px;
    pointer-events: auto;
  }

  .nav-menu.active {
    display: flex;

  }
}






header nav .right a:hover {
    color: var(--bg-shade-green);
}

header nav {
    padding: 0.05rem; /* vertical nav width */
  
}

header nav .branding {
    margin-right: 10rem;
}

header nav .branding img {
    /* e-center logo */
    align-items: center;
    margin-top: 1rem;
    width: 200px;
}

header nav .branding img:hover {
    cursor: pointer;
}

/* Responsive Design 📱 */
/* -------------------- */

/* Tablets (≤ 1024px) */
@media (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }

  header nav .branding {
    margin-right: 4rem;
  }

  header nav .right a {
    font-size: 1.1rem;
    margin-right: 1rem;
  }

  header nav .branding img {
    width: 160px;
  }
}

/* Mobile (≤ 768px) */
@media (max-width: 768px) {
  header nav {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1rem;
  }

  header nav .branding {
    margin: 0;
  }

  header nav .branding img {
    width: 130px;
    margin: 0;
  }

  header nav .right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
  }

  header nav .right a {
    margin: 0.3rem 0;
    font-size: 1rem;
  }
}

/* Small Phones (≤ 480px) */
@media (max-width: 480px) {
  header nav .right a {
    display: block;
    margin: 0.4rem 0;
    font-size: 0.9rem;
  }

  header nav .branding img {
    width: 130px;
  }
}



/* Hero Section */
.hero {
    background: linear-gradient(to right, var(--gradient-start) 29%, var(--gradient-end) 100%);
    padding: 20px 0px;
}

.hero .left h1 {
    color: var(--light-white);
    margin-left: 15rem;
    font-size: 4rem;
    line-height: 1;
    font-weight: 400;
    margin-bottom: 1rem;
}

.hero .left h6 {
    color: var(--last-text);
    margin-left: 15rem;
    font-size: 1.3rem;
    line-height: 1.3;
    font-weight: 300;
    margin-bottom: 0.5rem;
    margin-top: 1.6rem;
    margin-right: 15rem;
}

.hero .left button {
    background-color: var(--view-button);
    color: var(--light-white);
    padding: 20px 40px;
    font-size: 1.1rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 200;
    transition: background-color 0.3s ease;
    margin-left: 15rem;
    margin-top: 1rem;

}

.hero .left button:hover {
    background-color: #159c2c;
}

.hero .left button a{
    text-decoration: none;
    color: var(--light-white);
    }

    
.hero .right img {
    align-items: center;
    margin-right: 5rem;
    width: 600px;
}


/* Responsive Design 📱 */
/* -------------------- */

/* Tablets (≤ 1024px) */
@media (max-width: 1024px) {
  .hero .left h1 {
    margin-left: 5rem;
    font-size: 3rem;
  }

  .hero .left h6,
  .hero .left button {
    margin-left: 5rem;
    margin-right: 5rem;
  }

  .hero .right img {
    width: 400px;
    margin-right: 2rem;
  }
}

/* Mobile (≤ 768px) */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero .left h1 {
    margin: 0;
    font-size: 2.5rem;
  }

  .hero .left h6 {
    margin: 1rem auto;
    font-size: 1rem;
    line-height: 1.4;
  }

  .hero .left button {
    margin: 1rem auto;
    padding: 15px 30px;
    font-size: 1rem;
  }

  .hero .right img {
    width: 80%;
    margin: 1.5rem auto 0;
  }
}

/* Small Phones (≤ 480px) */
@media (max-width: 480px) {
  .hero .left h1 {
    font-size: 2rem;
  }

  .hero .left h6 {
    font-size: 0.9rem;
  }

  .hero .left button {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
}










/* Grid Section Wrapper */
.grids {
    background: var(--bg-white);
    padding-bottom: 10rem;
}

/* Filter Section */
.filter-section {
    align-items: center;
}

.filter-section h2 {
    margin-top: 2rem;
}

.heading-with-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.heading-with-icon h2 {
    /* models */
    font-size: 2.5rem;
    color: rgb(102, 118, 102)
}

.heading-with-icon img {
    width: 60px;
    height: auto;
    margin-top: 1.5rem;
/* our models section */
}

.heading-with-icon h2 span {
    /* our span section */
    color: var(--bg-shade-green);
    font-weight: bold;
}

/* Category Select */
.category-select {
    color: var(--bg-shade-green);
}

.filter-section select {
    margin-left: 10rem;
    padding: 10px 15px;
    border: 2px solid var(--bg-shade-green);
    color: var(--bg-shade-green);
    background-color: white;
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 0;
    width: fit-content;
    appearance: none;
    transition: all 0.3s ease;
}

.filter-section select:focus {
    outline: var(--bg-dark);
    box-shadow: 0 0 5px var(--bg-shade-green);
}

.filter-section option {
    background-color: white;
    color: var(--text-heading);
}

/* Models Grid */
.models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 30px;
    margin-top: 30px;
    padding: 0 10rem;
}

.model-card {
    background-color: #f9f9f9;
    padding: 10px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.model-card:hover {
    background-color: var(--bg-shade-green);
    color: rgb(255, 255, 255);
    transform: translateY(-5px);
}

.model-card img {
    width: 100%;
    max-height: 200px;
    object-fit: contain;
    margin-bottom: 15px;
}

.model-card p {
    display: none;
    font-size: 0.95rem;
    margin-top: 1px;
}

.model-card:hover p {
    color: var(--last-text);
    display: block;
    margin-bottom: 0.5rem;
}

/* ========================================
   PRODUCT GRID WITH HOVER OVERLAY
======================================== */
.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    padding: 20px;
    max-width: 1100px;
    margin: auto;
}

.grid-item {
    position: relative;
    text-align: center;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Product image */
.grid-item img {
    width: 100%;
    height: auto;
    display: block;
    border-bottom: 1px solid #ddd;
}

/* Title always visible */
.grid-item h3 {
    font-size: 1.2rem;
    margin: 10px 0;
    color: #333;
    position: relative;
    z-index: 1;
}

.grid-item:hover img {
  filter: blur(4px); /* ✨ Adjust value for more or less blur */
}

/* Overlay description hidden by default */
.grid-item p {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85); /* white overlay with transparency */
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    font-size: 1rem;
    text-align: center;
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 2;
}

/* Show overlay when hovering */
.grid-item:hover p {
    opacity: 1;
}




/* ============================= */
/* 📱 RESPONSIVE DESIGN STYLING  */
/* ============================= */

/* Medium Devices (Tablets ≤ 1024px) */
@media (max-width: 1024px) {
  .heading-with-icon h2 {
    font-size: 2rem;
  }

  .heading-with-icon img {
    width: 50px;
  }

  .grid-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    padding: 20px 40px;
  }

  .grid-item h3 {
    font-size: 1.1rem;
  }

  .grid-item p {
    font-size: 0.95rem;
    padding: 15px;
  }
}

/* Small Devices (Mobile ≤ 768px) */
@media (max-width: 768px) {
  .heading-with-icon {
    flex-direction: column;
    text-align: center;
  }

  .heading-with-icon h2 {
    font-size: 1.8rem;
  }

  .heading-with-icon img {
    width: 45px;
    margin-top: 0.5rem;
  }

  .grid-container {
    grid-template-columns: 1fr;
    padding: 10px 20px;
    gap: 20px;
  }

  .grid-item {
    border-radius: 12px;
  }

  .grid-item img {
    max-height: 250px;
    object-fit: cover;
  }

  .grid-item h3 {
    font-size: 1.1rem;
  }

  .grid-item p {
    font-size: 0.9rem;
  }
}

/* Extra Small Devices (Phones ≤ 480px) */
@media (max-width: 480px) {
  .heading-with-icon h2 {
    font-size: 1.5rem;
  }

  .grid-container {
    padding: 10px;
    grid-gap: 15px;
  }

  .grid-item h3 {
    font-size: 1rem;
  }

  .grid-item p {
    font-size: 0.85rem;
    padding: 10px;
  }
}









/* Main section */
.customer-hero {
  background-color: #2e8e41; /* Section background */
  padding: 60px 20px;
  text-align: center;
  min-height: 80vh; /* Makes section long vertically */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

/* Top heading and icon */
.heading-with-icon1 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

/* Heading text */
.heading-with-icon1 h2 {
  font-size: 2.5rem;
  color: #D2D9DE;
  margin: 0;
}

/* Highlighted span inside heading */
.heading-with-icon1 h2 span {
  color: #18D73D;
  font-weight: bold;
}

/* Icon image */
.heading-with-icon1 img {
  width: 80px;
  height: auto;
  margin-top: -1rem;
 
}

/* Optional description under heading */
.hero-description {
  max-width: 700px;
  margin-top: 20px;
  font-size: 1.2rem;
  color: #e0f2e9;
  line-height: 1.6;
}



/* Slider Container */
.testimonial-slider {
  position: relative;
  max-width: 950px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
}

/* Track holding all slides */
.testimonial-track {
  display: flex;
  transition: transform 0.8s ease-in-out;
}

/* Each Slide */
.testimonial-slide {
  display: flex;
  min-width: 100%;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 100px;
  box-sizing: border-box;
}

/* Image Section */
.testimonial-image {
  flex: 1;
  display: flex;
  justify-content: center;
  width: 300px;
}

.testimonial-image img {
  width: 300px;
  max-width: 1000px;
  border-radius: 8px;
  border: 4px solid #fff;
}

/* Text Section */
.testimonial-text {
  flex: 2;
  text-align: left;
  color: #fff;
}

.testimonial-text p {
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 15px;
}

.testimonial-text h4 {
  color: #d2d9de;
  font-weight: bold;
  font-size: 1rem;
}

/* Navigation Arrows */
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 2;
  border-radius: 50%;
}

.nav:hover {
  background: rgba(0, 0, 0, 0.7);
}

.prev {
  left: 5px;
}

.next {
  right: 5px;
}

/* Dots Indicator */
.dots {
  text-align: center;
  margin-top: 15px;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active {
  background: #18d73d;
  transition: background 0.3s ease;
}

















.trusted-brands {
  text-align: center;
  padding: 60px 20px;
  background-color: var(--bg-white);
  position: relative;
  overflow: hidden;

}

.heading-with-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.heading-with-icon h2 {
  font-size: 2.2em;
  margin: 0;
  color: #1d1d1d;
}

.heading-with-icon h2 span {
  color: #2e8e41;
}

.heading-with-icon img {
  width: 40px;
  height: auto;
}

/* Brand Image */
.brand-image {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.brand-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

.brand-image img:hover {
  transform: scale(1.02);
}

/* 🌿 Responsive Layout */
@media (max-width: 1024px) {
  .trusted-brands {
    padding: 50px 15px;
  }

  .heading-with-icon h2 {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .trusted-brands {
    padding: 40px 10px;
  }

  .heading-with-icon {
    flex-direction: column;
    gap: 6px;
  }

  .heading-with-icon h2 {
    font-size: 1.7em;
  }

  .brand-image {
    max-width: 95%;
  }
}

@media (max-width: 480px) {
  .heading-with-icon h2 {
    font-size: 1.5em;
  }

  .heading-with-icon img {
    width: 30px;
  }

  .brand-image img {
    width: 100%;
    border-radius: 8px;
  }
}




















/* ============================= */
/* 📱 RESPONSIVE DESIGN FOR TESTIMONIALS */
/* ============================= */

/* Tablet (≤1024px) */
@media (max-width: 1024px) {
  .testimonial-slider {
    max-width: 100%; 

  }

  .testimonial-slide {
    gap: 30px;
    padding: 50px 40px;
  }

  .testimonial-image img {
    width: 250px;
  }

  .testimonial-text p {
    font-size: 1.1rem;
  }
}






/* 🌿 Clean Professional Mobile Layout for Testimonials */
@media (max-width: 768px) {
  .customer-hero {
    background: linear-gradient(180deg, #2e8e41 0%, #1f7030 100%);
    padding: 50px 20px;
    text-align: center;
  }

  /* Center heading & icon */
  .heading-with-icon1 {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
  }

  .heading-with-icon1 h2 {
    font-size: 2rem;
    color: #fff;
    line-height: 1.3;
  }

  .heading-with-icon1 h2 span {
    color: #18D73D;
  }

  .heading-with-icon1 img {
    width: 45px;
    margin-top: 10px;
  }

  /* Hide arrows */
  .nav {
    display: none !important;
  }

  /* Main slider wrapper */
  .testimonial-slider {
    max-width: 95%;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding-bottom: 30px;
  }

  /* Stack image on top, text below */
  .testimonial-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    gap: 15px;
    padding: 25px 10px;
  }

  .testimonial-image {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .testimonial-image img {
    width: 85%;
    max-width: 300px;
    border-radius: 12px;
    border: 3px solid #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    object-fit: cover;
  }

  .testimonial-text {
    width: 90%;
    color: #f1f9f3;
  }

  .testimonial-text p {
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 15px;
    color: #eaf8ea;
  }

  .testimonial-text h4 {
    margin-top: 10px;
    color: #bdfcbf;
    font-size: 0.95rem;
  }

  /* Dots below testimonial */
  .dots {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
  }

  .dot {
    width: 10px;
    height: 10px;
    background: #bbb;
    border-radius: 50%;
    cursor: pointer;
  }

  .dot.active {
    background: #18d73d;
  }
}

/* Smaller phones */
@media (max-width: 480px) {
  .heading-with-icon1 h2 {
    font-size: 1.6rem;
  }

  .testimonial-image img {
    width: 90%;
    max-width: 260px;
  }

  .testimonial-text p {
    font-size: 0.95rem;
  }
}







/* Main section */
.about-us {
  margin-top: 1px;
  background-color: #2e8e41; /* Section background */
  padding: 60px 20px;
  text-align: center;
  min-height: 80vh; /* Makes section long vertically */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

/* Top heading and icon */
.heading-with-icon1 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  margin-top: -30px;
}

/* Heading text */
.heading-with-icon1 h2 {
  font-size: 2.5rem;
  color: #D2D9DE;
  margin: 0;
}

/* Highlighted span inside heading */
.heading-with-icon1 h2 span {
  color: #18D73D;
  font-weight: bold;
}

/* Icon image */
.heading-with-icon1 img {
  width: 80px;
  height: auto;
  margin-top: -1rem;
 
}
.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}






/* Section Styling */
.about-section {
  background-color: #228B22; /* Green background */
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}

.section-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 40px;
  color: #90ee90;
  display: inline-block;
}

/* Main Layout */
.about-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top:60px;
}

/* Left Side Stats */
.about-stats {
  display: flex;
  flex-direction: column;
  gap: 40px;
  text-align: left;
   margin-bottom: 50px;
}

.stat {
  width: 300px;
  position: relative;
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: #00ff66;
  margin: 0;
  border-bottom: 3px solid #fff;
  display: inline-block;
  padding-bottom: 5px;
  transition: color 0.9s ease;
}

.stat p {
  font-size: 1.5rem;
  margin-top: 5px;
  line-height: 1.4;
  color: var(--title-mud);
}

/* Right Side Map */
.about-map iframe {
  width: 500px;
  height: 500px; /* Perfect square */
  border: 3px solid #fff;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  margin-left: 200px;
  margin-right: -300px;
  margin-bottom: 50px;
}

/* Mobile & Tablet Responsive */
@media (max-width: 1024px) {
  .about-container {
    flex-direction: column; /* stack vertically */
    align-items: center;    /* center everything */
    gap: 50px;
  }

  .about-stats {
    text-align: center;
    align-items: center;
  }

  .stat {
    width: 80%;             /* responsive stat width */
  }

  .about-map {
    display: flex;
    justify-content: center; /* center the map */
    width: 100%;
    margin: 0;              /* remove any leftover margins */
  }

  .about-map iframe {
    max-width: 90%;         /* fit smaller screens */
    height: 400px;          /* adjust height */
    margin: 0 auto;         /* center iframe */
  }
}

@media (max-width: 768px) {
  .stat-number {
    font-size: 2.5rem;
  }

  .stat p {
    font-size: 1.2rem;
  }

  .about-map iframe {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .stat-number {
    font-size: 2.2rem;
  }

  .stat p {
    font-size: 1rem;
  }

  .about-map iframe {
    height: 280px;
  }
}




















/* Footer Section */
.social {
  background-color: #3a3838;
  color: #e0e0e0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px 60px;
  gap: 40px;
  flex-wrap: wrap;
}

/* Left Section */
.social-left h2 {
  color: #00ff66;
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.social-left a {
  text-decoration: underline;
  color: white;
}
.social-left a :hover {
  text-decoration: none;
  color:#18d73d;
}




.social-left p {
  font-size: 1rem;
  line-height: 1.5;
}

.social-left .contact-info p {
  font-size: 0.95rem;
  margin-top: 8px;
}

/* Center Section */
.social-center h2 {
  color: #00ff66;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.social-center ul {
  list-style: none;
  padding: 0;
}

.social-center li {
  margin-bottom: 12px;
}



.social-center a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #e0e0e0;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.social-center a i {
  font-size: 1.3rem;
  color: #00ff66;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-center a:hover {
  color: #00ff66;
}

.social-center a:hover i {
  transform: scale(1.2);
  color: #00ff66;
}

/* Right Section */
.social-right {
  max-width: 350px;
  text-align: right;
}

.social-right p {
  font-size: 2rem;
  font-style: italic;
  color: #ddd;
  line-height: 1.6;
  margin-bottom: 5px;

  /* Make the paragraph wider */
  max-width: 500px;  /* adjust this as needed */
  padding: 50px;      /* adds space around text */
  margin-left: auto;  /* center it if needed */
  margin-right: auto; /* center it if needed */
  text-align: center; /* center the text */
  margin-top: -50px;
}


.footer-bottom {
  text-align: center;
  padding: 20px 0;
  background-color: #313030;
}


@media (max-width: 768px) {
  .social {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .social-right {
    text-align: center;
  }
}



.footer {
  display: flex;
  justify-content: space-between; /* left-right alignment */
  align-items: center;
  padding: 70px 30px;
  background-color: #222; /* dark background */
  color: #fff;
  font-size: 20px;
  
}

.footer a {
  color: #38ce0e;
  text-decoration: none;
}


.footer a:hover {
  text-decoration: underline;
  color: #00ff66;
}

.footer-left, .footer-right {
  flex: 1;
}

.footer-left {
  text-align: left;
  color: rgb(15, 217, 45);
}

.footer-right {
  text-align: right;
}







/* Responsive Styles */
@media (max-width: 1024px) {
  .social {
    padding: 30px 40px;
    gap: 30px;
  }

  .social-right {
    max-width: 100%;
  }

  .social-right p {
    font-size: 1.1rem;
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .social {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 30px 20px;
  }

  .social-left, .social-center, .social-right {
    width: 100%;
    max-width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }

  .social-right p {
    font-size: 1rem;
    padding: 10px 0;
    margin-top: 0;
  }

  .footer {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
    gap: 15px;
  }

  .footer-left, .footer-right {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .social-left h2, .social-center h2 {
    font-size: 1.4rem;
  }

  .social-left p, .social-center a, .social-right p {
    font-size: 0.9rem;
  }

  .social {
    padding: 20px 10px;
    gap: 20px;
  }

  .footer {
    font-size: 0.9rem;
    padding: 20px 10px;
  }
}