:root {
  --primary-color: #a54505df;
  --secondary-color: #0056b3;
  --text-light: #ffffff;
  --background-dark: #8fa4be;
}
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
            padding-top: 0px; /* Reduced from 120px */
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Top Menu Bar (Not Sticky) */
        .top-menu {
            background-color: var(--primary-color);
            color: white;
            padding: 8px 0; /* Reduced padding */
            position: relative;
            z-index: 1001;
        }

        .top-menu .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .top-menu-links {
            display: flex;
            list-style: none;
        }

        .top-menu-links li {
            margin-right: 20px;
        }

        .top-menu-links a {
            color: #ecf0f1;
            text-decoration: none;
            font-size: 13px; /* Slightly smaller */
            transition: color 0.3s;
        }

        .top-menu-links a:hover {
            color: #3498db;
        }

        .top-menu-actions {
            display: flex;
            align-items: center;
            gap: 12px; /* Reduced gap */
        }

        .top-menu-actions a {
            color: #ecf0f1;
            text-decoration: none;
            font-size: 13px; /* Slightly smaller */
            transition: color 0.3s;
        }

        .top-menu-actions a:hover {
            color: #3498db;
        }

        /* Sticky Header */
        .sticky-header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .header-main {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0; /* Reduced from 15px */
        }

        /* Logo Section */
        .logo-section {
            flex: 0 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: #2c3e50;
        }

        /* Logo Image Styles */
        .logo-image {
            height: 30px; /* Reduced from 50px */
            width: auto;
            margin-right: 10px; /* Reduced margin */
        }

        .logo-text {
            display: flex;
            flex-direction: column;
        }

        .logo-main {
            font-size: 22px; /* Reduced from 24px */
            font-weight: 700;
            line-height: 1;
        }

        .logo-tagline {
            font-size: 10px; /* Reduced from 11px */
            font-weight: 400;
            color: #7f8c8d;
            margin-top: 1px; /* Reduced margin */
            letter-spacing: 0.3px; /* Reduced spacing */
        }

        /* Image-only logo style */
        .logo-image-only {
            height: 38px; /* Reduced from 45px */
            width: auto;
        }

        /* Navigation Menu */
        .nav-section {
            flex: 1;
            display: flex;
            justify-content: center;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 25px; /* Reduced from 30px */
        }

        .nav-menu li {
            position: relative;
        }

        .nav-menu a {
            color: #2c3e50;
            text-decoration: none;
            font-weight: 500;
            font-size: 15px; /* Slightly smaller */
            transition: color 0.3s;
            padding: 6px 0; /* Reduced padding */
        }

        .nav-menu a:hover {
            color: #3498db;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #3498db;
            transition: width 0.3s;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        /* Search Section */
        .search-section {
            flex: 0 0 auto;
            position: relative;
        }

        .search-icon {
            background: none;
            border: none;
            font-size: 16px; /* Slightly smaller */
            color: #2c3e50;
            cursor: pointer;
            padding: 8px; /* Reduced padding */
            border-radius: 50%;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 38px; /* Reduced size */
            height: 38px;
        }

        .search-icon:hover {
            background-color: #f1f2f6;
            color: #3498db;
        }

        .search-form {
            position: absolute;
            top: 100%;
            right: 0;
            background: white;
            padding: 15px; /* Reduced padding */
            border-radius: 8px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
            width: 280px; /* Slightly smaller */
            display: none;
            z-index: 1002;
        }

        .search-form.active {
            display: block;
            animation: slideDown 0.3s ease;
        }

        .search-input-group {
            display: flex;
            align-items: center;
        }

        .search-input {
            flex: 1;
            padding: 10px 12px; /* Reduced padding */
            border: 1px solid #ddd;
            border-radius: 4px 0 0 4px;
            font-size: 14px;
            outline: none;
            transition: border-color 0.3s;
        }

        .search-input:focus {
            border-color: #3498db;
        }

        .search-submit {
            background: #3498db;
            color: white;
            border: none;
            padding: 10px 12px; /* Reduced padding */
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .search-submit:hover {
            background: #2980b9;
        }

        @keyframes slideDown {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }

       .main-content {
  flex: 1 1 500px;
  background: #fff;
  padding: 35px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.5);
  line-height: 1.7;
}

.content-header h2 {
  font-size: 2rem;
  color: #222;
  margin-bottom: 10px;
}

.content-header p {
  color: #555;
  margin-bottom: 25px;
}

.content-section {
  margin-bottom: 10px;
}

.content-section h3 {
  color: #080808;
  font-size: 1.3rem;
  margin-bottom: 10px;
  border-left: 4px solid #131313;
  padding-left: 8px;
}

.content-section p {
  color: #555;
}

.service-list {
  list-style: none;
  padding: 0;
}

.service-list li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.service-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #090909;
  font-weight: bold;
}

