:root {
    /* Core Color Variables */
	
	/* Fallback first */
	background-color: #6AA2AE;

/* Modern browsers */
	background-color: oklch(59.622% 0.10224 191.39);
    --primary-teal: oklch(59.622% 0.10224 191.39);
    --primary-gold: #f9bc5e;
    --primary-teal-light: rgba(2, 146, 142, 0.5);
    --primary-gold-light: rgba(249, 188, 94, 0.2);

    /* Text Colors */
    --text-dark: #333333;
	
    --text-light: #ffffff;
    --text-light-transparent: rgba(255, 255, 255, 0.9);

    /* Background Colors */
    --bg-white: #ffffff;
    --bg-light: #f5f5f5;
    --bg-dark: #222222;

    /* Effects */
    --shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    --text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);

    /* Spacing */
    --nav-height: 118px;
    --section-padding: 5rem 0;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
	font-size:1rem;
}

body {
    background-color: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    font-weight: 800;
    line-height: 1.2;
}



a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}



/* Navigation styles */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    /*background-color: var(--text-light-transparent);*/
    background-color: #fff;
    backdrop-filter: blur(8px);
    height: var(--nav-height);
    box-shadow: var(--shadow);

}

.navbar {
	/*display:flex;*/
    padding: 20px 4rem;
    
    height: 100%;
}

.nav-container {
    padding-top:1rem;
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
	
}


.logo-container
{
	padding: 20px;
	padding-top: 2rem;
    padding-bottom: 2rem;
	
}
.logo-img {
    height: 170px;
    width: 170px;
    transition: transform 0.3s ease;
     padding-bottom: -2rem;
	
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 1.5rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    /*color: var(--primary-teal);*/
    color: #222222;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link:hover {
    color: var(--primary-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.contact-info-nav {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px 15px;
}

.contact-number,
.contact-email {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    /*color:var(--primary-teal)*/
    color: #222222;
}

.phone-icon,
.email-icon {
    color: var(--primary-gold);
    font-size: 0.9em;
}


.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-teal);
    cursor: pointer;
}

/* Hero section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: linear-gradient(var(--primary-teal-light), var(--primary-gold-light)), url('./Images/banner/banner4.jpg');
    background-size: cover;
    background-position: center;
    color: var(--text-light);
	
    padding: 0 20px;
    margin-top: var(--nav-height);
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-light);
	/*color: var(--primary-teal);*/
    text-shadow: var(--text-shadow);
}

.tagline {
    font-size: 1.9rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--text-light);
	/*color: var(--primary-teal);*/
    line-height: 1.4;
	/*color: var(--primary-gold);*/
}

.sub-tagline {
    
    margin-bottom: 1.5rem;
    font-weight: 400;
    color: var(--text-light);
	/*color: var(--primary-gold);*/
    line-height: 1.8;
    font-size: 1.2rem;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: transparent;
    color: var(--text-light);
    font-size: 1.0rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 0;
    text-decoration: none;
    transition: all 0.4s ease;
    border: 1px solid var(--text-light);
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    color: var(--text-light);
    background-color: var(--primary-teal);
    letter-spacing: 3px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-teal);
    transition: all 0.4s ease;
    z-index: -1;
}

.cta-button:hover::before {
    left: 0;
}

