@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400&display=swap');
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}
:root {
    --header-height: 80px;
}



body {
    font-family: 'Roboto', sans-serif;
  font-weight: 400; /* Regular */
  line-height: 1.6; /* Better readability ke liye */
  font-size: 16px;  /* Standard base size */
  color: #333;
      padding-top: var(--header-height);

}
/* Headings (property title, price etc.) */
h1, h2, h3, .property-title, .price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Fixed Header */
.header {
    background-color: #2c3e50; /* Dark slate gray */
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0.55rem 0;
}

.header.fixed {
    position: fixed;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 70px;
}
.logo {
    filter: brightness(0) invert(1);
}
.logo h1 {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
}
.logo  a  {
    text-decoration: none;
    color: white;
}
.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-list a {
    color: #ecf0f1; /* Light gray */
    text-decoration: none;
    transition: color 0.3s;
}

.nav-list a:hover {
    color: white;
}

.dropdown {
    position: relative;
}

.dropdown-icon {
    font-size: 0.8rem;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #34495e;
    min-width: 150px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0.5rem 1rem;
}

.dropdown-menu a {
    display: block;
    color: #ecf0f1;
}

.auth-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.login-btn {
    color: #ecf0f1;
    text-decoration: none;
    font-weight: 500;
}

.register-btn {
    background-color: #17a2b8; /* Teal */
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-right: 15px;
}

.register-btn:hover {
    background-color: #138496;
}

/* ===== Add Your Listing CTA Button ===== */

.add-listing-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    background: linear-gradient(135deg, #17a2b8, #138496);
    color: #ffffff;
    text-decoration: none;

    padding: 10px 20px;
    border-radius: 30px;

    font-size: 14.5px;
    font-weight: 600;

    box-shadow: 0 6px 18px rgba(23, 162, 184, 0.35);
    transition: all 0.3s ease;
        margin-right: 60px;

}

/* Icon style */
.add-listing-btn i {
    font-size: 13px;
}

/* Hover effect */
.add-listing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(23, 162, 184, 0.45);
    background: linear-gradient(135deg, #138496, #0f6f82);
    color: #ffffff;
}

/* Mobile adjustment */
@media (max-width: 768px) {
    .add-listing-btn {
        padding: 9px 16px;
        font-size: 14px;
        margin-right: 15px;
    }
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 0px; /* Account for fixed header height */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Add this for dark overlay on the hero image */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.734); /* Adjust opacity (0.4) for desired darkness; higher value = darker */
    z-index: 0; /* Sits above image but below content */
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    color: white;
    z-index: 1;
}

.welcome-text h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.highlight {
    color: #17a2b8;
}

.welcome-text p {
    font-size: 1.2rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.search-box {
    background-color: #002f497a; /* Semi-transparent dark blue */
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    min-width: 300px;
}

.search-box h2 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.search-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.search-form input,
.search-form select {
    padding: 0.8rem;
    border: none;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #2c3e50;
    font-size: 1rem;
}

.submit-btn {
    background-color: #17a2b8;
    color: white;
    border: none;
    padding: 0.8rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #138496;
}

.disclaimer,
.privacy {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
}

.privacy a {
    color: #17a2b8;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        position: relative;
    }
.hero{
    margin-top: -10px;

}
    .nav-list {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #2c3e50;
        flex-direction: column;
        padding: 1rem;
        display: none; /* Hidden by default on mobile */
    }

    .nav-list.active {
        display: flex;
    }

    .mobile-toggle {
        display: flex;
    }

    .auth-buttons {
        margin-left: auto;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding-top: 2rem;
    }

    .welcome-text h1 {
        font-size: 2rem;
    }

    .search-box {
        min-width: auto;
        width: 100%;
        max-width: 400px;
    }

    .search-form {
        gap: 0.8rem;
    }
}

@media (max-width: 480px) {
    .welcome-text h1 {
        font-size: 1.8rem;
    }

    .search-box {
        padding: 1.5rem;
    }

    .logo h1 {
        font-size: 1.5rem;
    }
    .logo img {
    height: 58px;
}
}