/* Responsive layout */
@media (max-width: 900px) {
  .main-content {
    flex: 1 1 100%;
  }
}

        

        /* Responsive Design */
        @media (max-width: 768px) {
            body {
                padding-top: 120px; /* Reduced from 160px */
            }
            
            .header-main {
                flex-wrap: wrap;
                gap: 12px; /* Reduced gap */
            }
            
            .logo-section {
                flex: 1;
            }
            
            .nav-section {
                flex: 1 0 100%;
                order: 3;
                margin-top: 12px; /* Reduced margin */
            }
            
            .nav-menu {
                justify-content: center;
                gap: 12px; /* Reduced gap */
                flex-wrap: wrap;
            }
            
            .search-section {
                flex: 0;
            }
            
            .search-form {
                width: 260px; /* Slightly smaller */
                right: -50%;
                transform: translateX(50%);
            }
            
            .logo-image {
                height: 35px; /* Reduced */
            }
            
            .logo-image-only {
                height: 32px; /* Reduced */
            }
        }

        /* Contact Page */
.contact-page {
    padding: 80px 20px;
    background: #f9fafb;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1px;
    text-align: center;
    color: #222;
    padding-bottom: 1px;
}

.section-subtitle {
    text-align: center;
    color: #555;
    margin-bottom: 5px;
}

/* Layout */
.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    margin-bottom: 50px;
}

/* Contact Details */
.contact-details {
    flex: 1 1 35%;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.08);
}

.detail-box {
    margin-bottom: 25px;
}

.detail-box h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #2563eb;
}

.detail-box p {
    color: #444;
}

/* Contact Form */
.contact-form {
    flex: 1 1 60%;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.08);
}

.contact-form form .form-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    width: 100%;
    transition: border 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #2563eb;
    outline: none;
}

/* Button */
.btn {
            display: inline-block;
            background-color: var(--primary-color);
            color: white;
            padding: 10px 25px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 500;
            transition: background-color 0.3s;
        }

        .btn:hover {
            background-color: #2980b9;
        }
.send-btn {
    background: #2563eb;
    color: #fff;
    padding: 12px 25px;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.send-btn:hover {
    background: #1d4ed8;
}

/* Map */
.map-section {
    width: 100%;
    margin-top: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 5px 20px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
    }

    .contact-details,
    .contact-form {
        flex: 1 1 100%;
    }
}


 /* Footer */
        footer {
            background-color: #2c3e50;
            color: white;
            padding-top: 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(20%, 1fr));
            gap: 50px;
            margin-bottom: 10px;
           
        }

        .footer-section h3 {
            font-size: 1.9rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
            
        }

        .footer-section h3::after {
            content: '';
            position: absolute;
            width: 50px;
            height: 2px;
            background-color: #3498db;
            bottom: 0;
            left: 0;
        }

        .footer-section p {
            margin-bottom: 10px;
            color: #ecf0f1;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links ul li {
            margin-bottom: 10px;
        }

        .footer-links ul li a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links ul li a:hover {
            color: #3498db;
            padding-left: 5px;
        }

        .contact-info {
            display: flex;
            align-items: flex-start;
            height: auto;
            line-height: 1.3rem;
        
        }

        .contact-info i {
            margin-right: 10px;
            color: #3498db;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: #34495e;
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            color: white;
            transition: background-color 0.3s;
        }

        .social-links a:hover {
            background-color: #3498db;
        }

        .footer-bottom {
            background-color: #1a252f;
            padding: 5px 0;
            text-align: center;
            color: #bdc3c7;
            font-size: 18px;
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: #3498db;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 999;
        }

        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background-color: #2980b9;
        }

         
        * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}



