* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'SangBleuKingdom', sans-serif;
}


:root {
    --primary-color: #8B0000;
    --secondary-color: #333;
    --accent-color: #ff0000;
    --text-color: #333;
    --light-text: #fff;
    --glass-bg: rgba(128, 0, 32, 0.15);
    --glass-border: rgba(128, 0, 32, 0.25);
}

body {
    background-color: #f5f5f5;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Hide scrollbar for Chrome, Safari and Opera */
::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
html {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    border-radius: 10px;
    padding: 30px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Parallax and Animation Effects */
.section-hidden {
   
    transform: translateY(8rem);
    transition: all 1s;
}

.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Slide Up Animation */
.slide-up {
   
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-up.active {
    opacity: 1;
    transform: translateY(0);
}

.background-section {
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-slider {
    height: 100vh;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.slides {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Enhanced Section Transitions */
.about-section,
.specialization-section,
.vision-section {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Parallax Container */
.parallax-container {
    position: relative;
    overflow: hidden;
    height: 100%;
    transform-style: preserve-3d;
}

/* Projects Grid Styles */
.projects-grid {
    padding: 4rem 0;
    background-color: #f5f5f5;
}

.projects-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
}

.project-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.project-overlay h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 1.4;
}

.projects-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 2rem 0;
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.project-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

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

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

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    padding: 1.5rem;
    color: white;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.project-overlay h3 {
    margin: 0;
    font-size: 1.2rem;
    text-transform: capitalize;
}

@media (max-width: 768px) {
    .projects-container {
        grid-template-columns: 1fr;
    }
    
    .specialization-content {
        padding: 15px;
    }
    
    .specialization-image-container {
        margin: 0;
        height: 300px;
    }
    
    .specialization-text {
        margin-top: 10px;
    }
    
    .specialization-text h1 {
        margin-bottom: 10px;
        font-size: 24px;
    }
    
    .specialization-grid h1 {
        font-size: 20px;
        margin-bottom: 5px;
    }
}

/* Header Styles */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.navbar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 30px;
}

.logo {
    justify-self: start;
}

.logo img {
    height: 50px;
}

.navbar-collapse {
    justify-self: center;
}

.navbar-collapse.show {
    display: block;
    background-color: white;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 1rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
}

.navbar-collapse.show .nav-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.navbar-collapse.show .nav-item {
    width: 100%;
    text-align: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.schedule-btn {
    background: #8B0000;
    opacity: 0.7;
    color: var(--light-text);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: background 0.3s ease;
    justify-self: end;
}

.schedule-btn:hover {
    background: var(--accent-color);
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    padding: 20px;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-color);
}

.contact-form {
    display: grid;
    gap: 20px;
}

.form-group {
    display: grid;
    gap: 5px;
}

.form-group input,
.form-group textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

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

.submit-btn {
    background: var(--primary-color);
    color: var(--light-text);
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background: var(--accent-color);
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links.scrolled a {
    color: var(--text-color);
}

.nav-links a:hover {
    color: var(--primary-color);
    background: rgba(139, 0, 0, 0.1);
}

/* Hero Slider Styles */
.hero-slider {
    height: 100vh;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.slides {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slides {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    text-align: left;
    color: #ffffff;
    opacity: 0;
    z-index: 2;
    transition: opacity 1s ease, transform 1s ease;
}


.slide.active .hero-text {
    opacity: 1;
    transform: translateY(0);
}

.slide:not(.active) .hero-text {
    opacity: 0;
    transform: translateY(50px);
}

.hero-text h1 {
    font-size: 3.1rem;
    margin-bottom: 1rem;
    font-weight: 800;
    font-family: 'SangBleuKingdom', serif;
    letter-spacing: 1px;
    line-height: 1.2;
}

.Mtitle {
    z-index: 3;
    position: relative;
}

.Mletter {
    font-size: 400px;
    z-index: 2;
    position: absolute;
    top: -150px;
    color: #921010ba;
    left: 280px;
}

.hero-text h1 .project,
.hero-text h1 .scope,
.hero-text h1 .limited {
    margin-bottom: 1rem;
    font-size: 50px;
    font-family: 'SangBleuKingdom', serif;
}

.hero-text h1 .project {
    color: #ff0000;
}

.hero-text h1 .scope {
    color: #171717;
}

.hero-text h1 .limited {
    color: #ffffff;
}

.hero-text p {
    font-size: 1.8rem;
    max-width: 600px;
    color: #ffffff;
    text-align: left;
    margin: 0;
    font-family: 'SangBleuKingdom', serif;
    font-weight: 400;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 0.5rem;
    }

    .hero-text h1 .project,
    .hero-text h1 .scope,
    .hero-text h1 .limited {
        font-size: 2.5rem;
        margin: 0 3px;
    }

    .hero-text p {
        font-size: 1.2rem;
        max-width: 100%;
    }
}

.services-list li::marker {
    color: red;
  } 

.services-list {
    list-style: none;
    margin-top: 20px;
}

.services-list li {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 10px;
    font-family: 'SangBleuKingdom', sans-serif;
    font-weight: 400;
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 0.8s ease forwards;
}

.services-list li:nth-child(1) { animation-delay: 0.2s; }
.services-list li:nth-child(2) { animation-delay: 0.4s; }
.services-list li:nth-child(3) { animation-delay: 0.6s; }
.services-list li:nth-child(4) { animation-delay: 0.8s; }
.services-list li:nth-child(5) { animation-delay: 1s; }

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

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--light-text);
    padding: 40px;
    max-width: 800px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* About Section Styles */
.about-section {
    padding: 60px 0;
    position: relative;
    z-index: 2;
    background-color: #f5f5f5;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px;
    position: relative;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.about-text h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-text p {
    color: #6d6868;
    transition: color 0.3s ease;
    font-size: 14px;
}

.about-text.overlap p {
    color: #6d6868;
}

.read-more-btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--light-text);
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.read-more-btn:hover {
    background: var(--accent-color);
}

.experience-counter {
    margin-top: 30px;
    text-align: center;
}

.counter {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Specialization Section Styles */
.specialization-section {
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 10%, rgba(25, 139, 144, 0.95) 30%, #198b90 50%), linear-gradient(to bottom, #198b90, white);
    padding: 80px 0;
}

.specialization-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px;
    background: #198b90;
    color: #fff;
}

.specialization-section h1 {
    text-align: center;
    font-size: 2.5rem;
    margin: 0 0 60px 0;
    color: white;
    font-family: 'SangBleuKingdom', serif;
}

.specialization-text h2 {
    color: #fff;
    
    margin-top: 40px;
    margin-bottom: 10px;
    font-family: 'SangBleuKingdom', serif;
}

.specialization-button {
    background: #198b90;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    margin: 0 10px;
    box-shadow: 4px 4px 8px #147478,
               -4px -4px 8px #1ea2a8;
}

.specialization-button:hover {
    background: #1a9da3;
    box-shadow: inset 4px 4px 8px #147478,
               inset -4px -4px 8px #1ea2a8;
}

.specialization-text h2 {
    color: var(--light-text);
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.specialization-text h1 {
    font-family: 'SangBleuKingdom', serif;
    font-size: 2rem;
    color: #8B0000;
    margin-top: 30px;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
    text-align: left;
}

.specialization-text p {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 20px;
    font-family: 'SangBleuKingdom', sans-serif;
}

.specialization-grid {
    position: absolute;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-20px);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.specialization-grid.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}


.specialization-text {
    color: var(--light-text);
}

.specialization-text p {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 20px;
    font-family: 'SangBleuKingdom', sans-serif;
}

.specialization-controls {
    display: flex;
    gap: 20px;
    margin-top: 10px;
    margin-bottom: 30px;
}

.specialization-button {
    padding: 12px 25px;
    margin: 0 10px;
    border: none;
    background: #1a9da3;
    color: #ffffff;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 5px 5px 10px #147478, -5px -5px 10px #1ec6cc;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'SangBleuKingdom', sans-serif;
    font-size: 1.2rem;
}

.specialization-button:hover {
    background: #1b8e93;
    color: #ffffff;
    box-shadow: inset 4px 4px 8px #147478, inset -4px -4px 8px #1ec6cc;
}

.specialization-image-container {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 10px;
    background-color: #f5f5f5;
}

.specialization-image-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.specialization-image-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 1;
}

.specialization-item {
    padding: 30px;
    text-align: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.specialization-item:hover {
    transform: translateY(-5px);
}

.specialization-item i {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.specialization-item h3 {
    font-family: 'SangBleuKingdom', serif;
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    letter-spacing: 1px;
    font-weight: 700;
}

.specialization-item p {
    font-family: 'SangBleuKingdom', sans-serif;
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.6;
    padding: 15px;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.specialization-grid p {
    transition: all 0.3s ease;
    padding: 15px;
    border-radius: 8px;
}

.specialization-grid p:hover {
     transform: translateY(-2px);
    background: rgba(25, 139, 144, 0.15);
    box-shadow: 4px 4px 8px rgba(20, 116, 120, 0.3),
                -4px -4px 8px rgba(30, 162, 168, 0.2);
}

.specialization-button {
    background: #198b90;
    color: var(--light-text);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 10px;
    box-shadow: 5px 5px 10px #147478,
                -5px -5px 10px #1ea2a8;
}

.specialization-button:hover {
    background: #1a9da3;
    box-shadow: inset 5px 5px 10px #147478,
                inset -5px -5px 10px #1ea2a8;
    transform: translateY(2px);
}

.specialization-text blockquote {
    background: rgba(139, 0, 0, 0.02);
    border-left: 6px solid var(--primary-color);
    padding: 40px;
    margin: 40px 0;
    border-radius: 0 20px 20px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.quote-section {
    padding: 100px 0;
    background: #fff;
}

.quote-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
    text-align: center;
}

.quote-text {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.8;
    padding: 0rem;
    font-style: italic;
    font-family: 'SangBleuKingdom', serif;
    text-align: center;
}

.quote-subtext {
    font-size: 1.1rem;
    color: rgb(25, 139, 144);
    font-style: normal;
    margin-top: 15px;
    opacity: 0.9;
    font-family: 'SangBleuKingdom', sans-serif;
    text-align: center;
}

.specialization-image-container {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.specialization-image-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.specialization-image-slide.active {
    opacity: 1;
    transform: scale(1);
}

.specialization-image-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Vision Mission Section Styles */
.vision-mission-section {
    padding: 100px 0;
}

.vision-mission-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media screen and (max-width: 768px) {
    .vision-mission-content {
        grid-template-columns: 1fr;
    }
}

.neumorphic-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 8px 8px 16px #d1d1d1, -8px -8px 16px #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.neumorphic-card:hover {
    transform: translateY(-5px);
    box-shadow: 12px 12px 20px #d1d1d1, -12px -12px 20px #ffffff;
}

.vision-box h2, .mission-box h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 25px;
    text-align: center;
    font-family: 'SangBleuKingdom', serif;
}

.vision-box p, .mission-box p {
    font-size: 0.8rem;
    line-height: 1.8;
    color: var(--secondary-color);
    text-align: center;
    font-family: 'SangBleuKingdom', sans-serif;
}

/* Services Page Styles */
.services-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/services/construction.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    text-align: left;
    position: relative;
}

.services-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    font-family: 'SangBleuKingdom', serif;
    letter-spacing: 1px;
    line-height: 1.2;
}

.services-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    color: #ffffff;
    text-align: center;
    margin: 0;
    font-family: 'SangBleuKingdom', serif;
    font-weight: 400;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 1.0rem;
        line-height: 1.2;
        margin-bottom: 0.5rem;
    }

    .services-hero p {
        font-size: 0.5rem;
        max-width: 100%;
    }
}

.services-grid {
    padding: 80px 0;
}

.services-slider {
    position: relative;
    padding: 30px;
    margin: 40px 0;
    overflow: hidden;
}

.service-slides {
    position: relative;
    width: 100%;
    height: 450px;
}

.service-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    display: flex;
    gap: 30px;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.service-slide.active {
    opacity: 1;
    visibility: visible;
}

.service-image {
    flex: 1;
    overflow: hidden;
    border-radius: 10px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    background-color: #f5f5f5;
}

.service-content {
    flex: 1;
    padding: 20px;
}

.service-controls {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}

.service-nav {
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.service-nav:hover {
    background-color: #fff;
    transform: scale(1.1);
}

.service-nav i {
    color: #333;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .service-controls {
        padding: 0 10px;
    }
    
    .service-nav {
        width: 35px;
        height: 35px;
    }
}

.service-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(139, 0, 0, 0.3);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.indicator.active {
    background: var(--primary-color);
}

.service-content h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 20px;
    font-family: 'SangBleuKingdom', serif;
}



.cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.cta-btn {
    padding: 12px 25px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    font-family: 'SangBleuKingdom', sans-serif;
}

.cta-btn:hover {
    background-color: var(--secondary-color);
}

.advisory-section {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.05));
}