/* Most Popular Categories Section */
.popular-categories {
    padding: 4rem 0;
    background-color: #f8f9fa; /* Light gray background for contrast */
}

.popular-categories h2 {
    font-size: 2rem;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.subtitle {
    text-align: center;
    color: #666;
    font-size: 1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.category-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem; /* Emoji size */
    color: white;
}

.food-icon {
    background-color: #28a745; /* Green */
}

.restaurant-icon {
    background-color: #dc3545; /* Red */
}

.hotels-icon {
    background-color: #ffc107; /* Yellow */
    color: #212529; /* Dark text for visibility on yellow */
}

.beauty-icon {
    background-color: #e83e8c; /* Pink */
}

.shopping-icon {
    background-color: #dc3545; /* Red */
}

.category-card h3 {
    font-size: 1.0rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.category-card p {
    color: #6c757d;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .popular-categories {
        padding: 3rem 0;
    }

    .popular-categories h2 {
        font-size: 1.8rem;
    }

    .subtitle {
        font-size: 0.95rem;
        padding: 0 1rem;
    }

    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .category-card {
        padding: 1.5rem 1rem;
    }

    .icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .category-card {
        max-width: 250px;
    }
}

.searched-services {
  padding: 60px 0;
  background-color: #ceddf2;
}


/* Header */
.section-header {
  text-align: center;
  margin-bottom: 30px;
}

.section-header h2 {
  font-size: 32px;
  margin-bottom: 8px;
}

.section-header p {
  color: #777;
}

/* Tabs */
.service-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.service-tabs button {
  border: none;
  background: transparent;
  font-size: 15px;
  cursor: pointer;
  padding: 6px 10px;
  color: #666;
}

.service-tabs .active {
  color: #e53935;
  border-bottom: 2px solid #e53935;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.service-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* Image */
.card-image {
  position: relative;
}

.card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  color: #fff;
}

.badge.popular {
  background: #e53935;
}

.badge.top {
  background: #03a9f4;
}

/* Content */
.card-content {
  padding: 18px;
}

.card-content h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.rating {
  color: #ff9800;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
}

.price {
  color: #e53935;
}

.location,
.phone {
  font-size: 14px;
  color: #666;
  margin-top: 6px;
}

/* Footer */
.card-footer {
  border-top: 1px solid #eee;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.category {
  font-size: 14px;
  font-weight: 600;
}

.status.open {
  color: green;
}

.status.closed {
  color: red;
}
/* ===== VERIFIED / UNVERIFIED BADGES ===== */

.verify-badge {
  font-size: 12.5px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.verify-badge.verified {
  background: #e8f8f1;
  color: #1e8e5a;
}

.verify-badge.unverified {
  background: #fdeaea;
  color: #c62828;
}

/* ===== ACTION FOOTER ===== */

.action-footer {
  border-top: none;
  padding-top: 0;
  justify-content:center;
}

/* ===== VIEW DETAILS BUTTON ===== */

.view-details-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: linear-gradient(135deg, #17a2b8, #138496);
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.view-details-btn i {
  font-size: 12px;
}

.view-details-btn:hover {
  background: linear-gradient(135deg, #138496, #0f6674);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(23,162,184,0.35);
}

/* Responsive */
@media (max-width: 992px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .card-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 24px;
  }
}

/* How It Works Section */
.how-it-works {
  padding: 70px 0;
  background: #f8f9fa;
}

.how-it-works .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.how-it-works .section-header h2 {
  font-size: 32px;
  color: #2c3e50;
  margin-bottom: 10px;
}

.how-it-works .section-header p {
  color: #6c757d;
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Step Card */
.step-card {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
}

/* Step Number */
.step-number {
  width: 60px;
  height: 60px;
  background: #17a2b8;
  color: #fff;
  border-radius: 50%;
  font-size: 22px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

/* Card Content */
.step-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #2c3e50;
}

.step-card p {
  font-size: 15px;
  color: #6c757d;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .how-it-works {
    padding: 50px 0;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .how-it-works .section-header h2 {
    font-size: 26px;
  }

  .step-card {
    padding: 28px 22px;
  }
}
/* Blog Section */
.blog-section {
  padding: 70px 0;
  background:#ceddf2;
}

.blog-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.blog-section .section-header h2 {
  font-size: 32px;
  color: #2c3e50;
  margin-bottom: 8px;
}

.blog-section .section-header p {
  color: #6c757d;
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Blog Card */
.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

/* Image */
.blog-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* Content */
.blog-content {
  padding: 18px;
}

.blog-content h3 {
  font-size: 16px;
  color: #2c3e50;
  margin-bottom: 8px;
  line-height: 1.4;
}

.blog-content p {
  font-size: 14.5px;
  color: #6c757d;
  margin-bottom: 12px;
  line-height: 1.6;
}

/* Meta */
.blog-meta {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #999;
  margin-bottom: 12px;
}

/* Read More */
.read-more {
  font-size: 14px;
  font-weight: 600;
  color: #17a2b8;
  text-decoration: none;
}

.read-more:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 1200px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .blog-section {
    padding: 50px 0;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-section .section-header h2 {
    font-size: 26px;
  }
}
/* Footer */
.site-footer {
  background: #2c3e50;
  color: #ecf0f1;
  padding-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 40px;
}

.footer-col h3,
.footer-col h4 {
  color: #ffffff;
  margin-bottom: 15px;
}

.footer-logo img {  
  height: 70px;
  margin-bottom: 15px;
  
}
.footer-logo {
filter: invert(48%) sepia(79%) saturate(2476%) hue-rotate(190deg) brightness(118%) contrast(119%);
}

.footer-col p {
  font-size: 14.5px;
  line-height: 1.6;
  color: #bdc3c7;
}

/* Links */
.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #bdc3c7;
  text-decoration: none;
  font-size: 14.5px;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #17a2b8;
}

/* Social Icons */
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.social {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #34495e;
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}

.social:hover {
  transform: translateY(-3px);
}

.social.facebook:hover { background: #1877f2; }
.social.twitter:hover  { background: #000000; }
.social.linkedin:hover { background: #0a66c2; }
.social.instagram:hover { background: #e1306c; }

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 0;
  text-align: center;
  font-size: 14px;
  color: #bdc3c7;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 576px) {
  .site-footer {
    padding-top: 45px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}
.category-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    background: #f1f3f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== BLOG LIST PAGE (ISOLATED CSS) ===== */

.blr-wrapper {
  background:#ceddf2;
  padding:60px 0;
}

.blr-container {
  max-width:1200px;
  margin:auto;
  padding:0 20px;
}

/* GRID */
.blr-grid {
  display:grid;
  grid-template-columns: 2.6fr 1fr;
  gap:40px;
  align-items:flex-start;
}

/* LEFT */
.blr-heading {
  margin-bottom:25px;
}

.blr-card {
  background:#fff;
  border-radius:14px;
  overflow:hidden;
  margin-bottom:30px;
}

.blr-card img {
  width:100%;
  height:300px;
  object-fit:cover;
}

.blr-card-body {
  padding:22px;
}

.blr-card-body h2 {
  font-size:20px;
  margin-bottom:10px;
}

.blr-card-body a {
  text-decoration:none;
  color:#2c3e50;
}

.blr-meta {
  font-size:13px;
  color:#777;
  margin:10px 0;
}

.blr-read {
  font-weight:600;
  color:#17a2b8;
  text-decoration:none;
}

/* PAGINATION */
.blr-pagination a {
  display:inline-block;
  padding:6px 12px;
  margin-right:6px;
  background:#fff;
  border-radius:6px;
  text-decoration:none;
  color:#333;
}

.blr-pagination a.active {
  background:#17a2b8;
  color:#fff;
}

/* SIDEBAR */
.blr-sidebar .blr-box {
  background:#fff;
  padding:20px;
  border-radius:12px;
  margin-bottom:25px;
}

.blr-box h3 {
  font-size:18px;
  margin-bottom:15px;
}

.blr-box a {
  display:block;
  margin-bottom:10px;
  text-decoration:none;
  color:#333;
  font-size:14px;
}

.blr-box ul {
  list-style:none;
  padding:0;
}

.blr-box li {
  display:flex;
  justify-content:space-between;
  margin-bottom:8px;
  font-size:14px;
}

.blr-box img {
  width:100%;
  border-radius:8px;
}

/* MOBILE */
@media(max-width:992px){
  .blr-grid {
    grid-template-columns:1fr;
  }
}
/* ===== ALL LISTING SEARCH BAR (NO CONFLICT) ===== */

.listing-search {
  background: #ffffff;
  padding: 20px;
  border-radius: 14px;
  margin-bottom: 35px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* Grid */
.ls-grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr auto;
  gap: 15px;
  align-items: center;
}

/* Inputs */
.ls-input,
.ls-select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
  outline: none;
}

.ls-input:focus,
.ls-select:focus {
  border-color: #17a2b8;
}

/* Button */
.ls-btn {
  padding: 12px 22px;
  background: #17a2b8;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.ls-btn:hover {
  background: #138496;
}

/* ===== MOBILE READY ===== */
@media (max-width: 768px) {
  .ls-grid {
    grid-template-columns: 1fr;
  }

  .ls-btn {
    width: 100%;
    justify-content: center;
  }
}
/* ===== ALL LISTING RESPONSIVE GRID FIX ===== */

.listing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Tablet */
@media (max-width: 992px) {
  .listing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .listing-grid {
    grid-template-columns: 1fr;
  }
}
/* ===== CONTACT PAGE ===== */

.contact-section {
    padding: 70px 0;
    background: #ceddf2;
}

.contact-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.contact-header h1 {
    font-size: 34px;
    margin-bottom: 10px;
}

.contact-header p {
    color: #666;
    font-size: 16px;
}

/* Layout */
.contact-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

/* ===== FORM BOX ===== */
.contact-form-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
}

.contact-form-box h3 {
    margin-bottom: 20px;
    font-size: 22px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
}

.contact-form textarea {
    resize: vertical;
    margin-bottom: 15px;
}

.contact-form button {
    width: 100%;
    padding: 14px;
    background: #17a2b8;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-form button:hover {
    background: #138496;
}

/* ===== INFO BOX ===== */
.contact-info-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
}

.contact-info-box h3 {
    margin-bottom: 20px;
    font-size: 22px;
}

.info-item {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14.5px;
    color: #333;
}

.info-item i {
    color: #17a2b8;
    font-size: 16px;
    margin-top: 2px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
}
/* ===== ABOUT PAGE ===== */

.about-section {
    padding: 50px 0;
    background: #ceddf2;
}

.about-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 50px;
}

.about-header h1 {
    font-size: 34px;
    margin-bottom: 10px;
}

.about-header p {
    color: #666;
    font-size: 16px;
}

/* Layout */
.about-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

/* Content */
.about-content {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
}

.about-content h2 {
    font-size: 22px;
    margin-bottom: 10px;
    margin-top: 25px;
}

.about-content h2:first-child {
    margin-top: 0;
}

.about-content p {
    font-size: 15.5px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
}

/* Bullet Points */
.about-points {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.about-points li {
    margin-bottom: 10px;
    font-size: 14.5px;
    color: #333;
}

.about-points i {
    color: #17a2b8;
    margin-right: 8px;
}

/* Stats */
.about-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.stat-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
}

.stat-box i {
    font-size: 26px;
    color: #17a2b8;
    margin-bottom: 10px;
}

.stat-box h3 {
    font-size: 26px;
    margin-bottom: 5px;
}

.stat-box p {
    font-size: 14px;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .about-layout {
        grid-template-columns: 1fr;
    }
}
