/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #d4af37; /* Gold */
    --secondary-color: #0d3b66; /* Deep blue */
    --accent-color: #1d65a6; /* Medium blue */
    --light-color: #f8f9fa;
    --dark-color: #2c3e50;
    --max-width: 1200px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #fff;
}

.container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    
}

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-intro {
  text-align: center;
  margin-bottom: 50px;
}











.combined-contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

/* Make the right‐side wrapper span both grid columns */
.contact-info-wrapper {
  grid-column: 1 / -1;       /* span from first to last column */
  max-width: 600px;          /* or whatever width you prefer */
  margin: 0 auto;            /* center it */
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 40px;
  display: flex;
  flex-direction: column;
  height: 100%;
}












.section-intro h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--secondary-color);
}
.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.underline {
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 0 auto;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn:hover {
    background-color: #c4a022;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

img {
    width: 100%;
    height: auto;
    display: block;
}

/* Header Styles */
header {
    background-color: #fff;
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.logo span {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 25px;
}

.nav-menu a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    padding: 8px 0;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after, 
.nav-menu a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: linear-gradient(rgba(13, 59, 102, 0.8), rgba(13, 59, 102, 0.8)), url('https://images.unsplash.com/photo-1551882547-ff40c63fe5fa?ixlib=rb-1.2.1&auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease;
}

.hero .btn {
    animation: fadeIn 1.5s ease;
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-img, 
.about-text {
    flex: 1;
}

.about-img img {
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.about-text p {
    margin-bottom: 20px;
    color: #555;
}

/* Services Section (formerly Rooms) */
.rooms {
    background-color: #f9f9f9;
}

.room-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.room-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.room-img {
    height: 250px;
    overflow: hidden;
}

.room-img img {
    transition: transform 0.5s ease;
    height: 100%;
    object-fit: cover;
}

.room-card:hover .room-img img {
    transform: scale(1.1);
}

.room-info {
    padding: 25px;
}

.room-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.room-info p {
    color: #666;
    margin-bottom: 15px;
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.room-features span {
    font-size: 0.9rem;
    color: #666;
}

.room-features i {
    color: var(--primary-color);
    margin-right: 5px;
}

/* Success Stories Section (formerly Amenities) */
.amenities {
    background-color: #fff;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.amenity-card {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border-top: 3px solid var(--primary-color);
}

.amenity-card:hover {
    transform: translateY(-10px);
}

.amenity-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.amenity-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.amenity-card p {
    font-style: italic;
    color: #666;
}

/* Gallery Section (now Our Placements) */
.gallery {
    background-color: #f9f9f9;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    height: 250px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(13, 59, 102, 0.7) 0%, rgba(13, 59, 102, 0) 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Contact Section */
.contact-content {
    display: flex;
    gap: 50px;
}

.contact-info, 
.contact-form {
    flex: 1;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 20px;
    margin-top: 5px;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 80px 0px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.footer-logo span {
    color: var(--primary-color);
}

.footer-links h3,
.footer-newsletter h3,
.footer-social h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after,
.footer-newsletter h3::after,
.footer-social h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-newsletter p {
    margin-bottom: 15px;
}

.footer-newsletter form {
    display: flex;
}

.footer-newsletter input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-family: inherit;
}

.footer-newsletter .btn {
    border-radius: 0 4px 4px 0;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px 0px -12px 20px;
    margin-bottom: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media Queries for Responsive Design */
@media screen and (max-width: 992px) {
    .section-title h2 {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-img, .about-text {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: #fff;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 30px;
        transition: all 0.5s ease;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .contact-content {
        flex-direction: column;
    }
}

@media screen and (max-width: 576px) {
    section {
        padding: 50px 0;
    }
    
    .hero {
        height: 80vh;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .room-grid,
    .amenities-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links h3::after,
    .footer-newsletter h3::after,
    .footer-social h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-newsletter form {
        flex-direction: column;
    }
    
    .footer-newsletter input,
    .footer-newsletter .btn {
        width: 100%;
        border-radius: 4px;
        margin-bottom: 10px;
    }
}

/* For stable navigation */
.nav-menu .active {
    color: var(--accent-color) !important;
    position: relative;
}

.nav-menu .active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
}

/* Content transition effect */
.page-content {
    transition: opacity 0.3s ease;
}

.page-content.loading {
    opacity: 0.6;
}

/* Loading indicator */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease-in-out;
    z-index: 9999;
    display: none;
}

.page-loader.active {
    display: block;
    animation: loading 1s infinite ease-in-out;
}

@keyframes loading {
    0% {
        transform: scaleX(0);
    }
    50% {
        transform: scaleX(0.5);
    }
    100% {
        transform: scaleX(1);
    }
}

.nav-menu a {
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    width: 100%;
}





.page-banner .banner-content {
    text-align: center;

  }
  

  .page-banner .banner-content {
    text-align: center;
    margin-top: 50px;
  }
  



  /* Company History Section (Our Journey) Styling */
.company-history {
    padding: 80px 0;
    background-color: #f8f9fa; /* Lighter background for contrast */
  }
  
  .company-history .section-title {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .company-history .section-title h2 {
    font-size: 2.8rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
  }
  
  .company-history .subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
  }
  
  .company-history .timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 40px;  /* Increased vertical gap between timeline items */
    margin: 0 auto;
    width: 90%;
  }
  
  .company-history .timeline-item {
    display: flex;
    position: relative;
    padding: 20px 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    max-width: 600px;  /* Optional: limit width for better readability */
  }
  
  .company-history .timeline-item.left {
    align-self: flex-start;
  }
  
  .company-history .timeline-item.right {
    align-self: flex-end;
  }
  
  .company-history .timeline-content {
    flex: 1;
    text-align: left;
  }
  
  .company-history .timeline-year {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
  }
  
  .company-history .timeline-content h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
  }
  
  .company-history .timeline-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
  }

  
  





  /* Why Choose Us Section Styling */
.why-choose-us {
    padding: 80px 0;
    background-color: #fff;
  }
  
  .why-choose-us .section-title {
    text-align: center;
    margin-bottom: 50px;
  }
  
  .why-choose-us .section-title h2 {
    font-size: 2.8rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
  }
  
  .why-choose-us .section-title .underline {
    width: 60px;
    height: 5px;
    background-color: var(--primary-color);
    margin: 0 auto 20px auto;
  }
  
  .why-choose-us .subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
  }
  
  /* Two Column Content Removed Image and Adjusted Layout */
  .why-choose-us .two-column-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  
  /* Remove the image container */
  .why-choose-us .feature-image {
    display: none;
  }
  
  /* Feature List Layout */
  .why-choose-us .feature-list {
    display: flex;
    flex-direction: column;
    gap: 30px; /* Increased gap between feature items */
    width: 100%;
    max-width: 800px;
  }
  
  /* Feature Item Styles */
  .why-choose-us .feature-item {
    padding: 20px 30px;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    background-color: #fdfdfd;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .why-choose-us .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.1);
  }
  
  .why-choose-us .feature-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: block;
  }
  
  .why-choose-us .feature-content h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
  }
  
  .why-choose-us .feature-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
  }

  





  /* ---------- Our Story Section ---------- */
.about-story {
    padding: 80px 0;
    background: #fff;
  }
  
  .about-story .about-content {
    display: flex;
    gap: 40px; /* Increased spacing between image and text */
    align-items: center;
    flex-wrap: wrap;
  }
  
  .about-story .about-image {
    flex: 1;
    max-width: 500px;
  }
  
  .about-story .about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  }
  
  .about-story .about-text {
    flex: 2;
  }
  
  .about-story .section-title {
    text-align: center;
    margin-bottom: 25px;
  }
  
  .about-story .section-title h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
  }
  
  .about-story .underline {
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 0 auto 20px auto;
  }
  
  .about-story .about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
  }
  
  /* Core values block */
  .about-story .core-values {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
  }
  
  .about-story .value-item {
    flex: 1;
    text-align: center;
  }
  
  .about-story .value-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
  }
  
  .about-story .value-text h4 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
  }
  
  .about-story .value-text p {
    font-size: 0.95rem;
    color: #666;
  }
  
  /* ---------- Our Mission Section ---------- */
  .about-mission {
    padding: 80px 0;
    background: #f8f9fa;
  }
  
  .about-mission .mission-vision-container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .about-mission .mission-box,
  .about-mission .vision-box {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
    text-align: center;
  }
  
  .about-mission .section-title {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .about-mission .section-title h2 {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
  }
  
  .about-mission .underline {
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 0 auto 20px;
  }
  
  .about-mission p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 0;
  }

  



  /* ---------- Achievements Section ---------- */