.advisory-content {
    padding: 50px;
    margin: 40px auto;
    max-width: 1000px;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.advisory-content:hover {
    transform: translateY(-5px);
}

.advisory-content h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.advisory-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

.advisory-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--secondary-color);
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.advisory-list {
    list-style: none;
    padding: 0;
    margin: 30px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 900px;
}

.advisory-list li {
    font-size: 1.15rem;
    color: var(--secondary-color);
    padding: 20px;
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}

.advisory-list li:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.9);
}

.equipment-section {
    padding: 80px 0;
}

.equipment-section h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-family: 'SangBleuKingdom', serif;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.equipment-category {
    padding: 30px;
}

.equipment-category h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-family: 'SangBleuKingdom', serif;
}

.equipment-category ul {
    margin: 15px 0;
}

.equipment-category li {
    font-size: 0.8rem;
    padding: 8px 0;
    line-height: 1.5;
    text-transform: capitalize;
    color: #333;
}

@media (max-width: 768px) {
    .services-slider {
        padding: 1rem;
        margin: 1rem auto;
    }

    .service-slide {
        display: block;
    }

    .service-image {
        display: none;
    }

    .service-content {
        padding: 1rem;
    }

 

    .service-content p {
        font-size: 0.95rem;
        line-height: 1.5;
        text-align: justify;
        margin-bottom: 1rem;
    }

    .service-controls {
        margin-top: 1rem;
    }

    .advisory-list {
        grid-template-columns: 1fr;
    }

    .history-image {
        display: none;
    }

    .history-content {
        grid-template-columns: 1fr;
    }

    .history-text {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 1rem;
        line-height: 1.4;
    }

    .hero-content {
        padding: 20px;
        max-width: 100%;
        background: rgba(0, 0, 0, 0.7);
    }
}

/* About Page Styles */
.about-page-hero {
    background-image: url('images/About.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
}

.about-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7));
}

.about-page-hero .container {
    position: relative;
    z-index: 1;
}

.about-page-hero h1 {
    font-size: 1.5rem;
    font-family: 'SangBleuKingdom', serif;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease;
}

.history-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.history-content {
    display: grid;
    
    gap: 40px;
    
    align-items: center;
}

.history-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-family: 'SangBleuKingdom', serif;
}

.history-text p {
    margin-bottom: 20px;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
}

.profile-download {
    margin-top: 30px;
    padding: 20px 20px;
    background: rgba(139, 0, 0, 0.05);
    border-radius: 10px;
}

.profile-download h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-family: 'SangBleuKingdom', serif;
    font-size: 1.3rem;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: var(--light-text);
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.core-values-section {
    padding: 80px 0;
    background: #f9f9f9;
    overflow: hidden;
}

.core-values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 50px;
    font-family: 'SangBleuKingdom', serif;
}

.core-values-slider {
    position: relative;
    width: 100%;
    padding: 40px 0;
}

.core-values-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
    padding: 0 20px;
    max-width: 100%;
    margin: 0 auto;
}

.core-value {
    flex: 0 0 300px;
    padding: 30px;
    text-align: center;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.core-value i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.core-value h3 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-top: 15px;
    font-family: 'SangBleuKingdom', sans-serif;
}

.core-value:hover {
    transform: translateY(-5px);
}

.core-value:hover i {
    transform: scale(1.1);
    color: var(--accent-color);
}

.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    pointer-events: none;
}

.prev-btn,
.next-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    pointer-events: auto;
}

.prev-btn:hover,
.next-btn:hover {
    background: var(--accent-color);
}

.board-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.board-section h2 {
    text-align: center;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-family: 'SangBleuKingdom', serif;
}

.board-members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.board-member-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.board-member-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-family: 'SangBleuKingdom', serif;
}

.board-member-card h4 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-family: 'SangBleuKingdom', serif;
}

.board-member-card p {
    color: var(--secondary-color);
    font-size: 0.8rem;
    line-height: 1.6;
    font-family: 'SangBleuKingdom', sans-serif;
}

/* Follow Us and Let's Talk Section */
.social-contact-section {
    padding: 0;
    color: var(--light-text);
    margin-bottom: 0;
    font-family: 'SangBleuKingdom', serif;
}

.social-contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    max-width: none;
    margin: 0;
}

.social-links {
    background: #121212;
    padding: 120px 10%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'SangBleuKingdom', serif;
}

.lets-talk {
    text-align: center;
    background: #2a2a2a;
    font-size: 15;
    padding: 120px 10%;
}

.social-links h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: 600;
    font-family: 'SangBleuKingdom', serif;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-icons a {
    color: var(--light-text);
    font-size: 28px;
    transition: all 0.3s ease;
    font-family: 'SangBleuKingdom', serif;
}

.social-icons a:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
}

.lets-talk {
    text-align: right;
}

.lets-talk h2 {
    font-size: 2.0rem;
    margin-bottom: 30px;
    font-weight: 600;
    font-family: SangBleuKingdom;
}

.enquiries-btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--light-text);
    padding: 18px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.2);
}

.enquiries-btn:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.25);
}

@media (max-width: 768px) {
    .social-contact-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0px;
    }

    .social-icons {
        justify-content: center;
    }

    .lets-talk {
        text-align: center;
    }

    .social-links h2,
    .lets-talk h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
}

/* Footer Styles */
.footer {
    padding: 40px 0 20px;
    background-color: rgb(23, 23, 23) !important;
    color: #ffffff !important;
    backdrop-filter: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 15px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo img {
    height: 60px;
    width: auto;
    margin-bottom: 15px;
}

.footer-links h3,
.footer-contact h3 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'SangBleuKingdom', serif;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 12px;
}

.footer-links ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.1rem;
    display: inline-block;
    position: relative;
}

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

.footer-links ul li a:hover::after {
    width: 100%;
}

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

.footer-contact .contact-info {
    display: grid;
    gap: 20px;
}

.footer-contact .contact-info p {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.6;
}

.footer-contact .contact-info p strong {
    display: block;
    margin-bottom: 5px;
    font-size: 1.1rem;
    color: #ffffff;
}

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

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-logo {
        grid-column: 1 / -1;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 0px;
    }
    
    .footer-links,
    .footer-contact {
        text-align: center;
    }
    
    .footer-contact .contact-info {
        justify-items: center;
    }
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/slide1.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: #fff;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: 'SangBleuKingdom', serif;
}

.contact-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px;
}

.contact-info h2,
.contact-form h2 {
    font-family: 'SangBleuKingdom', serif;
    margin-bottom: 30px;
    color: #333;
}

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

.info-item i {
    font-size: 24px;
    color: #8B0000;
    margin-right: 20px;
    margin-top: 5px;
}

.info-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.info-content p {
    color: #666;
    line-height: 1.6;
}

.contact-form form {
    display: grid;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'SangBleuKingdom', sans-serif;
    max-width: 500px;
    width: 100%;
}

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

.submit-btn {
    background-color: #8B0000;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
    max-width: 500px;
    width: 100%;
}

.submit-btn:hover {
    background-color: #660000;
}

.map-section {
    padding: 0 0 80px 0;
}