/* About Us Section */
.about-section {
    padding: 30px 20px;
    background-color: #ffffff;
    display: flex;
}

.about-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.about-text {
    flex: 1 1 500px;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.about-buttons a {
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    margin-right: 15px;
    transition: 0.3s ease-in-out;
}

.btn-primary {
    background-color: #2563eb;
    color: #fff;
}

.btn-primary:hover {
    background-color: #1d4ed8;
}

.btn-secondary {
    background-color: #f3f4f6;
    color: #000;
}

.btn-secondary:hover {
    background-color: #e5e7eb;
}

/* Images styling with overlap */
.about-images {
    position: relative;
    flex: 1 1 500px;
    min-height: 300px;
}

.about-images .img1,
.about-images .img2 {
    width: 100%;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    position: absolute;
    transition: transform 0.3s ease;
}

.about-images .img1 {
    top: 0;
    left: 0;
    z-index: 2;
}

.about-images .img2 {
    top: 30px;
    left: 30px;
    z-index: 1;
}

.about-images:hover .img1 {
    transform: translate(-10px, -10px);
}

.about-images:hover .img2 {
    transform: translate(10px, 10px);
}

/* Responsive */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column-reverse;
    }

    .about-images {
        width: 100%;
        height: 300px;
        margin-bottom: 30px;
        position: relative;
    }

    .about-images .img1,
    .about-images .img2 {
        position: absolute;
        width: 45%;
        top: 0;
        left: 0;
    }

    .about-images .img2 {
        left: 50%;
    }
}

@media (max-width: 576px) {
    .about-text h2 {
        font-size: 2rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .about-buttons a {
        padding: 10px 20px;
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .about-images .img1,
    .about-images .img2 {
        width: 48%;
        left: 0 !important;
        top: 0 !important;
    }

    .about-images .img2 {
        left: 50% !important;
    }
}




/* projects Section */
.latest-news {
    padding: 80px 20px;
    background: #f9fafb;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #222;
}

.section-subtitle {
    color: #222222;
    margin-bottom: 25px;
    font-size: 18px;
}

/* Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

/* Card */
.news-card {
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 20px rgba(0,0,0,0.12);
}

/* Image */
.news-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

/* Content */
.news-content {
    padding: 15px;
    text-align: left;
}

.news-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.news-desc {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 12px;
    line-height: 1.4;
}

/* Button */
.read-btn {
    display: inline-block;
    padding: 6px 14px;
    background: var(--primary-color);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.read-btn:hover {
    background: #1e40af;
}


/* CTA SECTION */
.cta-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Parallax effect */
  height: 500px;
  display: flex;
  align-items: center; /* Vertically center */
  justify-content: center; /* Horizontally center */
  color: var(--text-light);
  text-align: center;
  overflow: hidden;
margin-bottom: 20px;
}

.cta-overlay {
  position: absolute;
  inset: 0; /* top:0; left:0; right:0; bottom:0 */
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center; /* Ensures content is centered inside overlay */
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 20px;
}

.cta-content h2 {
  font-size: 36px;
  margin-bottom: 10px;
  font-weight: 700;
  color: #fff;
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 25px;
  color: var(--text-light);
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--primary-color);
  color: #fff;
}

.btn-primary:hover {
  background: #e65c00;
}

.btn-secondary {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
}

.btn-secondary:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
}

/* Responsive */
@media (max-width: 768px) {
  .cta-section {
    background-attachment: scroll; /* disables parallax on mobile */
    height: auto;
    padding: 60px 20px;
  }

  .cta-content h2 {
    font-size: 26px;
  }

  .cta-content p {
    font-size: 15px;
  }
}


/* activities Section */
        .services {
            padding: 0 0 40px 0;
            background-color: #fff;
        }

        .section-title {
            text-align: center;
            margin-bottom: 1px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            width: 70px;
            height: 3px;
            background-color: #3498db;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            
        }

        .section-title p {
            color: #303232;
            max-width: 800px;
            margin: 0 auto;
            padding-bottom: 10px;
            font-size: 18px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background-color: white;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }

        .service-card:hover {
            transform: translateY(-10px);
        }

        .service-icon {
            height: 200px;
            background-color: #3498db;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 60px;
        }

        .service-content {
            padding: 5px;
        }

        .service-content h3 {
            font-size: 22px;
            
            margin-top: 15px;
            color: #2c3e50;
        }

        .service-content p {
            color: #8d827f;
            margin-bottom: 15px;
        }
  .serviceimg{
          display: inline;
          width: 100%;
        }

        