.achievements-section {
    padding: 80px 0;
    background: #f8f9fa;
  }
  
  .achievements-section .section-title {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .achievements-section .section-title h2 {
    font-size: 2.8rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
  }
  
  .achievements-section .underline.center-underline {
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 0 auto 20px;
  }
  
  .achievements-section .subtitle {
    font-size: 1.1rem;
    color: #777;
    margin-bottom: 30px;
  }
  
  /* Grid layout for achievement cards */
  .achievements-section .achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
  
  /* Achievement Card Styling */
  .achievement-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  }
  
  .achievement-card .achievement-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
  }
  
  .achievement-card .achievement-content h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 8px;
  }
  
  .achievement-card .award-year {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
  }
  
  .achievement-card .achievement-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 0;
  }

  








  /* ---------- Services Overview Section ---------- */
.services-overview {
    padding: 80px 0;
    background-color: #fff;
  }
  
  .services-overview .section-title {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .services-overview .section-title h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
  }
  
  .services-overview .underline {
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 0 auto 20px;
  }
  
  .services-overview .subtitle {
    font-size: 1.1rem;
    color: #777;
    margin-bottom: 40px;
  }
  
  .services-overview .services-process {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  
  .services-overview .process-step {
    background: #fdfdfd;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 1 1 250px;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .services-overview .process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
  }
  
  .services-overview .step-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
  }
  
  .services-overview .step-content h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
  }
  
  .services-overview .step-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
  }
  
  /* ---------- Primary Services Section ---------- */
  .primary-services {
    padding: 80px 0;
    background-color: #f8f9fa;
  }
  
  .primary-services .section-title {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .primary-services .section-title h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
  }
  
  .primary-services .underline {
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 0 auto 20px;
  }
  
  .primary-services .subtitle {
    font-size: 1.1rem;
    color: #777;
    margin-bottom: 40px;
  }
  
  .primary-services .service-item {
    margin-bottom: 40px;
  }
  
  .primary-services .service-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    justify-content: center;
  }
  
  .primary-services .service-text {
    flex: 1 1 300px;
  }
  
  .primary-services .service-text h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
  }
  
  .primary-services .service-text p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
  }
  
  .primary-services .service-text .service-features {
    margin-bottom: 20px;
    padding-left: 20px;
  }
  
  .primary-services .service-text .service-features li {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 8px;
  }
  
  .primary-services .service-text a.btn {
    margin-top: 15px;
  }
  



  .primary-services .service-image {
    flex: 1 1 300px;
    text-align: center;
  }
  
  .primary-services .service-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  
  








  /* ---------- Additional Services Section ---------- */
  .additional-services {
    padding: 80px 0;
    background-color: #fff;
  }
  
  .additional-services .section-title {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .additional-services .section-title h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
  }
  
  .additional-services .underline {
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 0 auto 20px;
  }
  
  .additional-services .subtitle {
    font-size: 1.1rem;
    color: #777;
    margin-bottom: 40px;
  }
  
  .additional-services .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
  
  .additional-services .service-card {
    background: #fdfdfd;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .additional-services .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
  }
  
  .additional-services .service-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
  }
  
  .additional-services .service-card h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
  }
  
  .additional-services .service-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
  }
  
  /* ---------- Testimonials Section ---------- */
  .testimonials-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    text-align: center;
  }
  
  .testimonials-section .section-title h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
  }
  
  .testimonials-section .underline {
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 0 auto 20px;
  }
  
  .testimonials-section .subtitle {
    font-size: 1.1rem;
    color: #777;
    margin-bottom: 40px;
  }
  
  .testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .testimonial {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
  }
  
  .testimonial-quote i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
  }
  
  .testimonial-quote p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }
  
  .testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
  }
  
  .testimonial-author h4 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin: 0;
  }
  
  .testimonial-author p {
    font-size: 0.95rem;
    color: #777;
    margin: 0;
  }
  
  /* ---------- Service Packages Section ---------- */
  .service-packages {
    padding: 80px 0;
    background-color: #fff;
  }
  
  .service-packages .section-title {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .service-packages .section-title h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
  }
  
  .service-packages .underline {
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 0 auto 20px;
  }
  
  .service-packages .subtitle {
    font-size: 1.1rem;
    color: #777;
    margin-bottom: 40px;
  }
  
  .packages-container {
    margin-top: 40px;
  }
  
  .package-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .package-tab {
    background: #f8f9fa;
    border: 1px solid #ddd;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s ease;
  }
  
  .package-tab.active,
  .package-tab:hover {
    background: var(--primary-color);
    color: #fff;
  }
  
  .package-content-container {
    margin-top: 20px;
  }
  
  .packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
  
  .package-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #eee;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
  }
  
  .package-card.featured {
    border: 2px solid var(--primary-color);
  }
  
  .package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
  }
  
  .package-header {
    margin-bottom: 20px;
  }
  
  .package-header .package-name {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
  }
  
  .package-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
  }
  
  .package-description {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
  }
  
  .package-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
  }
  
  .package-features li {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
  }
  
  .package-cta a.btn {
    padding: 10px 25px;
    font-size: 1rem;
  }
  
  /* ---------- Custom Package Call-to-Action ---------- */
  .custom-package {
    padding: 60px 0;
    background: var(--primary-color);
    color: #fff;
    text-align: center;
    margin-top: 40px;
    border-radius: 8px;
  }
  
  .custom-package h3 {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .custom-package p {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }
  
  .custom-package a.btn {
    background: #fff;
    color: var(--primary-color);
    padding: 10px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
  }
  
  .custom-package a.btn:hover {
    background: #f8f9fa;
  }

  




  .page-banner {
    background: #f0f0f0;  /* Optional: a light background for visual contrast */
    padding: 60px 0;
    margin-top: 40px; /* <-- Adds space above the banner */
  }

  
  .page-banner {
    background: #f0f0f0;  /* Optional: a light background for visual contrast */
    padding: 60px 0;
  }
  
  .page-banner .banner-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .page-banner h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);  /* Assuming your secondary color is defined */
    margin-bottom: 20px;
  }
  
  .page-banner .underline {
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);  /* Assuming your primary color is defined */
    margin: 0 auto 20px;
  }
  
  .page-banner p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  





  .contact-form-section {
    background: #fafafa;
    padding: 80px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
















  .contact-form-container {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    justify-content: space-between;
  }
  
  .form-wrapper, .contact-info-wrapper {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow:  8px 20px rgba(0, 0, 0, 0.05);
    flex: 1 1 45%;
  }
  
  .form-wrapper h3,
  .contact-info-wrapper h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #333;
  }
  
  .form-intro {
    margin-bottom: 30px;
    color: #555;
    line-height: 1.6;
  }
  
  .contact-form .form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  
  .contact-form .form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  
  .contact-form label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #222;
  }
  
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    padding: 12px 15px;
    font-size: 1rem;
    border-radius: 6px;
    border: 1px solid #ccc;
    transition: 0.3s ease;
  }
  
  .contact-form input:focus,
  .contact-form select:focus,
  .contact-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 5px rgba(0, 128, 255, 0.1);
  }
  
  .contact-form .form-checkbox {
    margin: 20px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }
  
  .contact-form .form-checkbox label {
    font-size: 0.95rem;
    color: #444;
  }
  
  .contact-form .btn {
    padding: 12px 25px;
    font-size: 1.1rem;
    border-radius: 8px;
    margin-top: 10px;
  }
  
  .form-success {
    background: #e6fff0;
    color: #1e8449;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-top: 20px;
  }
  
  .contact-info-header p {
    color: #666;
    margin-bottom: 30px;
  }
  
  .contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
  }
  
  .contact-icon {
    font-size: 1.6rem;
    color: var(--primary-color);
  }
  
  .contact-details h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
    color: #222;
  }
  
  .contact-details p {
    margin: 0;
    color: #555;
  }
  
  .social-connect {
    margin-top: 30px;
  }
  
  .social-connect h4 {
    margin-bottom: 10px;
  }
  
  .social-icons a {
    display: inline-block;
    color: #555;
    font-size: 1.2rem;
    margin-right: 15px;
    transition: color 0.3s ease;
  }
  
  .social-icons a:hover {
    color: var(--primary-color);
  }
  




























  /* Responsive */
  @media (max-width: 768px) {
    .contact-form-container {
      flex-direction: column;
    }
  
    .form-wrapper, .contact-info-wrapper {
      padding: 30px;
    }
  
    .contact-form .form-row {
      flex-direction: column;
    }
  }
  




  .contact-info-wrapper {
    background-color: #fefefe;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    font-family: 'Poppins', sans-serif;
    color: #333;
    border: 1px solid #e0e0e0;
  }
  
  /* Header section */
  .contact-info-header h3 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #1e2a38;
    margin-bottom: 10px;
  }
  
  .contact-info-header p {
    font-size: 1rem;
    color: #667085;
    margin-bottom: 35px;
  }
  
  /* Contact Items */
  .contact-info-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  
  .contact-info-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
  }
  
  .contact-icon {
    font-size: 1.5rem;
    color: #3f8cff; /* Primary color */
    margin-top: 6px;
  }
  
  .contact-details h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #1d2939;
  }
  
  .contact-details p,
  .contact-details a {
    font-size: 0.95rem;
    color: #475467;
    line-height: 1.6;
    text-decoration: none;
  }
  
  .contact-details a:hover {
    text-decoration: underline;
    color: #3f8cff;
  }
  
  /* Social Links */
  .social-connect {
    margin-top: 40px;
  }
  
  .social-connect h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: #1e2a38;
  }
  
  .social-icons {
    display: flex;
    gap: 18px;
  }
  
  .social-icons a {
    font-size: 1.2rem;
    color: #667085;
    transition: color 0.3s ease;
  }
  
  .social-icons a:hover {
    color: #3f8cff;
  }

  



  




  /* contact-info.css */