.map-container {
    padding: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.map-container iframe {
    border-radius: 4px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        z-index: 1000;
        padding: 1rem;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .navbar-collapse.show {
        display: block !important;
    }

    .nav-links {
        display: flex !important;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .nav-links .nav-item a {
        color: black;
    }

    .about-content,
    .specialization-content,
    .vision-content,
    .footer-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1,
    .contact-hero h1 {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .hero-content p {
        font-size: 1.2rem;
        line-height: 1.5;
    }

    .hero-content {
        padding: 25px;
        max-width: 95%;
        background: rgba(0, 0, 0, 0.6);
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .services-list li {
        font-size: 0.9rem;
    }

    .nav-links {
        display: none;
    }

    .navbar-toggler {
        display: none;
        background-color: transparent;
        border: 2px solid var(--primary-color);
        padding: 0.5rem;
        margin-left: auto;
        cursor: pointer;
        z-index: 1100;
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        display: inline-block;
        width: 1.5em;
        height: 1.5em;
        vertical-align: middle;
    }

    @media (max-width: 991px) {
        .navbar-toggler {
            display: block;
        }
    }
    
    .map-container iframe {
        height: 300px;
    }
}
.background-section {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
    margin-bottom: -4px;
}

.section-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.background-text {
    color: #fff;
    padding: 2rem;
    max-width: 800px;
}

.background-text h2 {
    font-family: 'SangBleuKingdom', serif;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.background-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .background-text h2 {
        font-size: 2rem;
    }
    .background-text p {
        font-size: 1rem;
    }
}

/* Specialization Section Styles */
.specialization-section {
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 10%, rgba(25, 139, 144, 0.95) 30%, #198b90 50%), linear-gradient(to bottom, #198b90, white);
    padding: 80px 0;
}

.specialization-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px;
    background: #198b90;
    color: #fff;
}

.specialization-section h1 {
    text-align: center;
    font-size: 2.5rem;
    margin: 0 0 60px 0;
    color: white;
    color: var(--light-text);
    font-family: 'SangBleuKingdom', serif;
}

.specialization-text h2 {
    color: #fff;
    margin-top: 40px;
    margin-bottom: 20px;
    font-family: 'SangBleuKingdom', serif;
    font-weight: 500;
}

.specialization-button {
    background: #198b90;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    margin: 0 10px;
    box-shadow: 4px 4px 8px #147478,
               -4px -4px 8px #1ea2a8;
}

.specialization-button:hover {
    background: #1a9da3;
    box-shadow: inset 4px 4px 8px #147478,
               inset -4px -4px 8px #1ea2a8;
}

.specialization-text h2 {
    color: var(--light-text);
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.specialization-text h1 {
    font-family: 'SangBleuKingdom', serif;
    font-size: 2rem;
    color: #8B0000;
    margin-top: 25px;
    margin-bottom: 15px;
    line-height: 1.2;
    font-weight: 700;
    text-align: left;
}

.specialization-text p {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 20px;
    font-family: 'SangBleuKingdom', sans-serif;
}

.specialization-grid {
    display: none;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.specialization-grid.active {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    opacity: 1;
    transform: translateX(0);
}

.specialization-grid h3 {
    color: #fff;
    margin-bottom: 15px;
}

.specialization-grid p {
    color: #fff;
    line-height: 1.6;
}

.specialization-text {
    color: var(--light-text);
}

.specialization-text p {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 20px;
    font-family: 'SangBleuKingdom', sans-serif;
}

.specialization-controls {
    display: flex;
    gap: 20px;
    margin-top: 10px;
    margin-bottom: 30px;
}

.specialization-button {
    padding: 12px 25px;
    margin: 0 10px;
    border: none;
    background: #1a9da3;
    color: #ffffff;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 5px 5px 10px #147478, -5px -5px 10px #1ec6cc;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'SangBleuKingdom', sans-serif;
    font-size: 1.2rem;
}

.specialization-button:hover {
    background: #1b8e93;
    color: #ffffff;
    box-shadow: inset 4px 4px 8px #147478, inset -4px -4px 8px #1ec6cc;
}

.specialization-image-container {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 10px;
    background-color: #f5f5f5;
}

.specialization-image-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.specialization-image-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 1;
}

.specialization-item {
    padding: 30px;
    text-align: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.specialization-item:hover {
    transform: translateY(-5px);
}

.specialization-item i {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.specialization-item h3 {
    font-family: 'SangBleuKingdom', serif;
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    letter-spacing: 1px;
    font-weight: 700;
}

.specialization-item p {
    font-family: 'SangBleuKingdom', sans-serif;
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.6;
    padding: 15px;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.specialization-grid p {
    transition: all 0.3s ease;
    padding: 15px;
    border-radius: 8px;
}

.specialization-grid p:hover {
    transform: translateY(-2px);
    background: rgba(25, 139, 144, 0.15);
    box-shadow: 4px 4px 8px rgba(20, 116, 120, 0.3),
                -4px -4px 8px rgba(30, 162, 168, 0.2);
}

.specialization-button {
    background: #198b90;
    color: var(--light-text);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 10px;
    box-shadow: 5px 5px 10px #147478,
                -5px -5px 10px #1ea2a8;
}

.specialization-button:hover {
    background: #1a9da3;
    box-shadow: inset 5px 5px 10px #147478,
                inset -5px -5px 10px #1ea2a8;
    transform: translateY(2px);
}

.specialization-text blockquote {
    background: rgba(139, 0, 0, 0.02);
    border-left: 6px solid var(--primary-color);
    padding: 40px;
    margin: 40px 0;
    border-radius: 0 20px 20px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.quote-section {
    padding: 100px 0;
    background: #fff;
}

.quote-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
    text-align: center;
}

.quote-text {
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.8;
    font-style: italic;
    font-family: 'SangBleuKingdom', serif;
    text-align: center;
}

.quote-subtext {
    font-size: 1.1rem;
    color: rgb(25, 139, 144);
    font-style: normal;
    margin-top: 15px;
    opacity: 0.9;
    font-family: 'SangBleuKingdom', sans-serif;
    text-align: center;
}

.specialization-image-container {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.specialization-image-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.specialization-image-slide.active {
    opacity: 1;
    transform: scale(1);
}

.specialization-image-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Vision Mission Section Styles */
.vision-mission-section {
    padding: 100px 0;
}

.vision-mission-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media screen and (max-width: 768px) {
    .vision-mission-content {
        grid-template-columns: 1fr;
    }
}

.neumorphic-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 8px 8px 16px #d1d1d1, -8px -8px 16px #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.neumorphic-card:hover {
    transform: translateY(-5px);
    box-shadow: 12px 12px 20px #d1d1d1, -12px -12px 20px #ffffff;
}

.vision-box h2, .mission-box h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 25px;
    text-align: center;
    font-family: 'SangBleuKingdom', serif;
}

.vision-box p, .mission-box p {
    font-size: 0.8rem;
    line-height: 1.8;
    color: var(--secondary-color);
    text-align: center;
    font-family: 'SangBleuKingdom', sans-serif;
}

/* Services Page Styles */
.services-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/services/construction.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    text-align: left;
    position: relative;
}

.services-hero h1 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    font-family: 'SangBleuKingdom', serif;
    letter-spacing: 1px;
    line-height: 1.2;
}

.services-hero p {
    font-size: 1.0rem;
    max-width: 600px;
    color: #ffffff;
    text-align: left;
    margin: 0;
    font-family: 'SangBleuKingdom', serif;
    font-weight: 400;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 1.5rem;
        line-height: 1.2;
        margin-bottom: 0.5rem;
    }

    .services-hero p {
        font-size: 0.5rem;
        max-width: 100%;
    }
}

.services-grid {
    padding: 80px 0;
}

.services-slider {
    position: relative;
    padding: 30px;
    margin: 40px 0;
    overflow: hidden;
}

.service-slides {
    position: relative;
    width: 100%;
    height: 450px;
}

.service-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    display: flex;
    gap: 30px;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.service-slide.active {
    opacity: 1;
    visibility: visible;
}

.service-image {
    flex: 1;
    overflow: hidden;
    border-radius: 10px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    background-color: #f5f5f5;
}

.service-content {
    flex: 1;
    padding: 20px;
}

.service-controls {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}

.service-nav {
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.service-nav:hover {
    background-color: #fff;
    transform: scale(1.1);
}

.service-nav i {
    color: #333;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .service-controls {
        padding: 0 10px;
    }
    
    .service-nav {
        width: 35px;
        height: 35px;
    }
}

.service-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(139, 0, 0, 0.3);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.indicator.active {
    background: var(--primary-color);
}

.service-content h2 {
    margin-top: 1.5rem;
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 20px;
    font-family: 'SangBleuKingdom', serif;
}



.cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.cta-btn {
    padding: 12px 25px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    font-family: 'SangBleuKingdom', sans-serif;
}

.cta-btn:hover {
    background-color: var(--secondary-color);
}

.advisory-section {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.05));
}

.advisory-content {
    padding: 50px;
    margin: 40px auto;
    max-width: 1000px;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.advisory-content:hover {
    transform: translateY(-5px);
}

.advisory-content h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.advisory-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

.advisory-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--secondary-color);
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.advisory-list {
    list-style: none;
    padding: 0;
    margin: 30px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 900px;
}

.advisory-list li {
    font-size: 1.15rem;
    color: var(--secondary-color);
    padding: 20px;
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}

.advisory-list li:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.9);
}

.equipment-section {
    padding: 80px 0;
}

.equipment-section h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 50px;
    font-family: 'SangBleuKingdom', serif;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.equipment-category {
    padding: 30px;
}

.equipment-category h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-family: 'SangBleuKingdom', serif;
}

.equipment-category ul {
    margin: 15px 0;
}


@media (max-width: 768px) {
    .services-slider {
        padding: 1rem;
        margin: 1rem auto;
    }

    .service-slide {
        display: block;
    }

    .service-image {
        display: none;
    }

    .service-content {
        padding: 1rem;
    }


    .service-content p {
        font-size: 0.95rem;
        line-height: 1.5;
        text-align: justify;
        margin-bottom: 1rem;
    }

    .service-controls {
        margin-top: 1rem;
    }

    .advisory-list {
        grid-template-columns: 1fr;
    }

    .history-image {
        display: none;
    }

    .history-content {
        grid-template-columns: 1fr;
    }

    .history-text {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.0rem;
        margin-bottom: 10px;
    }

    .hero-content p {
        font-size: 0.9rem;
        line-height: 1.3;
    }

    .hero-content {
        padding: 15px;
    }
}

/* About Page Styles */
.about-page-hero {
    background-image: url('images/About.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
}

.about-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7));
}