/* Container setup */
.slider-container {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}

/* Slider wrapper */
.slider {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Slides */
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

/* Transparent text box */
.slide-content {
  position: absolute;
  bottom: 50px;
  left: 50px;
  background: rgba(0, 0, 0, 0.3);
  padding: 20px 30px;
  border-radius: 15px;
  color: #fff;
  max-width: 550px;
  backdrop-filter: blur(4px);
}

.slide-content h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.slide-content p {
  font-size: 1rem;
  line-height: 1.5;
}

.slide-btn {
  display: inline-block;
  margin-top: 12px;
  background: var(--primary-color);
  color: #000;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.slide-btn:hover {
  background: var(--secondary-color);
  color: #000;
}

/* Arrows */
.slider-arrows {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 3;
}

.arrow {
  cursor: pointer;
  font-size: 2.5rem;
  color: #fff;
  padding: 10px 20px;
  transition: color 0.3s;
  user-select: none;
}

.arrow:hover {
  color: #f4b400;
}

/* Pagination dots */
.slider-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.slider-dots .dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.slider-dots .dot.active {
  background: #f4b400;
}

/* Responsive */
@media (max-width: 768px) {
  .slide-content {
    left: 20px;
    bottom: 30px;
    max-width: 90%;
  }

  .slide-content h2 {
    font-size: 1.5rem;
  }

  .slide-content p {
    font-size: 0.9rem;
  }

  .arrow {
    font-size: 2rem;
  }
}












        



        .about-section2 {
  padding: 80px 20px;
  background: #f8f9fa;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-content2 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-bottom: 50px;
}

.about-text {
  flex: 1 1 500px;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #222;
}

.about-text p {
  line-height: 1.7;
  margin-bottom: 15px;
}

.about-image {
  flex: 1 1 400px;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  text-align: center;
}

.stat-item {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-item h3 {
  font-size: 2rem;
  color: #007bff;
  margin-bottom: 10px;
}

.stat-item p {
  font-size: 1rem;
  color: #555;
}



/* Sidebar container */
.sidebar {
  flex: 0 0 80px; /* Fixed width on large screens */
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0.0,0,0.5);
  height: fit-content;
}

/* Sidebar boxes */
.sidebar-box {
  margin-bottom: 25px;
 
}

.sidebar-box h3 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  border-bottom: 2px solid #007bff;
  display: inline-block;
  padding-bottom: 5px;
}

.sidebar-box ul {
  list-style: none;
  padding: 0;
}

.sidebar-box ul li {
  margin-bottom: 10px;
}

.sidebar-box ul li a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s ease;
}

.sidebar-box ul li a:hover {
  color: #007bff;
}

/* Contact info */
.contact-box p {
  margin: 8px 0;
  color: #555;
}

/* Responsive sidebar behavior */
@media (max-width: 900px) {
  .sidebar {
    flex: 1 1 100%;
    margin-top: 30px;
  }
}
.sidebar {
  flex: 0 0 280px;
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  height: fit-content;

  /* 👇 Make it sticky */
  position: sticky;
  top: 100px; /* distance from top when scrolling */
  align-self: flex-start; /* ensures it sticks correctly in a flex container */
}


/* ===== Back To Top Button ===== */
#backToTopBtn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 99;
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.5);
  display: none; /* Hidden by default */
  transition: all 0.3s ease;
}

#backToTopBtn:hover {
  background-color: #0056b3;
  transform: translateY(-3px);
}





.goog-te-gadget img {
  display: none !important;
}
.goog-te-gadget-simple {
  background-color: #f8f9fa !important;
  border: none !important;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.5);
  font-size: 12px;
  padding: 5px;
  border-radius: 5px;
}
.goog-te-menu-value span {
  color: #333 !important;
}