/* Container using one solid color */
.contact-info-wrapper {
    background-color: #2C3E50;  /* Single, solid dark blue-gray color */
    color: #ECF0F1;             /* Light text color for contrast */
    padding: 2rem;
    border-radius: 10px;
    max-width: 600px;
    /* margin: 40px auto; */
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  }
  
  /* Header: improved typography and spacing */
  .contact-info-header h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
  }
  
  .contact-info-header p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #BDC3C7; /* Soft muted contrast */
  }
  
  /* Contact items: vertical gap and aligned layout */
  .contact-info-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem; /* Uniform vertical spacing */
  }
  
  .contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem; /* Spacing between icon and text */
  }
  
  /* Icon styling with accent color */
  .contact-icon {
    font-size: 1.5rem;
    margin-top: 0.25rem;
    color: #18BC9C;
  }
  
  /* Text styling for details */
  .contact-details h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.125rem;
    font-weight: bold;
  }
  
  .contact-details p {
    margin: 0;
    line-height: 1.6;
    font-size: 0.875rem;
  }
  
  /* Social Connect Section: centered with refined spacing */
  .social-connect {
    margin-top: 2rem;
    text-align: center;
  }
  
  .social-connect h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  
  /* Social icons: circular buttons with solid color backgrounds */
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
  }
  
  .social-icons a {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #34495E;
    border-radius: 50%;
    color: #ECF0F1;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .social-icons a:hover {
    background-color: #18BC9C;
  }
  















  