.about-page-hero .container {
    position: relative;
    z-index: 1;
}

.about-page-hero h1 {
    font-size: 1.5rem;
    font-family: 'SangBleuKingdom', serif;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease;
}

.history-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.history-content {
    display: grid;
   
    gap: 40px;
    
    align-items: center;
}

.history-text h2 {
    font-weight: 600;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-family: 'SangBleuKingdom', serif;
}

.history-text p {
    margin-bottom: 20px;
    color: #555;
    font-size: 0.8rem;
    line-height: 1.8;
}

.profile-download {
    margin-top: 30px;
    padding: 20px 20px;
    background: rgba(139, 0, 0, 0.05);
    border-radius: 10px;
}

.profile-download h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: var(--light-text);
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.core-values-section {
    padding: 80px 0;
    background: #f9f9f9;
    overflow: hidden;
}

.core-values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 50px;
    font-family: 'SangBleuKingdom', serif;
}

.core-values-slider {
    position: relative;
    width: 100%;
    padding: 40px 0;
}

.core-values-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
    padding: 0 20px;
    max-width: 100%;
    margin: 0 auto;
}

.core-value {
    flex: 0 0 300px;
    padding: 30px;
    text-align: center;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.core-value i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.core-value h3 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-top: 15px;
}

.core-value:hover {
    transform: translateY(-5px);
}

.core-value:hover i {
    transform: scale(1.1);
    color: var(--accent-color);
}

.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    pointer-events: none;
}

.prev-btn,
.next-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    pointer-events: auto;
}

.prev-btn:hover,
.next-btn:hover {
    background: var(--accent-color);
}

.board-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.board-section h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-family: 'SangBleuKingdom', serif;
}

.board-members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.board-member-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.board-member-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-family: 'SangBleuKingdom', serif;
}

.board-member-card h4 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-family: 'SangBleuKingdom', serif;
}

.board-member-card p {
    color: var(--secondary-color);
    font-size: 0.8rem;
    line-height: 1.6;
    font-family: 'SangBleuKingdom', sans-serif;
}

/* Follow Us and Let's Talk Section */
.social-contact-section {
    padding: 0;
    color: var(--light-text);
    margin-bottom: 0;
    font-family: 'SangBleuKingdom', serif;
}

.social-contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    max-width: none;
    margin: 0;
}

.social-links {
    background: #121212;
    padding: 120px 10%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'SangBleuKingdom', serif;
}

.lets-talk {
    text-align: center;
    background: #2a2a2a;
    font-size: 15px;
    padding: 120px 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'SangBleuKingdom', serif;
}

.social-links h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: 600;
    font-family: 'SangBleuKingdom', serif;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-icons a {
    color: var(--light-text);
    font-size: 28px;
    transition: all 0.3s ease;
    font-family: 'SangBleuKingdom', serif;
}

.social-icons a:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
}

.lets-talk {
    text-align: right;
}

.lets-talk h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: 600;
}

.enquiries-btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--light-text);
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.2);
}

.enquiries-btn:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.25);
}

@media (max-width: 768px) {
    .social-contact-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0px;
    }

    .social-icons {
        justify-content: center;
    }

    .lets-talk {
        text-align: center;
    }

    .social-links h2,
    .lets-talk h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
}

/* Footer Styles */
.footer {
    background-color: rgb(62, 61, 61);
    padding: 20px 0;
    color: #ffffff;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 15px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo img {
    height: 60px;
    width: auto;
    margin-bottom: 15px;
}

.footer-links h3,
.footer-contact h3 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'SangBleuKingdom', serif;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 12px;
}

.footer-links ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.1rem;
    display: inline-block;
    position: relative;
}

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

.footer-links ul li a:hover::after {
    width: 100%;
}

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

.footer-contact .contact-info {
    display: grid;
    gap: 20px;
}

.footer-contact .contact-info p {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.6;
}

.footer-contact .contact-info p strong {
    display: block;
    margin-bottom: 5px;
    font-size: 1.1rem;
    color: #ffffff;
}

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

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-logo {
        grid-column: 1 / -1;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 0px;
    }
    
    .footer-links,
    .footer-contact {
        text-align: center;
    }
    
    .footer-contact .contact-info {
        justify-items: center;
    }
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/slide1.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: #fff;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: 'SangBleuKingdom', serif;
}

.contact-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px;
}

.contact-info h2,
.contact-form h2 {
    font-family: 'SangBleuKingdom', serif;
    margin-bottom: 30px;
    color: #333;
}

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

.info-item i {
    font-size: 24px;
    color: #8B0000;
    margin-right: 20px;
    margin-top: 5px;
}

.info-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.info-content p {
    color: #666;
    line-height: 1.6;
}

.contact-form form {
    display: grid;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'SangBleuKingdom', sans-serif;
    max-width: 500px;
    width: 100%;
}

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

.submit-btn {
    background-color: #8B0000;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
    max-width: 500px;
    width: 100%;
}

.submit-btn:hover {
    background-color: #660000;
}

.map-section {
    padding: 0 0 80px 0;
}

.map-container {
    padding: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.map-container iframe {
    border-radius: 4px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        z-index: 1000;
        padding: 1rem;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .navbar-collapse.show {
        display: block !important;
    }

    .nav-links {
        display: flex !important;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .nav-links .nav-item a {
        color: black;
    }

    .about-content,
    .specialization-content,
    .vision-content,
    .footer-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1,
    .contact-hero h1 {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .hero-content p {
        font-size: 1.2rem;
        line-height: 1.5;
    }

    .hero-content {
        padding: 25px;
        max-width: 95%;
        background: rgba(0, 0, 0, 0.6);
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .services-list li {
        font-size: 0.9rem;
    }

    .nav-links {
        display: none;
    }

    .navbar-toggler {
        display: none;
        background-color: transparent;
        border: 2px solid var(--primary-color);
        padding: 0.5rem;
        margin-left: auto;
        cursor: pointer;
        z-index: 1100;
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        display: inline-block;
        width: 1.5em;
        height: 1.5em;
        vertical-align: middle;
    }

    @media (max-width: 991px) {
        .navbar-toggler {
            display: block;
        }
    }
    
    .map-container iframe {
        height: 300px;
    }
}
.background-section {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
    margin-bottom: -4px;
}

.section-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.background-text {
    color: #fff;
    padding: 2rem;
    max-width: 800px;
}

.background-text h2 {
    font-family: 'SangBleuKingdom', serif;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.background-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .background-text h2 {
        font-size: 2rem;
    }
    .background-text p {
        font-size: 1rem;
    }
}

/* Specialization Section Styles */
.specialization-section {
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 10%, rgba(25, 139, 144, 0.95) 30%, #198b90 50%), linear-gradient(to bottom, #198b90, white);
    padding: 80px 0;
}

.specialization-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px;
    background: #198b90;
    color: #fff;
}

.specialization-section h1 {
    text-align: center;
    font-size: 2.5rem;
    margin: 0 0 60px 0;
    color: white;
    color: var(--light-text);
    font-family: 'SangBleuKingdom', serif;
}

.specialization-text h2 {
    color: #fff;
    margin-top: 40px;
    margin-bottom: 20px;
    font-family: 'SangBleuKingdom', serif;
    font-weight: 500;
}

.specialization-button {
    background: #198b90;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    margin: 0 10px;
    box-shadow: 4px 4px 8px #147478,
               -4px -4px 8px #1ea2a8;
}

.specialization-button:hover {
    background: #1a9da3;
    box-shadow: inset 4px 4px 8px #147478,
               inset -4px -4px 8px #1ea2a8;
}

.specialization-text h2 {
    color: var(--light-text);
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.specialization-text h1 {
    font-family: 'SangBleuKingdom', serif;
    font-size: 2rem;
    color: #8B0000;
    margin-top: 25px;
    margin-bottom: 15px;
    line-height: 1.2;
    font-weight: 700;
    text-align: left;
}

.specialization-text p {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 20px;
    font-family: 'SangBleuKingdom', sans-serif;
}

.specialization-grid {
    display: none;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.specialization-grid.active {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    opacity: 1;
    transform: translateX(0);
}

.specialization-grid h3 {
    color: #fff;
    margin-bottom: 15px;
}

.specialization-grid p {
    color: #fff;
    line-height: 1.6;
}

.specialization-text {
    color: var(--light-text);
}

.specialization-text p {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 20px;
    font-family: 'SangBleuKingdom', sans-serif;
}

.specialization-controls {
    display: flex;
    gap: 20px;
    margin-top: 10px;
    margin-bottom: 30px;
}

.specialization-button {
    padding: 12px 25px;
    margin: 0 10px;
    border: none;
    background: #1a9da3;
    color: #ffffff;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 5px 5px 10px #147478, -5px -5px 10px #1ec6cc;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'SangBleuKingdom', sans-serif;
    font-size: 1.2rem;
}

.specialization-button:hover {
    background: #1b8e93;
    color: #ffffff;
    box-shadow: inset 4px 4px 8px #147478, inset -4px -4px 8px #1ec6cc;
}

.specialization-image-container {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 10px;
    background-color: #f5f5f5;
}

.specialization-image-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.specialization-image-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 1;
}

.specialization-item {
    padding: 30px;
    text-align: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.specialization-item:hover {
    transform: translateY(-5px);
}

.specialization-item i {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.specialization-item h3 {
    font-family: 'SangBleuKingdom', serif;
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    letter-spacing: 1px;
    font-weight: 700;
}

.specialization-item p {
    font-family: 'SangBleuKingdom', sans-serif;
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.6;
    padding: 15px;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.specialization-grid p {
    transition: all 0.3s ease;
    padding: 15px;
    border-radius: 8px;
}

.specialization-grid p:hover {
    transform: translateY(-2px);
    background: rgba(25, 139, 144, 0.15);
    box-shadow: 4px 4px 8px rgba(20, 116, 120, 0.3),
                -4px -4px 8px rgba(30, 162, 168, 0.2);
}

.specialization-button {
    background: #198b90;
    color: var(--light-text);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 10px;
    box-shadow: 5px 5px 10px #147478,
                -5px -5px 10px #1ea2a8;
}

.specialization-button:hover {
    background: #1a9da3;
    box-shadow: inset 5px 5px 10px #147478,
                inset -5px -5px 10px #1ea2a8;
    transform: translateY(2px);
}

.specialization-text blockquote {
    background: rgba(139, 0, 0, 0.02);
    border-left: 6px solid var(--primary-color);
    padding: 40px;
    margin: 40px 0;
    border-radius: 0 20px 20px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.quote-section {
    padding: 100px 0;
    background: #fff;
}

.quote-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
    text-align: center;
}

.quote-text {
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.8;
    font-style: italic;
    font-family: 'SangBleuKingdom', serif;
    text-align: center;
}

.quote-subtext {
    font-size: 1.1rem;
    color: rgb(25, 139, 144);
    font-style: normal;
    margin-top: 15px;
    opacity: 0.9;
    font-family: 'SangBleuKingdom', sans-serif;
    text-align: center;
}

.specialization-image-container {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.specialization-image-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.specialization-image-slide.active {
    opacity: 1;
    transform: scale(1);
}

.specialization-image-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Vision Mission Section Styles */
.vision-mission-section {
    padding: 100px 0;
}

.vision-mission-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media screen and (max-width: 768px) {
    .vision-mission-content {
        grid-template-columns: 1fr;
    }
}

.neumorphic-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 8px 8px 16px #d1d1d1, -8px -8px 16px #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.neumorphic-card:hover {
    transform: translateY(-5px);
    box-shadow: 12px 12px 20px #d1d1d1, -12px -12px 20px #ffffff;
}

.vision-box h2, .mission-box h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 25px;
    text-align: center;
    font-family: 'SangBleuKingdom', serif;
}


/* Services Page Styles */
.services-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/services/construction.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    text-align: left;
    position: relative;
}

.services-hero h1 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    font-family: 'SangBleuKingdom', serif;
    letter-spacing: 1px;
    line-height: 1.2;
}

.services-hero p {
    font-size: 0.5rem;
    max-width: 600px;
    color: #ffffff;
    text-align: left;
    margin: 0;
    font-family: 'SangBleuKingdom', serif;
    font-weight: 400;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 1.5rem;
        line-height: 1.2;
        margin-bottom: 0.5rem;
    }

    .services-hero p {
        font-size: 0.5rem;
        max-width: 100%;
    }
}

.services-grid {
    padding: 80px 0;
}

.services-slider {
    position: relative;
    padding: 30px;
    margin: 40px 0;
    overflow: hidden;
}

.service-slides {
    position: relative;
    width: 100%;
    height: 450px;
}

.service-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    display: flex;
    gap: 30px;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.service-slide.active {
    opacity: 1;
    visibility: visible;
}

.service-image {
    flex: 1;
    overflow: hidden;
    border-radius: 10px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    background-color: #f5f5f5;
}

.service-content {
    flex: 1;
    padding: 20px;
}

.service-controls {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}

.service-nav {
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.service-nav:hover {
    background-color: #fff;
    transform: scale(1.1);
}

.service-nav i {
    color: #333;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .service-controls {
        padding: 0 10px;
    }
    
    .service-nav {
        width: 35px;
        height: 35px;
    }
}

.service-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(139, 0, 0, 0.3);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.indicator.active {
    background: var(--primary-color);
}

.service-content h2 {
    margin-top: 1.5rem;
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 20px;
    font-family: 'SangBleuKingdom', serif;
}


.cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.cta-btn {
    padding: 12px 25px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    font-family: 'SangBleuKingdom', sans-serif;
}

.cta-btn:hover {
    background-color: var(--secondary-color);
}

.advisory-section {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.05));
}

.advisory-content {
    padding: 50px;
    margin: 40px auto;
    max-width: 1000px;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.advisory-content:hover {
    transform: translateY(-5px);
}

.advisory-content h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.advisory-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

.advisory-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--secondary-color);
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.advisory-list {
    list-style: none;
    padding: 0;
    margin: 30px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 900px;
}

.advisory-list li {
    font-size: 1.15rem;
    color: var(--secondary-color);
    padding: 20px;
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}

.advisory-list li:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.9);
}