/* About Section */
.about-section {
    padding: 5rem 2rem;
    /*background-color:rgba(223, 190, 180, 0.8) ;*/
	background: linear-gradient(135deg, #fce8e0, #e0f7f6);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.sub-section-title
{
	color:var(--primary-gold);
	
}


.mission-box,
.vision-box {
    background-image: linear-gradient(var(--primary-teal-light), var(--primary-gold-light)), url('./Images/banner/footer1.jpg');
    padding: 3rem 2rem 2rem;
    border-radius: 10px;
    text-align: center;
    position: relative;
    /*border: 2px solid #17a2b8;*/
    margin-top: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
   /* color: #f5f5f5;*/
   color:#fff;
}

.mission-box:hover,
.vision-box:hover {
    transform: translateY(-10px);
}

.top-icon {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /*border: 2px solid  var(--primary-teal);*/
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-size: 1.8rem;
    color: #ffc107;
}

.mission-top-icon {
    background: #f9bc5e;
    color: #fff;
}

.vision-top-icon {
    background: #f9bc5e;
    color: #fff;
}

.arrow-box {
    padding: 0 1.5rem;
}

.arrow-icon {
    font-size: 2.5rem;
    color: var(--primary-teal);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

h3 {
    color: var(--primary-teal);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

p {
    color: #f5f5f5;
    line-height: 1.6;
}

.arrow-box {
    padding: 0 1rem;
}

.arrow-icon {
    width: 100px;
    height: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }

    .arrow-box {
        padding: 2rem 0;
    }

    .arrow-icon {
        transform: rotate(90deg);
    }
}

/* Services Section */
.services-section {
    padding: var(--section-padding);
    background-image: linear-gradient(rgba(164, 163, 163, 0.5), rgba(198, 195, 195, 0.5)), url('./Images/banner/banner2.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.service-card {
    background-color: rgba(255, 255, 255, 0.85);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex; 
    flex-direction: column; 
    height: 100%; 
}

.service-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--text-light);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(249, 188, 94, 0.4);
}

.service-card h3 {
    color: var(--primary-teal);
    font-size: 1.0rem;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    flex-grow: 1; 
}

.read-more {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(to right, var(--primary-teal), #348b87);
    color: white;
    text-decoration: none;
    border-radius: 15px;
    font-weight: 300;
    font-size: 0.9rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid transparent;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(44, 110, 106, 0.3);
    margin-top: auto; 
    align-self: center; 
}
/*
.read-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(to right, var(--primary-gold), #f8a145);
    transition: all 0.5s;
    z-index: -1;
}

.read-more:hover {
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(249, 188, 94, 0.4);
    border-color: var(--primary-gold);
}

.read-more:hover::before {
    width: 100%;
}
*/
.read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(3px);
}

/* Modern Service Detail Styling */
.service-detail-section {
    margin-top: 80px;
    align-items: center;
}

.service-hero {
    background: linear-gradient(135deg, rgba(8, 8, 8, 0.2) 0%, rgba(33, 34, 34, 0.7) 100%),
                url("./Images/services_images/servicestart.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
   
	padding: 400px 0 60px;
    color: white;
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, 
                rgba(249, 188, 94, 0.15) 0%, 
                transparent 40%);
    z-index: 0;
}

.back-link {
    color: var(--primary-gold);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.back-link:hover {
    color:var(--primary-teal);
    transform: translateX(-5px);
}

.service-content-wrapper {
    padding: 5rem 0;
    background-color: #f8fafb;
    position: relative;
}

.service-content-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.08;
    pointer-events: none;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}


    
   
  
   


.section-title {
    color: black;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    position: relative;
    display: block; 
    text-align: center; 
    width: 100%; 
	text-align: center;
	text-transform: uppercase;
	position: relative;
	display: block; 
	letter-spacing: 2px;
	}





.section-title-servicepage{
    /*color:var(--primary-teal);*/
	color:var(--text-dark: #333333);
	
    font-size: 2.0rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    line-height: 1.2;
    position: relative;
    display: inline-block;
	
}

.section-title-servicepage::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-gold);
    border-radius: 2px;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%; 
    transform: translateX(-50%); 
    width: 60px;
    height: 4px;
    background: var(--primary-gold);
    border-radius: 2px;
}
.service-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    position: relative;
    padding-left: 30px;
	padding-top:2rem;
    margin-bottom: 1.5rem;
}
/*
.service-description::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-gold), var(--primary-teal));
    border-radius: 2px;
}
*/
/* Modern Image Gallery - Revised */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px; 
    margin: 3rem 0;
    align-items: center; 
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    aspect-ratio: 4/3; 
    max-width: 100%; 
}