.contact-form-container {
    width: 100%;
    padding: 2rem;
    box-sizing: border-box;
  }
  
  /* Style form rows to wrap on smaller screens */
  .form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  /* Ensure form groups take full width on smaller screens */
  .form-group {
    flex: 1;
    min-width: 250px; /* Prevents the input from becoming too narrow */
  }
  
  /* Make inputs and selects responsive */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  select,
  textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .form-row {
      flex-direction: column;
    }
  }
  








  .partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* or 'cover' depending on your desired effect */
}





















/* Footer */
footer {
  background-color: var(--secondary-color);
  color: #fff;
  padding: 80px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.footer-logo span {
  color: var(--primary-color);
}

.footer-logo p {
  margin-bottom: 20px;
}

.footer-contact-info p {
  margin: 8px 0;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
}

.footer-contact-info p i {
  margin-right: 10px;
  font-size: 1.1rem;
}

.footer-links h3,
.footer-social h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h3::after,
.footer-social h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background-color: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: var(--primary-color);
  transform: translateY(-5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
  color: #ddd;
}

@media screen and (max-width: 576px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-links h3::after,
  .footer-social h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .social-icons {
    justify-content: center;
  }
}













/* 2. Centering wrapper for the button/link */
.call-action-content {
  text-align: center;       /* centers the inline <a> */
  padding: 20px 0;          /* optional vertical padding */
}

/* 3. (Optional) if you want the <a> to be a bit wider or styled differently */
.call-action-content .btn {
  display: inline-block;    /* ensures margin/padding behave predictably */
  padding: 12px 30px;
  font-size: 1rem;
  border-radius: 4px;
  text-decoration: none;
}

/* 4. (Optional) adjust container max-width if needed */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}