.equipment-section {
    padding: 80px 0;
}

.equipment-section h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-family: 'SangBleuKingdom', serif;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.equipment-category {
    padding: 30px;
}

.equipment-category h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-family: 'SangBleuKingdom', serif;
}

.equipment-category ul {
    margin: 15px 0;
}


@media (max-width: 768px) {
    .services-slider {
        padding: 1rem;
        margin: 1rem auto;
    }

    .service-slide {
        display: block;
    }

    .service-image {
        display: none;
    }

    .service-content {
        padding: 1rem;
    }

   

    .service-content p {
        font-size: 0.95rem;
        line-height: 1.5;
        text-align: justify;
        margin-bottom: 1rem;
    }

    .service-controls {
        margin-top: 1rem;
    }

    .advisory-list {
        grid-template-columns: 1fr;
    }

    .history-image {
        display: none;
    }

    .history-content {
        grid-template-columns: 1fr;
    }

    .history-text {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .hero-content p {
        font-size: 0.9rem;
        line-height: 1.3;
    }

    .hero-content {
        padding: 15px;
    }
}

/* About Page Styles */
.about-page-hero {
    background-image: url('images/About.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
}

.about-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7));
}

.about-page-hero .container {
    position: relative;
    z-index: 1;
}

.about-page-hero h1 {
    font-size: 1.5rem;
    font-family: 'SangBleuKingdom', serif;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease;
}

.history-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.history-content {
    display: grid;
 
    gap: 40px;
   
    align-items: center;
}

.history-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-family: 'SangBleuKingdom', serif;
}

.history-text p {
    margin-bottom: 20px;
    color: #555;
    font-size: 0.8rem;
    line-height: 1.8;
}



.profile-download h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: var(--light-text);
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.core-values-section {
    padding: 80px 0;
    background: #f9f9f9;
    overflow: hidden;
}

.core-values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 50px;
    font-family: 'SangBleuKingdom', serif;
}

.core-values-slider {
    position: relative;
    width: 100%;
    padding: 40px 0;
}

.core-values-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
    padding: 0 20px;
    max-width: 100%;
    margin: 0 auto;
}

.core-value {
    flex: 0 0 300px;
    padding: 30px;
    text-align: center;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.core-value i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}


.core-value:hover {
    transform: translateY(-5px);
}

.core-value:hover i {
    transform: scale(1.1);
    color: var(--accent-color);
}

.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    pointer-events: none;
}

.prev-btn,
.next-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    pointer-events: auto;
}

.prev-btn:hover,
.next-btn:hover {
    background: var(--accent-color);
}

.board-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.board-section h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-family: 'SangBleuKingdom', serif;
}

.board-members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.board-member-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.board-member-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-family: 'SangBleuKingdom', serif;
}

.board-member-card h4 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-family: 'SangBleuKingdom', serif;
}

.board-member-card p {
    color: var(--secondary-color);
    font-size: 0.8rem;
    line-height: 1.6;
    font-family: 'SangBleuKingdom', sans-serif;
}

/* Follow Us and Let's Talk Section */
.social-contact-section {
    padding: 0;
    color: var(--light-text);
    margin-bottom: 0;
    font-family: 'SangBleuKingdom', serif;
}

.social-contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    max-width: none;
    margin: 0;
}

.social-links {
    background: #121212;
    padding: 120px 10%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'SangBleuKingdom', serif;
}

.lets-talk {
    text-align: center;
    background: #2a2a2a;
    font-size: 15px;
    padding: 120px 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'SangBleuKingdom', serif;
}

.social-links h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: 600;
    font-family: 'SangBleuKingdom', serif;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-icons a {
    color: var(--light-text);
    font-size: 28px;
    transition: all 0.3s ease;
    font-family: 'SangBleuKingdom', serif;
}

.social-icons a:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
}

.lets-talk {
    text-align: right;
}

.lets-talk h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: 600;
}

.enquiries-btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--light-text);
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.2);
}

.enquiries-btn:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.25);
}

@media (max-width: 768px) {
    .social-contact-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0px;
    }

    .social-icons {
        justify-content: center;
    }

    .lets-talk {
        text-align: center;
    }

    .social-links h2,
    .lets-talk h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
}

/* Footer Styles */
.footer {
    padding: 40px 0 20px;
    background-color: rgb(23, 23, 23) !important;
    color: #ffffff !important;
    backdrop-filter: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 15px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo img {
    height: 60px;
    width: auto;
    margin-bottom: 15px;
}

.footer-links h3,
.footer-contact h3 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'SangBleuKingdom', serif;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 12px;
}

.footer-links ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.1rem;
    display: inline-block;
    position: relative;
}

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

.footer-links ul li a:hover::after {
    width: 100%;
}

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

.footer-contact .contact-info {
    display: grid;
    gap: 20px;
}

.footer-contact .contact-info p {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.6;
}

.footer-contact .contact-info p strong {
    display: block;
    margin-bottom: 5px;
    font-size: 1.1rem;
    color: #ffffff;
}

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

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-logo {
        grid-column: 1 / -1;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 0px;
    }
    
    .footer-links,
    .footer-contact {
        text-align: center;
    }
    
    .footer-contact .contact-info {
        justify-items: center;
    }
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/slide1.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: #fff;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: 'SangBleuKingdom', serif;
}

.contact-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px;
}

.contact-info h2,
.contact-form h2 {
    font-family: 'SangBleuKingdom', serif;
    margin-bottom: 30px;
    color: #333;
}

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

.info-item i {
    font-size: 24px;
    color: #8B0000;
    margin-right: 20px;
    margin-top: 5px;
}

.info-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.info-content p {
    color: #666;
    line-height: 1.6;
}

.contact-form form {
    display: grid;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'SangBleuKingdom', sans-serif;
    max-width: 500px;
    width: 100%;
}

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

.submit-btn {
    background-color: #8B0000;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
    max-width: 500px;
    width: 100%;
}

.submit-btn:hover {
    background-color: #660000;
}

.map-section {
    padding: 0 0 80px 0;
}