.gallery-item:hover {
    transform: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.main-image, 
.secondary-image, 
.tertiary-image {
    grid-column: auto;
    grid-row: auto;
    z-index: 1;
}

/* Feature List Styling - unchanged */
.service-features {
    margin: 1rem auto; 
    background: white;
    padding: 0.8rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    max-width: 800px; 
    width: 90%; 
}
.feature {
    display: flex;
    align-items: center; 
    margin-bottom: 0.8rem;
    font-size: 1rem;
    line-height: 1.2rem;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
   
}

.feature:hover {
    background: rgba(249, 188, 94, 0.08);
    transform: translateX(5px);
}

.feature i {
    color: var(--primary-gold);
    margin-right: 12px;
    font-size: 1.2rem;
    flex-shrink: 0;
   
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .image-gallery {
        grid-template-columns: 1fr; /* Stack images on mobile */
        gap: 20px;
    }
    
    .gallery-item {
        max-width: 80%; /* Center images with some margin */
        margin: 0 auto;
    }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .image-gallery {
        grid-template-rows: repeat(6, 50px);
    }
    
    .main-image {
        grid-column: 1 / span 8;
    }
    
    .secondary-image {
        grid-column: 5 / span 6;
    }
}

@media (max-width: 768px) {
    .image-gallery {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .service-description {
        padding-left: 20px;
		
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: var(--section-padding);
 background-color: var(--bg-white);
	/*
	background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.3),    
   rgba(0, 128, 128, 0.3)     
  );*/
  
  /*background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.1),      /* gold */
    /*rgba(255, 218, 185, 0.3),  */  /* peach */
    /*rgba(0, 128, 128, 0.1)  */     /* teal */
  /*);*/
  
  /*background: radial-gradient(circle at left top,
            rgba(249, 188, 94, 0.15) 0%,
           #01504d 100%),
        linear-gradient(to right,
            rgba(54, 120, 134, 0.1) 25%,
            rgba(2, 146, 142, 0.3) 100%);*/
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
   /* background-color: var(--bg-light);*/
    padding: 2rem;
    border-radius: 10px;
    position: relative;
	flex: 0 0 100%;
  max-width: 100%;
   box-sizing: border-box;
}



.quote-icon {
    color: var(--primary-gold);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #222222;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary-teal);
}



/* testimonial sliding*/

.testimonial-slider {
  overflow: hidden;
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}




/* Contact Section 
.contact-section {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

*/
/*
.contact-section {
    background-color: #fdf6e9; 
    padding: var(--section-padding);
}




.contact-section {
    background-color: #e6f7f6; 
    padding: var(--section-padding);
}
*/

.contact-section {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.contact-hero {
    background: 
        linear-gradient(135deg, 
            rgba(249, 188, 94, 0.797) 0%, 
            rgba(255, 255, 255, 0.6) 100%),
        url("./Images/banner/contact2.jpg") center/cover no-repeat fixed;
    padding: 100px 0;
    color: white;
    position: relative;
    
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, 
                rgba(249, 188, 94, 0.3) 0%, 
                transparent 40%);
    z-index: 0;
}

.contact-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.contact-item:hover {
    background: rgba(2, 146, 142, 0.05);
    transform: translateX(5px);
}

.contact-item p {
    color: var(--primary-teal);
    font-weight: 500;
    margin: 0;
}

.contact-item i {
    color: var(--primary-gold);
    font-size: 1.8rem;
    min-width: 40px;
    text-align: center;
}

.contact-form {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.form-group {
    margin-bottom: 1.8rem;
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(2, 146, 142, 0.2);
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-teal);
    outline: none;
    box-shadow: 0 0 0 3px rgba(2, 146, 142, 0.1);
}

.form-button {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(135deg, var(--primary-teal), #027a76);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(2, 146, 142, 0.3);
    width: 100%;
}

.form-button:hover {
    background: linear-gradient(135deg, var(--primary-gold), #f8a845);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(249, 188, 94, 0.4);
}

/* Decorative elements */
.contact-decoration {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, 
                rgba(249, 188, 94, 0.2) 0%, 
                transparent 70%);
    z-index: 1;
}

.decoration-1 {
    top: -50px;
    right: -50px;
}

.decoration-2 {
    bottom: -80px;
    left: -30px;
    width: 300px;
    height: 300px;
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 60px 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 2rem;
    }
}
/* Footer 
.footer {
    background-color: var(--primary-teal);
    color: var(--text-light);
    padding: 3rem 0 1rem;
}

.footer {
    background: linear-gradient(to top, #02928e, #f9f5ef);
    color: var(--text-dark);
    padding: 3rem 0 1rem;
}


.footer {
    background: linear-gradient(to top, #015d5a, rgba(2, 146, 142, 0.2));
    color: var(--text-light);
    padding: 3rem 0 1rem;
}
    */

.footer {
    background-image: url("./Images/banner/footer1.jpg");
	background-repeat: no-repeat;       
	background-size: cover;             
	background-position: center center; 
    color: var(--text-dark);
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 250px;
    width: 250px;
    margin-bottom: 1rem;
}

.footer-links h4,
.footer-about h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    color: #ddd;
}

.footer-links ul {
    list-style: none;
    color:#f8a145
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-about p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-about {
  text-align: justify;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color:var(--primary-gold);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color:white;
    color: var(--primary-gold);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

    .tagline {
        font-size: 1.5rem;
    }

    .sub-tagline {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: var(--nav-height);
        left: -100%;
        width: 80%;
        height: calc(100vh - var(--nav-height));
        background-color: var(--bg-white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 1rem 0;
    }

    .hero {
        height: 80vh;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* CEO Message Section */
/* Improved CEO Message Section */
.ceo-message {
    padding: 6rem 0;
    background: radial-gradient(circle at left top,
            rgba(249, 188, 94, 0.15) 0%,
           #01504d 100%),
        linear-gradient(to right,
            rgba(54, 120, 134, 0.1) 25%,
            rgba(2, 146, 142, 0.3) 100%);

    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.ceo-message::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(249, 188, 94, 0.25) 0%, transparent 70%);
    z-index: 0;
}

.ceo-message::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(2, 146, 142, 0.2) 0%, transparent 70%);
    z-index: 0;
}

.ceo-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15),
                0 0 0 1px rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.ceo-content {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.ceo-image-wrapper {
    flex: 0 0 200px;
    text-align: center;
}

.ceo-image {
    width: 180px;
    height: 180px;
     clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-gold);
    box-shadow: 0 8px 25px rgba(7, 121, 117, 0.3);
    margin-bottom: 1.5rem;
}

.ceo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ceo-image:hover img {
    transform: scale(1.05);
}

.ceo-title h3 {
    font-size: 1.5rem;
    color: #02928e;
    margin-bottom: 0.3rem;
}

.ceo-title p {

    font-style: italic;
    font-size: 0.8rem;
    color: var(--text-dark);
}

.ceo-text-wrapper {
    flex: 1;
}

.section-label {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #02928e;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.ceo-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
}

.ceo-text p {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
    color: #222222;
    font-style: italic;
}

.ceo-text p::before {
   /* content: "•";*/
    position: absolute;
    left: 0;
    color: var(--primary-gold);
}

.signature {
    font-style: italic;
    font-weight: 600;
    color: #02928e;
    margin-top: 1.5rem;
    font-size: 1.1rem;
    text-align: right;
    padding-right: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .ceo-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .ceo-image-wrapper {
        flex: 1;
        width: 100%;
    }
    
    .ceo-image {
        margin: 0 auto 1.5rem;
    }
}


/*founder section
.ceo-title {
    font-size: 1.8rem;
    color: #02928e;
    ;
    margin: 0;
    font-weight: 300;
}

.ceo-position {
    font-size: 0.9rem;
    color: #777;
    margin-top: 0.3rem;
    font-weight: 300;
}

.ceo-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.ceo-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
   /* border: 3px solid #f9bc5e;
    flex-shrink: 0;
}

.ceo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ceo-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #444;
}



.ceo-text .intro {
    color: #333;
    font-weight: 500;
}

.ceo-text .signature {
    font-style: italic;
    color: #02928e;
    font-weight: 500;
    margin-top: 1.5rem;
}


/* Responsive Design */
@media (max-width: 768px) {
    .ceo-content {
        flex-direction: column;
        align-items: center;
    }

    .ceo-image {
        margin-bottom: 1.5rem;
    }

    .ceo-text {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .ceo-card {
        padding: 1.8rem;
    }

    .section-label {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }

    .ceo-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .sub-tagline {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .mission-box,
    .vision-box,
    .service-card {
        padding: 1.5rem;
    }

    .icon-box,
    .service-icon {
        width: 60px;
        height: 60px;
    }

    .mission-icon,
    .vision-icon {
        font-size: 1.5rem;
    }

}






/* === Container for Centering and Layout === */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
	
	
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .header, .navbar {
        flex-direction: column;
        align-items: center;
		
    }
}

@media (min-width: 769px) {
    .container {
        padding: 0 2rem;
    }
}


.contact-section {
    background: linear-gradient(135deg, #fce8e0, #e0f7f6);
    padding: 5rem 1rem;
    /*border-radius: 2rem;*/
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
}



.contact-intro {
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
    font-size: 1.1rem;
    color: #444;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.form-group {
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border-radius: 0.75rem;
    border: 1px solid #ccc;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-teal);
    outline: none;
}

.submit-btn {
    background-color: var(--primary-teal);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 2rem;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #028a86;
}
.contact-details {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: #444;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-item i {
    color: var(--primary-teal);
    font-size: 1.2rem;
}



/*---quote section--*/

#quotes{
background: linear-gradient(135deg, #fce8e0, #e0f7f6);	
background:cover;
	
}
.quote-container {
  padding: var(--section-padding);
  background: linear-gradient(135deg, #fce8e0, #e0f7f6);
  text-align: center;
  width:100%;
  
  max-width:1200px;
  margin: 0 0;
  margin-bottom:1rem;
  position:relative;
  font-style: italic;
  
}

.quote-container blockquote {
  font-size: 1.8rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  color: var(--primary-teal);
  
  font-family: 'Roboto', sans-serif;
font-style: italic;
font-weight: 300;
}

.quote-container cite {
  display: block;
  font-size: 1rem;
  color: #a07e58;
  margin-top: 0.5rem;
  /*font-family: 'Nunito', sans-serif;*/
}

/* testimonial slider*/

/* ===== Main Slider (3 at a time) ===== */
.testimonial-slider {
  overflow: hidden;
  width: 100%;
}
.testimonial-slider .testimonial-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.testimonial-slider .testimonial-card {
  flex: 0 0 calc(100% / 3);
  max-width: calc(100% / 3);
}

/* ===== Secondary Slider (1 at a time) ===== */
.single-testimonial-slider {
  overflow: hidden;
  width: 100%;
}
.single-testimonial-slider .testimonial-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.single-testimonial-slider .testimonial-card {
  flex: 0 0 100%;
  max-width: 100%;
}

.single-testimonial-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.testimonial-card {
  flex: 0 0 100%; /* show only one testimonial at a time */
  box-sizing: border-box;
  padding: 1rem;
}