/* ---------- Navbar (REVISED) ---------- */
header {
  background: #fff;
  padding: 20px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.logo h1 {
  color: var(--secondary-color);
  font-size: 1.8rem;
  font-weight: 700;
}
.logo span {
  color: var(--primary-color);
}

/* Hamburger icon – hidden on desktop, shown on mobile */
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--secondary-color);
  cursor: pointer;
}

/* Desktop menu: horizontal */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 25px;
}
.nav-menu a {
  text-decoration: none;
  color: var(--secondary-color);
  font-weight: 600;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s;
}
.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

/* --------------- MOBILE (≤ 768px) --------------- */
@media (max-width: 768px) {
  /* Show hamburger icon */
  .menu-toggle {
    display: block;
  }

  /* Hide the desktop list by default */
  .nav-menu {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 100%;       /* immediately below the fixed header */
    right: 0;
    left: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 20px 0;
    z-index: 999;
  }

  /* When the hamburger is toggled, show the menu */
  .nav-menu.active {
    display: flex;
  }

  /* Space out each item vertically */
  .nav-menu li {
    margin: 10px 0;
    text-align: center;
  }

  .nav-menu a {
    display: block;
    padding: 10px 0;
  }
}
























@media (max-width: 600px) {
    .job-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .details-btn {
        margin-top: 10px;
        width: 100%;
        text-align: center;
    }
}



