.map-container {
    padding: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.map-container iframe {
    border-radius: 4px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        z-index: 1000;
        padding: 1rem;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .navbar-collapse.show {
        display: block !important;
    }

    .nav-links {
        display: flex !important;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .nav-links .nav-item a {
        color: black;
    }

    .about-content,
    .specialization-content,
    .vision-content,
    .footer-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1,
    .contact-hero h1 {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .hero-content p {
        font-size: 1.2rem;
        line-height: 1.5;
    }

    .hero-content {
        padding: 25px;
        max-width: 95%;
        background: rgba(0, 0, 0, 0.6);
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .services-list li {
        font-size: 0.9rem;
    }

    .nav-links {
        display: none;
    }

    .navbar-toggler {
        display: none;
        background-color: transparent;
        border: 2px solid var(--primary-color);
        padding: 0.5rem;
        margin-left: auto;
        cursor: pointer;
        z-index: 1100;
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        display: inline-block;
        width: 1.5em;
        height: 1.5em;
        vertical-align: middle;
    }

    @media (max-width: 991px) {
        .navbar-toggler {
            display: block;
        }
    }
    
    .map-container iframe {
        height: 300px;
    }
}
.background-section {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
    margin-bottom: -4px;
}

.section-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.background-text {
    color: #fff;
    padding: 2rem;
    max-width: 800px;
}

.background-text h2 {
    font-family: 'SangBleuKingdom', serif;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.background-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .background-text h2 {
        font-size: 2rem;
    }
    .background-text p {
        font-size: 1rem;
    }
}

/* Specialization Section Styles */
.specialization-section {
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 10%, rgba(25, 139, 144, 0.95) 30%, #198b90 50%), linear-gradient(to bottom, #198b90, white);
    padding: 80px 0;
}

.specialization-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px;
    background: #198b90;
    color: #fff;
}

.specialization-section h1 {
    text-align: center;
    font-size: 2.5rem;
    margin: 0 0 60px 0;
    color: white;
    color: var(--light-text);
    font-family: 'SangBleuKingdom', serif;
}

.specialization-text h2 {
    color: #fff;
    margin-top: 40px;
    margin-bottom: 20px;
    font-family: 'SangBleuKingdom', serif;
    font-weight: 500;
}

.specialization-button {
    background: #198b90;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    margin: 0 10px;
    box-shadow: 4px 4px 8px #147478,
               -4px -4px 8px #1ea2a8;
}

.specialization-button:hover {
    background: #1a9da3;
    box-shadow: inset 4px 4px 8px #147478,
               inset -4px -4px 8px #1ea2a8;
}

.specialization-text h2 {
    color: var(--light-text);
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.specialization-text h1 {
    font-family: 'SangBleuKingdom', serif;
    font-size: 2rem;
    color: #8B0000;
    margin-top: 25px;
    margin-bottom: 5px;
    line-height: 1.2;
    font-weight: 700;
    text-align: left;
}


.specialization-grid {
    display: none;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.specialization-grid.active {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    opacity: 1;
    transform: translateX(0);
}

.specialization-grid h3 {
    color: #fff;
    margin-bottom: 15px;
}

.specialization-grid p {
    color: #fff;
    line-height: 1.6;
}

.specialization-text {
    color: var(--light-text);
}



.specialization-controls {
    display: flex;
    gap: 20px;
    margin-top: 10px;
    margin-bottom: 30px;
}

.specialization-button {
    padding: 12px 25px;
    margin: 0 10px;
    border: none;
    background: #1a9da3;
    color: #ffffff;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 5px 5px 10px #147478, -5px -5px 10px #1ec6cc;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'SangBleuKingdom', sans-serif;
    font-size: 1.2rem;
}

.specialization-button:hover {
    background: #1b8e93;
    color: #ffffff;
    box-shadow: inset 4px 4px 8px #147478, inset -4px -4px 8px #1ec6cc;
}

.specialization-image-container {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 10px;
    background-color: #f5f5f5;
}

.specialization-image-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.specialization-image-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 1;
}

.specialization-item {
    padding: 30px;
    text-align: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.specialization-item:hover {
    transform: translateY(-5px);
}

.specialization-item i {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.specialization-item h3 {
    font-family: 'SangBleuKingdom', serif;
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    letter-spacing: 1px;
    font-weight: 700;
}

.specialization-item p {
    font-family: 'SangBleuKingdom', sans-serif;
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.6;
    padding: 15px;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.specialization-grid p {
    transition: all 0.3s ease;
    padding: 15px;
    border-radius: 8px;
}

.specialization-grid p:hover {
    transform: translateY(-2px);
    background: rgba(25, 139, 144, 0.15);
    box-shadow: 4px 4px 8px rgba(20, 116, 120, 0.3),
                -4px -4px 8px rgba(30, 162, 168, 0.2);
}

.specialization-button {
    background: #198b90;
    color: var(--light-text);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 10px;
    box-shadow: 5px 5px 10px #147478,
                -5px -5px 10px #1ea2a8;
}

.specialization-button:hover {
    background: #1a9da3;
    box-shadow: inset 5px 5px 10px #147478,
                inset -5px -5px 10px #1ea2a8;
    transform: translateY(2px);
}

.specialization-text blockquote {
    background: rgba(139, 0, 0, 0.02);
    border-left: 6px solid var(--primary-color);
    padding: 40px;
    margin: 40px 0;
    border-radius: 0 20px 20px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.quote-section {
    padding: 100px 0;
    background: #fff;
}

.quote-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
    text-align: center;
}

.quote-text {
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.8;
    font-style: italic;
    font-family: 'SangBleuKingdom', serif;
    text-align: center;
}

.quote-subtext {
    font-size: 1.1rem;
    color: rgb(25, 139, 144);
    font-style: normal;
    margin-top: 15px;
    opacity: 0.9;
    font-family: 'SangBleuKingdom', sans-serif;
    text-align: center;
}

.specialization-image-container {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.specialization-image-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.specialization-image-slide.active {
    opacity: 1;
    transform: scale(1);
}

.specialization-image-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Vision Mission Section Styles */
.vision-mission-section {
    padding: 100px 0;
}

.vision-mission-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media screen and (max-width: 768px) {
    .vision-mission-content {
        grid-template-columns: 1fr;
    }
}

.neumorphic-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 8px 8px 16px #d1d1d1, -8px -8px 16px #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.neumorphic-card:hover {
    transform: translateY(-5px);
    box-shadow: 12px 12px 20px #d1d1d1, -12px -12px 20px #ffffff;
}

.vision-box h2, .mission-box h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 25px;
    text-align: center;
    font-family: 'SangBleuKingdom', serif;
}

.vision-box p, .mission-box p {
    font-size: 0.8rem;
    line-height: 1.8;
    color: var(--secondary-color);
    text-align: center;
    font-family: 'SangBleuKingdom', sans-serif;
}

/* Services Page Styles */
.services-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/services/construction.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    text-align: left;
    position: relative;
}

.services-hero h1 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    font-family: 'SangBleuKingdom', serif;
    letter-spacing: 1px;
    line-height: 1.2;
}

.services-hero p {
    font-size: 0.5rem;
    max-width: 600px;
    color: #ffffff;
    text-align: left;
    margin: 0;
    font-family: 'SangBleuKingdom', serif;
    font-weight: 400;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 1.5rem;
        line-height: 1.2;
        margin-bottom: 0.5rem;
    }

    .services-hero p {
        font-size: 0.5rem;
        max-width: 100%;
    }
}

.services-grid {
    padding: 80px 0;
}

.services-slider {
    position: relative;
    padding: 30px;
    margin: 40px 0;
    overflow: hidden;
}

.service-slides {
    position: relative;
    width: 100%;
    height: 450px;
}

.service-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    display: flex;
    gap: 30px;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.service-slide.active {
    opacity: 1;
    visibility: visible;
}

.service-image {
    flex: 1;
    overflow: hidden;
    border-radius: 10px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    background-color: #f5f5f5;
}

.service-content {
    flex: 1;
    padding: 20px;
}

.service-controls {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}

.service-nav {
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.service-nav:hover {
    background-color: #fff;
    transform: scale(1.1);
}

.service-nav i {
    color: #333;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .service-controls {
        padding: 0 10px;
    }
    
    .service-nav {
        width: 35px;
        height: 35px;
    }
}

.service-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(139, 0, 0, 0.3);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.indicator.active {
    background: var(--primary-color);
}

.service-content h2 {
    margin-top: 1.5rem;
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 20px;
    font-family: 'SangBleuKingdom', serif;
}

.service-content p {
    font-size: 0.8rem;
    line-height: 1.8;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-family: 'SangBleuKingdom', sans-serif;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.cta-btn {
    padding: 12px 25px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    font-family: 'SangBleuKingdom', sans-serif;
}

.cta-btn:hover {
    background-color: var(--secondary-color);
}

.advisory-section {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.05));
}

.advisory-content {
    padding: 50px;
    margin: 40px auto;
    max-width: 1000px;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.advisory-content:hover {
    transform: translateY(-5px);
}

.advisory-content h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.advisory-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

.advisory-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--secondary-color);
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.advisory-list {
    list-style: none;
    padding: 0;
    margin: 30px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 900px;
}

.advisory-list li {
    font-size: 1.15rem;
    color: var(--secondary-color);
    padding: 20px;
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}

.advisory-list li:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.9);
}

.equipment-section {
    padding: 80px 0;
}

.equipment-section h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-family: 'SangBleuKingdom', serif;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.equipment-category {
    padding: 30px;
}

.equipment-category h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-family: 'SangBleuKingdom', serif;
}

.equipment-category ul {
    margin: 15px 0;
    text-transform: capitalize;
}


@media (max-width: 768px) {
    .services-slider {
        padding: 1rem;
        margin: 1rem auto;
    }

    .service-slide {
        display: block;
    }

    .service-image {
        display: none;
    }

    .service-content {
        padding: 1rem;
    }

    .service-content h2 {
        margin-top: 1.5rem;
        font-size: 1.5rem;
        margin-bottom: 1rem;
        text-align: center;
    }

    .service-content p {
        font-size: 0.95rem;
        line-height: 1.5;
        text-align: justify;
        margin-bottom: 1rem;
    }

    .service-controls {
        margin-top: 1rem;
    }

    .advisory-list {
        grid-template-columns: 1fr;
    }

    .history-image {
        display: none;
    }

    .history-content {
        grid-template-columns: 1fr;
    }

    .history-text {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .hero-content p {
        font-size: 0.9rem;
        line-height: 1.3;
    }

    .hero-content {
        padding: 15px;
    }
}

/* About Page Styles */
.about-page-hero {
    background-image: url('images/About.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
}

.about-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7));
}

.about-page-hero .container {
    position: relative;
    z-index: 1;
}

.about-page-hero h1 {
    font-size: 1.5rem;
    font-family: 'SangBleuKingdom', serif;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease;
}

.history-section {
    padding: 60px 0;
}

.history-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    padding: 40px;
}

.history-text {
    padding-right: 20px;
}

.history-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333;
}

.history-text p {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}


.profile-download h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
}

.history-image {
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.history-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.history-image img:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .history-content {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    
    .history-text {
        padding-right: 0;
    }
    
    .history-image {
        height: 300px;
    }
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: var(--light-text);
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.core-values-section {
    padding: 80px 0;
    background: #f9f9f9;
    overflow: hidden;
}

.core-values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 50px;
    font-family: 'SangBleuKingdom', serif;
}

.core-values-slider {
    position: relative;
    width: 100%;
    padding: 40px 0;
}

.core-values-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
    padding: 0 20px;
    max-width: 100%;
    margin: 0 auto;
}

.core-value {
    flex: 0 0 300px;
    padding: 30px;
    text-align: center;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.core-value i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.core-value h3 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-top: 15px;
    font-family: 'SangBleuKingdom', sans-serif;
}

.core-value:hover {
    transform: translateY(-5px);
}

.core-value:hover i {
    transform: scale(1.1);
    color: var(--accent-color);
}

.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    pointer-events: none;
}

.prev-btn,
.next-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    pointer-events: auto;
}

.prev-btn:hover,
.next-btn:hover {
    background: var(--accent-color);
}

.board-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.board-section h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-family: 'SangBleuKingdom', serif;
}

.board-members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.board-member-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.board-member-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-family: 'SangBleuKingdom', serif;
}

.board-member-card h4 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-family: 'SangBleuKingdom', serif;
}

.board-member-card p {
    color: var(--secondary-color);
    font-size: 0.8rem;
    line-height: 1.6;
    font-family: 'SangBleuKingdom', sans-serif;
}

/* Follow Us and Let's Talk Section */
.social-contact-section {
    padding: 0;
    color: var(--light-text);
    margin-bottom: 0;
    font-family: 'SangBleuKingdom', serif;
}

.social-contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    max-width: none;
    margin: 0;
}

.social-links {
    background: #121212;
    padding: 120px 10%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'SangBleuKingdom', serif;
}

.lets-talk {
    text-align: center;
    background: #2a2a2a;
    font-size: 15px;
    padding: 120px 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'SangBleuKingdom', serif;
}

.social-links h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: 600;
    font-family: 'SangBleuKingdom', serif;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-icons a {
    color: var(--light-text);
    font-size: 28px;
    transition: all 0.3s ease;
    font-family: 'SangBleuKingdom', serif;
}

.social-icons a:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
}

.lets-talk {
    text-align: right;
}

.lets-talk h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: 600;
}

.enquiries-btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--light-text);
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.2);
}

.enquiries-btn:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.25);
}

@media (max-width: 768px) {
    .social-contact-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0px;
    }

    .social-icons {
        justify-content: center;
    }

    .lets-talk {
        text-align: center;
    }

    .social-links h2,
    .lets-talk h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
}

/* Footer Styles */
.footer {
    padding: 40px 0 20px;
    background-color: rgb(23, 23, 23) !important;
    color: #ffffff !important;
    backdrop-filter: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 15px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo img {
    height: 60px;
    width: auto;
    margin-bottom: 15px;
}

.footer-links h3,
.footer-contact h3 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'SangBleuKingdom', serif;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 12px;
}

.footer-links ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.1rem;
    display: inline-block;
    position: relative;
}

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

.footer-links ul li a:hover::after {
    width: 100%;
}

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

.footer-contact .contact-info {
    display: grid;
    gap: 20px;
}

.footer-contact .contact-info p {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.6;
}

.footer-contact .contact-info p strong {
    display: block;
    margin-bottom: 5px;
    font-size: 1.1rem;
    color: #ffffff;
}

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

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-logo {
        grid-column: 1 / -1;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 0px;
    }
    
    .footer-links,
    .footer-contact {
        text-align: center;
    }
    
    .footer-contact .contact-info {
        justify-items: center;
    }
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/slide1.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: #fff;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: 'SangBleuKingdom', serif;
}

.contact-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px;
}

.contact-info h2,
.contact-form h2 {
    font-family: 'SangBleuKingdom', serif;
    margin-bottom: 30px;
    color: #333;
}

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

.info-item i {
    font-size: 24px;
    color: #8B0000;
    margin-right: 20px;
    margin-top: 5px;
}

.info-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.info-content p {
    color: #666;
    line-height: 1.6;
}

.contact-form form {
    display: grid;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'SangBleuKingdom', sans-serif;
    max-width: 500px;
    width: 100%;
}

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

.submit-btn {
    background-color: #8B0000;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
    max-width: 500px;
    width: 100%;
}

.submit-btn:hover {
    background-color: #660000;
}

.map-section {
    padding: 0 0 80px 0;
}

.map-container {
    padding: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.map-container iframe {
    border-radius: 4px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        z-index: 1000;
        padding: 1rem;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .navbar-collapse.show {
        display: block !important;
    }

    .nav-links {
        display: flex !important;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .nav-links .nav-item a {
        color: black;
    }

    .about-content,
    .specialization-content,
    .vision-content,
    .footer-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1,
    .contact-hero h1 {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .hero-content p {
        font-size: 1.2rem;
        line-height: 1.5;
    }

    .hero-content {
        padding: 25px;
        max-width: 95%;
        background: rgba(0, 0, 0, 0.6);
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .services-list li {
        font-size: 0.9rem;
    }

    .nav-links {
        display: none;
    }

    .navbar-toggler {
        display: none;
        background-color: transparent;
        border: 2px solid var(--primary-color);
        padding: 0.5rem;
        margin-left: auto;
        cursor: pointer;
        z-index: 1100;
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        display: inline-block;
        width: 1.5em;
        height: 1.5em;
        vertical-align: middle;
    }

    @media (max-width: 991px) {
        .navbar-toggler {
            display: block;
        }
    }
    
    .map-container iframe {
        height: 300px;
    }
}
.background-section {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
    margin-bottom: -4px;
}

.section-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.background-text {
    color: #fff;
    padding: 2rem;
    max-width: 800px;
}

.background-text h2 {
    font-family: 'SangBleuKingdom', serif;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.background-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .background-text h2 {
        font-size: 2rem;
    }
    .background-text p {
        font-size: 1rem;
    }
}

/* Specialization Section Styles */
.specialization-section {
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 10%, rgba(25, 139, 144, 0.95) 30%, #198b90 50%), linear-gradient(to bottom, #198b90, white);
    padding: 80px 0;
}

.specialization-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 20px;
    background: #198b90;
    color: #fff;
}

@media screen and (max-width: 768px) {
    .specialization-content {
        grid-template-columns: 1fr;
        gap: 1px;
    }

    .specialization-image-container {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .specialization-text {
        width: 100%;
        padding: 1rem;
    }

    .specialization-section h1 {
        margin: 0 0 10px 0;
    }

    .specialization-text h1 {
        margin-top: 10px;
    }
}

.specialization-section h1 {
    text-align: center;
    font-size: 2.5rem;
    margin: 0 0 60px 0;
    color: white;
    color: var(--light-text);
    font-family: 'SangBleuKingdom', serif;
}

.specialization-text h2 {
    color: #fff;
    margin-top: 20px;
    margin-bottom: 20px;
    font-family: 'SangBleuKingdom', serif;
    font-weight: 500;
}

.specialization-button {
    background: #198b90;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    margin: 0 10px;
    box-shadow: 4px 4px 8px #147478,
               -4px -4px 8px #1ea2a8;
}

.specialization-button:hover {
    background: #1a9da3;
    box-shadow: inset 4px 4px 8px #147478,
               inset -4px -4px 8px #1ea2a8;
}

.specialization-text h2 {
    color: var(--light-text);
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.specialization-text h1 {
    font-family: 'SangBleuKingdom', serif;
    font-size: 2rem;
    color: #8B0000;
    margin-top: 15px;
    margin-bottom: 10px;
    line-height: 1.2;
    font-weight: 700;
    text-align: left;
}

.specialization-text p {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 20px;
    font-family: 'SangBleuKingdom', sans-serif;
}

.specialization-grid {
    display: none;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.specialization-grid.active {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    opacity: 1;
    transform: translateX(0);
}

.specialization-grid h3 {
    color: #fff;
    margin-bottom: 15px;
}

.specialization-grid p {
    color: #fff;
    line-height: 1.6;
}

.specialization-text {
    color: var(--light-text);
}

.specialization-text p {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 20px;
    font-family: 'SangBleuKingdom', sans-serif;
}

.specialization-controls {
    display: flex;
    gap: 20px;
    margin-top: 10px;
    margin-bottom: 30px;
}

.specialization-button {
    padding: 12px 25px;
    margin: 0 10px;
    border: none;
    background: #1a9da3;
    color: #ffffff;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 5px 5px 10px #147478, -5px -5px 10px #1ec6cc;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'SangBleuKingdom', sans-serif;
    font-size: 1.2rem;
}

.specialization-button:hover {
    background: #1b8e93;
    color: #ffffff;
    box-shadow: inset 4px 4px 8px #147478, inset -4px -4px 8px #1ec6cc;
}

.specialization-image-container {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 10px;
    background-color: #f5f5f5;
}

.specialization-image-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.specialization-image-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 1;
}

.specialization-item {
    padding: 30px;
    text-align: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.specialization-item:hover {
    transform: translateY(-5px);
}

.specialization-item i {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.specialization-item h3 {
    font-family: 'SangBleuKingdom', serif;
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    letter-spacing: 1px;
    font-weight: 700;
}

.specialization-item p {
    font-family: 'SangBleuKingdom', sans-serif;
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.6;
    padding: 15px;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.specialization-grid p {
    transition: all 0.3s ease;
    padding: 15px;
    text-align: left;
    border-radius: 8px;
}

.specialization-grid p:hover {
    transform: translateY(-2px);
    background: rgba(25, 139, 144, 0.15);
    box-shadow: 4px 4px 8px rgba(20, 116, 120, 0.3),
                -4px -4px 8px rgba(30, 162, 168, 0.2);
}

.specialization-button {
    background: #198b90;
    color: var(--light-text);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 10px;
    box-shadow: 5px 5px 10px #147478,
                -5px -5px 10px #1ea2a8;
}

.specialization-button:hover {
    background: #1a9da3;
    box-shadow: inset 5px 5px 10px #147478,
                inset -5px -5px 10px #1ea2a8;
    transform: translateY(2px);
}

.specialization-text blockquote {
    background: rgba(139, 0, 0, 0.02);
    border-left: 6px solid var(--primary-color);
    padding: 40px;
    margin: 40px 0;
    border-radius: 0 20px 20px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.quote-section {
    padding: 100px 0;
    background: #fff;
}

.quote-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
    text-align: center;
}

.quote-text {
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.8;
    font-style: italic;
    font-family: 'SangBleuKingdom', serif;
    text-align: center;
}

.quote-subtext {
    font-size: 1.1rem;
    color: rgb(25, 139, 144);
    font-style: normal;
    margin-top: 15px;
    opacity: 0.9;
    font-family: 'SangBleuKingdom', sans-serif;
    text-align: center;
}

.specialization-image-container {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.specialization-image-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.specialization-image-slide.active {
    opacity: 1;
    transform: scale(1);
}

.specialization-image-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Vision Mission Section Styles */
.vision-mission-section {
    padding: 100px 0;
}

.vision-mission-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media screen and (max-width: 768px) {
    .vision-mission-content {
        grid-template-columns: 1fr;
    }
}

.neumorphic-card {
    background: #ffffff;
    border-radius: 5px;
    padding: 40px 60px;
    box-shadow: 8px 8px 16px #d1d1d1, -8px -8px 16px #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.neumorphic-card:hover {
    transform: translateY(-5px);
    box-shadow: 12px 12px 20px #d1d1d1, -12px -12px 20px #ffffff;
}

.vision-box h2, .mission-box h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 25px;
    text-align: center;
    font-family: 'SangBleuKingdom', serif;
}

.vision-box p, .mission-box p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--secondary-color);
    text-align: center;
    font-family: 'SangBleuKingdom', sans-serif;
}

/* Services Page Styles */
.services-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/services/construction.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    text-align: left;
    position: relative;
}

.services-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    font-family: 'SangBleuKingdom', serif;
    letter-spacing: 1px;
    line-height: 1.2;
}

.services-hero p {
    font-size: 1.5rem;
    max-width: 600px;
    color: #ffffff;
    text-align: center;
    margin: 0;
    font-family: 'SangBleuKingdom', serif;
    font-weight: 400;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 1.5rem;
        line-height: 1.2;
        margin-bottom: 0.5rem;
    }

    .services-hero p {
        font-size: 0.5rem;
        max-width: 100%;
    }
}

.services-grid {
    padding: 80px 0;
}

.services-slider {
    position: relative;
    padding: 30px;
    margin: 40px 0;
    overflow: hidden;
}

.service-slides {
    position: relative;
    width: 100%;
    height: 450px;
}

.service-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    display: flex;
    gap: 30px;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.service-slide.active {
    opacity: 1;
    visibility: visible;
}

.service-image {
    flex: 1;
    overflow: hidden;
    border-radius: 10px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    background-color: #f5f5f5;
}

.service-content {
    flex: 1;
    padding: 20px;
}

.service-controls {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}

.service-nav {
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.service-nav:hover {
    background-color: #fff;
    transform: scale(1.1);
}

.service-nav i {
    color: #333;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .service-controls {
        padding: 0 10px;
    }
    
    .service-nav {
        width: 35px;
        height: 35px;
    }
}

.service-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(139, 0, 0, 0.3);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.indicator.active {
    background: var(--primary-color);
}

.service-content h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 20px;
    font-family: 'SangBleuKingdom', serif;
}


.cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.cta-btn {
    padding: 12px 25px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    font-family: 'SangBleuKingdom', sans-serif;
}

.cta-btn:hover {
    background-color: var(--secondary-color);
}

.advisory-section {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.05));
}

.advisory-content {
    padding: 50px;
    margin: 40px auto;
    max-width: 1000px;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.advisory-content:hover {
    transform: translateY(-5px);
}

.advisory-content h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.advisory-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

.advisory-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--secondary-color);
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.advisory-list {
    list-style: none;
    padding: 0;
    margin: 30px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 900px;
}

.advisory-list li {
    font-size: 1.15rem;
    color: var(--secondary-color);
    padding: 20px;
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}

.advisory-list li:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.9);
}

.equipment-section {
    padding: 80px 0;
}

.equipment-section h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-family: 'SangBleuKingdom', serif;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.equipment-category {
    padding: 30px;
}

.equipment-category h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 20px;
    font-family: 'SangBleuKingdom', serif;
}

.equipment-category ul {
    margin: 0px 0;
}

.equipment-category li {
    font-size: 0.8rem;
    padding: 8px 0;
    text-transform: capitalize;
    line-height: 1.5;
    color: #333;
}

@media (max-width: 768px) {
    .services-slider {
        padding: 1rem;
        margin: 1rem auto;
    }

    .service-slide {
        display: block;
    }

    .service-image {
        display: none;
    }

    .service-content {
        padding: 1rem;
    }

    

    .service-content p {
        font-size: 0.95rem;
        line-height: 1.5;
        text-align: justify;
        margin-bottom: 1rem;
    }

    .service-controls {
        margin-top: 1rem;
    }

    .advisory-list {
        grid-template-columns: 1fr;
    }

    .history-image {
        display: none;
    }

    .history-content {
        grid-template-columns: 1fr;
    }

    .history-text {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .hero-content p {
        font-size: 0.9rem;
        line-height: 1.3;
    }

    .hero-content {
        padding: 15px;
    }
}

/* About Page Styles */
.about-page-hero {
    background-image: url('images/About.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
}

.about-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7));
}

.about-page-hero .container {
    position: relative;
    z-index: 1;
}

.about-page-hero h1 {
    font-size: 2.5rem;
    font-family: 'SangBleuKingdom', serif;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease;
}

.history-section {
    padding: 4rem 0;
    position: relative;
    z-index: 1;
}

    padding: 80px 0;
    background: #f9f9f9;
    gap: 2rem;
    align-items: center;
    opacity: 1;
    transform: translateY(0);
    
    gap: 40px;
 

    font-size: 2rem;
}

    font-size: 2.5rem;
.history-text p {
    margin-bottom: 30px;
    font-family: 'SangBleuKingdom', serif;
    color: var(--text-color);
}

    margin-bottom: 20px;
    color: #555;
    font-size: 1.1rem;
    width: 100%;
    background: rgba(139, 0, 0, 0.05);
    border-radius: 10px;
}

.profile-download h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: var(--light-text);
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.core-values-section {
    padding: 80px 0;
    background: #f9f9f9;
    overflow: hidden;
}

.core-values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 50px;
    font-family: 'SangBleuKingdom', serif;
}

.core-values-slider {
    position: relative;
    width: 100%;
    padding: 40px 0;
}

.core-values-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
    padding: 0 20px;
    max-width: 100%;
    margin: 0 auto;
}

.core-value {
    flex: 0 0 300px;
    padding: 30px;
    text-align: center;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.core-value i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.core-value h3 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-top: 15px;
    font-family: 'SangBleuKingdom', sans-serif;
}

.core-value:hover {
    transform: translateY(-5px);
}

.core-value:hover i {
    transform: scale(1.1);
    color: var(--accent-color);
}

.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    pointer-events: none;
}

.prev-btn,
.next-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    pointer-events: auto;
}

.prev-btn:hover,
.next-btn:hover {
    background: var(--accent-color);
}

.board-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.board-section h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-family: 'SangBleuKingdom', serif;
}

.board-members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.board-member-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.board-member-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-family: 'SangBleuKingdom', serif;
}

.board-member-card h4 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-family: 'SangBleuKingdom', serif;
}

.board-member-card p {
    color: var(--secondary-color);
    font-size: 0.8rem;
    line-height: 1.6;
    font-family: 'SangBleuKingdom', sans-serif;
}

/* Follow Us and Let's Talk Section */
.social-contact-section {
    padding: 0;
    color: var(--light-text);
    margin-bottom: 0;
    font-family: 'SangBleuKingdom', serif;
}

.social-contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    max-width: none;
    margin: 0;
}

.social-links {
    background: #121212;
    padding: 120px 10%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'SangBleuKingdom', serif;
}

.lets-talk {
    text-align: center;
    background: #2a2a2a;
    font-size: 15px;
    padding: 120px 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'SangBleuKingdom', serif;
}

.social-links h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: 600;
    font-family: 'SangBleuKingdom', serif;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-icons a {
    color: var(--light-text);
    font-size: 28px;
    transition: all 0.3s ease;
    font-family: 'SangBleuKingdom', serif;
}

.social-icons a:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
}

.lets-talk {
    text-align: right;
}

.lets-talk h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: 600;
}

.enquiries-btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--light-text);
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.2);
}

.enquiries-btn:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.25);
}

@media (max-width: 768px) {
    .social-contact-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0px;
    }

    .social-icons {
        justify-content: center;
    }

    .lets-talk {
        text-align: center;
    }

    .social-links h2,
    .lets-talk h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
}

/* Footer Styles */
.footer {
    padding: 40px 0 20px;
    background-color: rgb(23, 23, 23) !important;
    color: #ffffff !important;
    backdrop-filter: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo img {
    height: 80px;
    margin-bottom: 15px;
}

.footer h3 {
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #ffffff;
    font-family: 'SangBleuKingdom', serif;
}

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

.useful-links ul li {
    margin-bottom: 5px;
}

.explore-careers-btn {
    display: inline-block;
    padding: 8px 15px;
    background-color: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    margin-top: 10px;
}

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

.useful-links ul li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 12px;
}

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

.footer p {
    font-size: 12px;
    margin-bottom: 5px;
    color: #cccccc;
}

.footer-bottom {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 12px;
    color: #888888;
    margin: 0;
}