* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #ffffff;
    color: #333333;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    will-change: background, padding;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    color: #2c87c5;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    user-select: none;
    animation: logoPulse 3s ease-in-out infinite;
    z-index: 1001;
}

.logo i {
    margin-right: 15px;
    font-size: 32px;
    color: #FF9800;
    transition: transform 0.3s ease;
    pointer-events: none;
}
/* Logo image styles */
.logo-img {
  width: 95px; /* adjust as needed */
  height: auto;
  margin-right: 10px;
  object-fit: contain;
  vertical-align: middle;
}


.logo:hover i {
    transform: rotate(15deg) scale(1.1);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
    pointer-events: none;
}

.logo-main {
    font-size: 15px;
    letter-spacing: 2px;
    color: #FF9800;
}

.logo-sub {
    font-size: 14px;
    font-style: italic;
    opacity: 0.8;
    color: #666;
}

.mobile-logo-text {
    display: none;
    flex-direction: column;
    line-height: 1;
    margin-left: 10px;
}

.mobile-logo-main {
    font-size: 16px;
    letter-spacing: 1px;
    color: #FF9800;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    position: relative;
    user-select: none;
}

.nav-menu>li {
    position: relative;
}

.nav-menu a {
    color: #0c0c0c;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.nav-menu a:focus-visible,
.nav-menu a:hover {
    color: #FF9800;
    transform: translateY(-2px);
    outline: none;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FF9800, #FFB74D);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after {
    width: 100%;
}

.dropdown-icon {
    margin-left: 5px;
    font-size: 12px;
    transition: transform 0.3s ease;
    user-select: none;
    pointer-events: none;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    padding: 15px 0;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    pointer-events: none;
}

.nav-menu>li:hover .dropdown-menu,
.nav-menu>li:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.nav-menu>li:hover .dropdown-icon,
.nav-menu>li:focus-within .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu li {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-menu a {
    padding: 10px 20px;
    display: block;
    color: #555;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
}

.dropdown-menu a:focus-visible,
.dropdown-menu a:hover {
    color: #FF9800;
    background: rgba(44, 135, 197, 0.05);
    transform: translateX(5px);
    outline: none;
}

.menu-toggle {
    display: none;
    color: #444;
    font-size: 24px;
    cursor: pointer;
    user-select: none;
    z-index: 1001;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    flex-wrap: wrap;
    padding: 80px 20px 20px;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: opacity;
    filter: brightness(0.85);
}

.slide.active {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #333;
    max-width: 800px;
    padding: 0 20px;
    flex: 1 1 400px;
    user-select: none;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #2c87c5, #4ba3e3);
    color: white;
    padding: 15px 30px;
    border-radius: 15px;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    box-shadow: 0 20px 40px rgba(44, 135, 197, 0.3);
    animation: pulse 2s infinite;
    position: relative;
    overflow: hidden;
    cursor: default;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
    pointer-events: none;
}

.hero-badge-text {
    position: relative;
    z-index: 2;
}

.badge-line1 {
    font-size: 16px;
    display: block;
}

.badge-line2 {
    font-size: 28px;
    display: block;
    margin: 5px 0;
}

.badge-line3 {
    font-size: 16px;
    display: block;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 10px;
}

.star {
    color: #ffd700;
    font-size: 16px;
    animation: twinkle 2s infinite;
}

.star:nth-child(2) {
    animation-delay: 0.2s;
}

.star:nth-child(3) {
    animation-delay: 0.4s;
}

.star:nth-child(4) {
    animation-delay: 0.6s;
}

.star:nth-child(5) {
    animation-delay: 0.8s;
}

.hero-person {
    position: relative;
    z-index: 3;
    flex: 1 1 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: float 6s ease-in-out infinite;
    user-select: none;
}

.hero-person img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
    transition: transform 0.5s ease, opacity 0.5s ease;
    border-radius: 15px;
    cursor: default;
    will-change: transform, opacity;
}

.hero-person:hover img {
    transform: scale(1.05);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 15px;
    user-select: none;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #2c87c5;
    border-color: #2c87c5;
    transform: scale(1.2);
}

/* Animations */
@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@keyframes twinkle {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

@keyframes float {
    0%,
    100% {
        transform: translateY(-50%) translateX(0);
    }
    50% {
        transform: translateY(-55%) translateX(10px);
    }
}

@keyframes logoPulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Styles for the additional sections */
:root {
    --color-primary: #ff9800;
    --color-primary-dark: #ff6600;
    --color-bg-light: #f5f5f5;
    --color-bg-lighter: #FFFFFF;
    --color-bg-grey: #FFFFFF;
    --color-text-dark: #222;
    --color-text-medium: #555;
    --color-text-light: #999;
    --color-footer-bg: #0a0a0a;
    --color-footer-text: #ddd;
    --color-footer-link-hover: var(--color-primary-dark);
    --font-family: 'Arial', sans-serif;
}

/* Common Section Styles */
section {
    padding: 60px 8%;
}

.section-title,
.stats-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
    color: var(--color-text-dark);
    position: relative;
    font-weight: 700;
    line-height: 1.2;
}

.section-title::after,
.stats-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: var(--color-primary);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Features Section */
.features-section {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    background-color: var(--color-bg-grey);
    text-align: center;
    flex-wrap: wrap;
}

.feature-box {
    flex: 1 1 260px;
    max-width: 280px;
    margin: 20px;
    padding: 30px 20px;
    background: transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
    border-radius: 8px;
    user-select: none;
}

.feature-box:hover,
.feature-box:focus-within {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255 152 0 / 0.3);
    outline: none;
}

.feature-icon {
    font-size: 48px;
    color: var(--color-primary);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.feature-box:hover .feature-icon {
    transform: scale(1.2);
}

.feature-box h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-text-dark);
    transition: color 0.3s ease;
}

.feature-box:hover h3 {
    color: var(--color-primary);
}

.feature-box p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text-medium);
}

/* Stats Section */
.stats-section {
    text-align: center;
    padding: 60px 10%;
    background: var(--color-bg-lighter);
}

.stats-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 40px;
    gap: 20px;
}

.stat-box {
    flex: 1 1 200px;
    margin: 15px;
    padding: 20px;
    text-align: center;
    position: relative;
    border-radius: 8px;
    background: white;
    box-shadow: 0 2px 8px rgb(0 0 0 / 0.05);
    transition: all 0.3s ease;
}

.stat-box:hover,
.stat-box:focus-within {
    box-shadow: 0 8px 20px rgb(255 152 0 / 0.3);
    outline: none;
    transform: translateY(-5px);
}

.stat-box:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    width: 1px;
    background: #ddd;
}

.stat-icon {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--color-text-dark);
    transition: color 0.3s ease;
}

.stat-box:hover .stat-icon {
    color: var(--color-primary);
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 10px;
    font-variant-numeric: tabular-nums;
    transition: all 0.3s ease;
}

.stat-label {
    font-size: 14px;
    font-weight: 700;
    color: #444;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--color-bg-grey);
    padding: 60px 8%;
    text-align: center;
}

.testimonials-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.testimonial-box {
    background: #fff;
    flex: 1 1 280px;
    max-width: 300px;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0 0 0 / 0.05);
    transition: all 0.3s ease;
    cursor: default;
}

.testimonial-box:hover,
.testimonial-box:focus-within {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0 0 0 / 0.1);
    outline: none;
}

.stars {
    color: var(--color-primary);
    margin-bottom: 15px;
    font-size: 18px;
}

.testimonial-name {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--color-text-dark);
    font-style: normal;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text-medium);
    font-style: italic;
}

/* PROJECTS SECTION STYLES */
.projects-page {
    padding-top: 80px;
    min-height: 100vh;
    display: none;
}

/* Common Section Styles */
.projects-section-title {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: bold;
    margin-top: 60px;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #222;
}

.projects-section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #f37a1f;
    margin: 10px auto 30px;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.section-container:hover .projects-section-title::after {
    width: 80px;
}

/* UNDER CONSTRUCTION SLIDER STYLES */
.under-construction-slider {
    max-width: 1200px;
    margin: 0 auto 60px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.slider-container {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.slider-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 30px;
}

.slide-content h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #f7931e;
}

.slide-content p {
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 15px;
}

.status-badge {
    display: inline-block;
    background: #f37a1f;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    color: #333;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.slider-btn:hover {
    background: white;
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: white;
    transform: scale(1.2);
}

/* PROJECTS SCROLLING STYLES */
.projects-scroll-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.projects-scroll-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 30px;
    padding: 20px 10px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.projects-scroll-wrapper::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.delivered-project-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 280px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
}

.delivered-project-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

.delivered-project-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.delivered-project-card:hover img {
    transform: scale(1.05);
}

.delivered-project-info {
    background: #000;
    color: #fff;
    padding: 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.delivered-project-info h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
    color: #f7931e;
}

.delivered-project-info p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.4;
}

.status {
    font-size: 12px;
    color: #f37a1f;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

/* Scroll Navigation */
.scroll-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.scroll-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f37a1f;
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.scroll-btn:hover {
    background: #e06a15;
    transform: scale(1.1);
}

.scroll-btn:focus {
    outline: 2px solid #f37a1f;
    outline-offset: 2px;
}

/* FUTURE PROJECTS SECTION */
.future-projects {
    padding: 80px 20px;
    text-align: center;
    max-width: 100%;
}

.future-projects .projects-section-title::after {
    background: linear-gradient(to right, #ff7a00, #ff9500);
}

.project-container {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, #5cb7cc, #2f7b91, #1a4a5e);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.project-text {
    flex: 1 1 45%;
    text-align: left;
    padding-right: 20px;
}

.project-text h3 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.project-text p {
    font-size: clamp(1rem, 3vw, 1.3rem);
    font-weight: 500;
    opacity: 0.95;
}

.highlight {
    color: #fff;
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    display: block;
    margin: 15px 0;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.project-image {
    flex: 1 1 50%;
    text-align: center;
    padding-left: 20px;
}

.project-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.project-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* CONTRACTOR PROJECTS SECTION */
.contractor-projects {
    padding: 6px 2px;
    max-width: 1200px;
    margin: 0 auto;
}

.contractor-projects-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: #222222;
    position: relative;
}

.contractor-projects-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #ff7a00, #ff9500);
    border-radius: 2px;
}

.contractor-cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.contractor-card {
    flex: 1 1 300px;
    max-width: 350px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contractor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.contractor-card-img {
  width: 100%;
  height: 280px; /* adjust height as needed, e.g., 250px or 300px */
  overflow: hidden;
  border-radius: 10px 10px 0 0; /* optional rounded corners */
}

.contractor-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* keeps image proportion, fills space nicely */
  display: block;
}



.contractor-card:hover .contractor-card-img img {
    transform: scale(1.1);
}

.contractor-card-content {
    padding: 20px;
}

.contractor-card-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #1a4a5e;
}

.contractor-card-location {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #ff7a00;
    font-weight: 600;
}

.contractor-card-location i {
    margin-right: 8px;
}

.contractor-card-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.contractor-card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.contractor-feature {
    background: #f0f8ff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #2f7b91;
}

.contractor-card-btn {
  display: inline-block;
  background-color: #f7931e;  /* button color */
  color: #fff;
  padding: 10px 50px;         /* 👈 increase left/right padding here */
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.contractor-card-btn:hover {
  background-color: #d87900;
  transform: translateY(-2px);
}


/* RESPONSIVE DESIGN FOR PROJECTS */
@media (max-width: 1200px) {
    .delivered-project-card {
        flex: 0 0 calc(50% - 15px);
    }
    
    .slider-container {
        height: 400px;
    }
}

@media (max-width: 992px) {
    .project-container {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }
    .project-text {
        text-align: center;
        margin-bottom: 30px;
        padding-right: 0;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    .project-image {
        padding-left: 0;
    }
    
    .slider-container {
        height: 350px;
    }
    
    .slide-content h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .delivered-projects,
    .future-projects {
        padding: 40px 15px;
    }
    .delivered-project-card {
        flex: 0 0 calc(100% - 10px);
    }
    .delivered-project-card img {
        height: 200px;
    }
    .delivered-project-info {
        padding: 15px;
    }
    .scroll-btn {
        width: 40px;
        height: 40px;
    }
    
    .contractor-cards-container {
        gap: 20px;
    }
    
    .contractor-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
    
    .slider-container {
        height: 300px;
    }
    
    .slide-content {
        padding: 20px;
    }
    
    .slide-content h3 {
        font-size: 1.4rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .future-projects {
        padding: 60px 15px;
    }
    .project-container {
        padding: 30px 20px;
        border-radius: 12px;
    }
    .project-text p {
        font-size: 1rem;
    }
    .highlight {
        font-size: 1.5rem;
    }
    
    .contractor-projects-title {
        font-size: 2rem;
    }
    
    .slider-container {
        height: 250px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .delivered-project-card img {
        height: 180px;
    }
    .project-container {
        padding: 25px 15px;
    }
    .projects-section-title {
        font-size: 1.8rem;
        margin-top: 40px;
    }
    
    .contractor-card-content {
        padding: 15px;
    }
    
    .slider-container {
        height: 200px;
    }
    
    .slide-content {
        padding: 15px;
    }
    
    .slide-content h3 {
        font-size: 1.2rem;
    }
    
    .slide-content p {
        font-size: 0.9rem;
    }
}

/* Animation for cards on load */
.delivered-project-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

.delivered-project-card:nth-child(1) {
    animation-delay: 0.1s;
}

.delivered-project-card:nth-child(2) {
    animation-delay: 0.2s;
}

.delivered-project-card:nth-child(3) {
    animation-delay: 0.3s;
}

.delivered-project-card:nth-child(4) {
    animation-delay: 0.4s;
}

.delivered-project-card:nth-child(5) {
    animation-delay: 0.5s;
}

.delivered-project-card:nth-child(6) {
    animation-delay: 0.6s;
}

.delivered-project-card:nth-child(7) {
    animation-delay: 0.7s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Accessibility and Focus Styles */
.delivered-project-card:focus,
.project-container:focus-within {
    outline: 2px solid #f37a1f;
    outline-offset: 2px;
}

/* Performance: Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .delivered-project-card {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Footer - IMPROVED */
footer {
    background: var(--color-footer-bg);
    padding: 60px 20px 30px;
    color: var(--color-footer-text);
    font-size: 14px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-column h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.footer-column:hover h3::after {
    width: 60px;
}

.footer-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-column ul li {
    margin: 15px 0;
    display: flex;
    align-items: center;
    transition: transform 0.2s ease;
}

.footer-column ul li:hover {
    transform: translateX(5px);
}

.footer-column ul li::before {
    content: "›";
    color: var(--color-primary);
    margin-right: 10px;
    font-size: 18px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.footer-column ul li:hover::before {
    transform: translateX(3px);
}

.footer-column ul li a {
    color: var(--color-footer-text);
    transition: color 0.3s ease;
    word-break: break-word;
    display: inline-block;
    padding: 2px 0;
}

.footer-column ul li a:hover,
.footer-column ul li a:focus {
    color: var(--color-primary);
    outline: none;
}

.footer-column p {
    margin: 15px 0;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: var(--color-footer-text);
    word-break: break-word;
    line-height: 1.6;
}

.footer-column p::before {
    content: "›";
    color: var(--color-primary);
    margin-right: 10px;
    flex-shrink: 0;
    font-size: 18px;
}

.footer-column p a {
    color: var(--color-footer-text);
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 2px 0;
    display: inline-flex;
    align-items: center;
}

.footer-column p a:hover,
.footer-column p a:focus {
    color: var(--color-primary);
    outline: none;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--color-footer-text);
    transition: all 0.3s ease;
}

.social-links a:hover,
.social-links a:focus {
    background: var(--color-primary);
    color: #000;
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 14px;
    color: var(--color-text-light);
    user-select: none;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover,
.back-to-top:focus {
    background: var(--color-primary-dark);
    transform: translateY(-5px);
}

/* About Page Styles */
.about-page {
    padding-top: 80px;
    min-height: 100vh;
    display: none;
}

.contact-page {
    padding-top: 80px;
    min-height: 100vh;
    display: none;
}

.career-page {
    padding-top: 80px;
    min-height: 100vh;
    display: none;
}

.gst-page {
    padding-top: 80px;
    min-height: 100vh;
    display: none;
}

.stamp-duty-page {
    padding-top: 80px;
    min-height: 100vh;
    display: none;
}

.section {
    padding: 60px 8%;
}

.section-light {
    background: #fff;
}

.section-gray {
    background: #FFFFFF;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header span {
    display: block;
    width: 60px;
    height: 3px;
    background: #f58220;
    margin: 10px auto 0;
    border-radius: 2px;
}

.section-header p {
    font-size: 16px;
    color: #555;
    margin-top: 15px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.about-text {
    text-align: justify;
    font-size: 16px;
    max-width: 1000px;
    margin: 20px auto 40px;
    color: #444;
    line-height: 1.8;
    font-weight: 400;
}

.about-text b {
    color: #f58220;
    font-weight: 600;
}

/* Vision Mission Section */
.vision-mission {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.vision-mission img {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    transition: transform 0.3s ease;
}

.vision-mission img:hover {
    transform: scale(1.02);
}

.vision-mission-content {
    flex: 1;
    min-width: 300px;
}

.vision-mission-content h3 {
    font-size: 24px;
    color: #222;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
    transition: color 0.3s ease;
}

.vision-mission-content h3:hover {
    color: #f58220;
}

.vision-mission-content h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: #f58220;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.vision-mission-content:hover h3::after {
    width: 100px;
}

.vision-mission-content h4 {
    font-size: 18px;
    color: #f58220;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 10px;
}

.vision-mission-content p {
    font-size: 16px;
    color: #444;
    text-align: justify;
    line-height: 1.8;
    margin-bottom: 15px;
    font-weight: 400;
}

/* Achievements Section */
.achievements-content {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.achievements-content .image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.achievements-content .image img {
    width: 70%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    transition: transform 0.3s ease;
}

.achievements-content .image img:hover {
    transform: scale(1.03);
}

/* Features Section */
.features {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.features h3 {
    font-size: 24px;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
    color: #222;
    transition: color 0.3s ease;
}

.features h3:hover {
    color: #f58220;
}

.features h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: #f58220;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.features:hover h3::after {
    width: 100px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    background: #fff;
    padding: 18px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.feature-item:hover,
.feature-item:focus-within {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    outline: none;
}

.icon-box {
    width: 50px;
    height: 50px;
    border: 2px solid #f58220;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    background: #fff;
    flex-shrink: 0;
    border-radius: 50%;
    color: #f58220;
    font-size: 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.feature-item:hover .icon-box,
.feature-item:focus-within .icon-box {
    background-color: #f58220;
    color: #fff;
}

.feature-item-content h4 {
    font-size: 18px;
    margin-bottom: 6px;
    font-weight: 600;
    color: #222;
}

.feature-item-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    font-weight: 400;
}

/* Director Section */
.director-section {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.director-image {
    flex: 1;
    min-width: 300px;
}

.director-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    transition: transform 0.3s ease;
}

.director-image img:hover {
    transform: scale(1.02);
}

.director-content {
    flex: 1;
    min-width: 300px;
}

.director-content h2 {
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
    color: #222;
    transition: color 0.3s ease;
}

.director-content h2:hover {
    color: #f58220;
}

.director-content h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: #f58220;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.director-content:hover h2::after {
    width: 100px;
}

.director-content p {
    font-size: 16px;
    color: #444;
    margin-bottom: 20px;
    text-align: justify;
    line-height: 1.8;
    font-weight: 400;
}

/* Contact Page Styles */
.map-container iframe {
    width: 100%;
    height: 350px;
    border: none;
}

.contact-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1100px;
    margin: 40px auto;
    padding: 20px;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-info,
.contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-info h3,
.contact-form h3 {
    font-size: 20px;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 5px;
}

.contact-info h3::after,
.contact-form h3::after {
    content: "";
    width: 50px;
    height: 2px;
    background: #ff6600;
    position: absolute;
    left: 0;
    bottom: 0;
}

.contact-info img {
    width: 200px;
    margin: 15px 0;
}

.contact-info p {
    margin: 8px 0;
    font-size: 14px;
}

.contact-info strong {
    display: inline-block;
    width: 90px;
    color: #000;
}

/* Contact Form */
.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    transition: border 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #ff6600;
    outline: none;
}

.contact-form textarea {
    resize: none;
    min-height: 120px;
}

.contact-form button {
    background: #ff6600;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-form button:hover {
    background: #e65c00;
}

/* Success message */
.success-message {
    color: green;
    font-weight: bold;
    margin-bottom: 12px;
    display: none;
}

/* Career Page Styles */
.career-section-page {
    background: #fff;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    flex-wrap: wrap;
}

.career-left {
    flex: 1 1 400px;
    padding: 40px 30px;
    background: linear-gradient(135deg, #ff7e00, #ffb347);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 12px 0 0 12px;
    box-shadow: inset 0 0 50px rgba(255, 255, 255, 0.2);
}

.career-left h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    transition: color 0.3s ease;
}

.underline {
    width: 60px;
    height: 3px;
    background: #fff;
    margin-bottom: 30px;
    border-radius: 2px;
    box-shadow: 0 2px 6px rgba(255, 255, 255, 0.5);
}

.career-left img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    transition: transform 0.3s ease;
}

.career-left img:hover,
.career-left img:focus {
    transform: scale(1.05);
    outline: none;
}

.career-right {
    flex: 1 1 400px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.career-right h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ff7e00;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
}

.career-right .underline {
    background: #ff7e00;
    margin-bottom: 20px;
}

.career-right p {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Career Form Styles */
.career-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.career-form label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #444;
    user-select: none;
    display: block;
}

.career-form input {
    padding: 14px 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    font-family: inherit;
    margin-bottom: 5px;
}

.career-form input:focus {
    border-color: #ff7e00;
    box-shadow: 0 0 8px rgba(255, 126, 0, 0.5);
    outline: none;
}

.career-form input[type="file"] {
    padding: 10px;
    border: 2px solid #ddd;
    border-radius: 8px;
    background: #f9f9f9;
    font-size: 14px;
    transition: border-color 0.3s ease;
    width: 100%;
}

.career-form input[type="file"]:focus {
    border-color: #ff7e00;
    outline: none;
}

.career-form small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 12px;
}

.career-form textarea {
    padding: 14px 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    font-family: inherit;
    resize: vertical;
    min-height: 100px;
}

.career-form textarea:focus {
    border-color: #ff7e00;
    box-shadow: 0 0 8px rgba(255, 126, 0, 0.5);
    outline: none;
}

.error-message {
    color: #d93025;
    font-size: 13px;
    margin-top: 4px;
    font-weight: 600;
    display: none;
}

.career-form button {
    background: #ff7e00;
    color: #fff;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    user-select: none;
    margin-top: 10px;
}

.career-form button:hover,
.career-form button:focus {
    background: #e67300;
    box-shadow: 0 4px 15px rgba(230, 115, 0, 0.6);
    outline: none;
}

.career-form button:disabled {
    background: #ccc;
    cursor: not-allowed;
    box-shadow: none;
}

/* File input styling improvements */
.career-form input[type="file"]::-webkit-file-upload-button {
    background: #ff7e00;
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 10px;
    transition: background 0.3s ease;
}

.career-form input[type="file"]::-webkit-file-upload-button:hover {
    background: #e67300;
}

.career-form input[type="file"]::file-selector-button {
    background: #ff7e00;
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 10px;
    transition: background 0.3s ease;
}

.career-form input[type="file"]::file-selector-button:hover {
    background: #e67300;
}

/* Success Message Styles */
#careerSuccessMessage {
    background: #d4edda;
    color: #155724;
    padding: 12px;
    border-radius: 4px;
    margin: 15px 0;
    display: none;
    border: 1px solid #c3e6cb;
}

/* GST Page Styles */
.gst-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
    gap: 40px;
}

.gst-content {
    flex: 1 1 60%;
    min-width: 300px;
}

.gst-content h2 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #f58220;
    transition: color 0.3s ease;
}

.gst-content p {
    margin-bottom: 15px;
    text-align: justify;
    line-height: 1.7;
}

.gst-image-section {
    flex: 1 1 35%;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.gst-image-section img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.gst-image-section img:hover {
    transform: scale(1.03);
}

.gst-extra-content {
    text-align: justify;
}

.gst-extra-content h3 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: bold;
    color: #f58220;
    transition: color 0.3s ease;
}

.gst-extra-content p {
    line-height: 1.7;
}

.gst-contact-section {
    background-color: #FFFFFF;
    padding: 30px 20px;
    text-align: center;
    margin-top: 40px;
}

.gst-contact-section h2 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
    transition: color 0.3s ease;
}

.gst-contact-section p {
    font-size: 18px;
    margin: 10px 0;
    color: #555;
}

.gst-contact-section .phone {
    font-size: 22px;
    font-weight: bold;
    margin: 10px 0;
    color: #f58220;
}

.gst-btn {
    background-color: #f26522;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
    margin: 10px 5px;
}

.gst-btn:hover {
    background-color: #d35400;
    transform: translateY(-2px);
}

.gst-btn:focus {
    outline: 2px solid #f58220;
    outline-offset: 2px;
}

/* Stamp Duty Page Styles */
.stamp-duty-container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

.stamp-duty-wrapper {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.stamp-duty-left {
    flex: 1;
    min-width: 300px;
}

.stamp-duty-left img {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.stamp-duty-left img:hover {
    transform: scale(1.02);
}

.stamp-duty-left h2 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #f7931e;
    transition: color 0.3s ease;
}

.stamp-duty-left h3 {
    margin: 20px 0 10px;
    font-size: 18px;
    color: #f7931e;
    transition: color 0.3s ease;
}

.stamp-duty-left p {
    margin-bottom: 10px;
    font-size: 15px;
    text-align: justify;
}

.stamp-duty-right {
    flex: 1;
    min-width: 300px;
}

.stamp-duty-right h3 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #f7931e;
    transition: color 0.3s ease;
}

.stamp-duty-right p {
    margin-bottom: 10px;
    font-size: 15px;
    text-align: justify;
}

.stamp-duty-right ul {
    margin: 10px 0 10px 20px;
}

.stamp-duty-right ul li {
    margin-bottom: 6px;
    font-size: 14px;
}

.stamp-duty-contact-section {
    background: #FFFFFF;
    padding: 30px 20px;
    text-align: center;
    margin-top: 40px;
}

.stamp-duty-contact-section p {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: bold;
}

.stamp-duty-contact-section a {
    color: #f7931e;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
}

.stamp-duty-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    background: #f7931e;
    color: white;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
}

.stamp-duty-btn:hover {
    background: #d81717;
}

/* Screen reader only */
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    border: 0 !important;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 1024px) {
    .section {
        padding: 50px 5%;
    }
    .hero-badge {
        font-size: 20px;
        padding: 12px 25px;
    }
    .badge-line2 {
        font-size: 24px;
    }
}

@media (max-width: 900px) {
    .vision-mission,
    .achievements-content,
    .director-section {
        gap: 30px;
    }
    .career-section-page {
        flex-direction: column;
        border-radius: 12px;
    }
    .career-left,
    .career-right {
        flex: 1 1 100%;
        border-radius: 12px;
        padding: 30px 20px;
    }
    .career-left {
        border-radius: 12px 12px 0 0;
    }
    .career-right {
        border-radius: 0 0 12px 12px;
    }
    .gst-container {
        flex-direction: column;
        text-align: center;
    }
    .gst-image-section {
        justify-content: center;
    }
    .gst-extra-content {
        text-align: left;
    }
    .stamp-duty-wrapper {
        flex-direction: column;
    }
    .hero-content,
    .hero-person {
        flex: 1 1 100%;
    }
    .hero-person {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .about-page,
    .contact-page,
    .career-page,
    .gst-page,
    .stamp-duty-page,
    .projects-page {
        padding-top: 70px;
    }
    .section {
        padding: 40px 5%;
    }
    .section-header h2 {
        font-size: 24px;
    }
    .vision-mission,
    .achievements-content,
    .director-section {
        flex-direction: column;
        text-align: center;
    }
    .vision-mission-content h3::after,
    .features h3::after,
    .director-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .vision-mission img,
    .achievements-content .image,
    .director-image {
        max-width: 100%;
    }
    .vision-mission-content,
    .director-content {
        text-align: left;
    }
    .feature-item {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
    .icon-box {
        margin: 0 auto 15px;
    }
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
/* Default logo styles */
.logo-img {
  width: 55px;              /* adjust as needed */
  height: auto;
  margin-right: 10px;
  vertical-align: middle;
}

/* Desktop view */
.logo-text {
  display: flex;
  flex-direction: column;
}

.mobile-logo-text {
  display: none;
}

/* Mobile menu styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .logo-text {
    display: none;
  }

  .mobile-logo-text {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
  }

  .logo-img {
    width: 45px; /* smaller on mobile */
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(171, 96, 11, 0.05);
    padding: 20px 0;
    height: calc(100vh - 70px);
    overflow-y: auto;
    z-index: 999;
    gap: 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 15px 0;
    width: 100%;
  }

  .nav-menu a {
    justify-content: center;
    padding: 12px;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    width: 100%;
    display: none;
    transition: none;
    background: #f9f9f9;
    margin-top: 10px;
    border-radius: 0;
  }

  .nav-menu > li.active .dropdown-menu {
    display: block;
  }

  .dropdown-icon {
    transform: rotate(0deg) !important;
  }

  .nav-menu > li.active .dropdown-icon {
    transform: rotate(180deg) !important;
  }
}

    /* Contact page responsive */
    .contact-section {
        flex-direction: column;
        gap: 20px;
    }
    .hero-badge {
        font-size: 18px;
        padding: 10px 20px;
    }
    .badge-line1,
    .badge-line3 {
        font-size: 14px;
    }
    .badge-line2 {
        font-size: 20px;
    }
    .stats-row {
        justify-content: center;
    }
    .stat-box:not(:last-child)::after {
        display: none;
    }
    .testimonials-row {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .hero {
        min-height: 500px;
        padding: 70px 15px 15px;
    }
    .hero-badge {
        font-size: 16px;
        padding: 8px 16px;
        margin-bottom: 20px;
    }
    .badge-line1,
    .badge-line3 {
        font-size: 12px;
    }
    .badge-line2 {
        font-size: 18px;
    }
    .slider-nav {
        bottom: 20px;
    }
    .section-title,
    .stats-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    .feature-box {
        margin: 15px 10px;
        padding: 20px 15px;
    }
    .feature-icon {
        font-size: 40px;
    }
    .stat-box {
        flex: 1 1 100%;
        max-width: 250px;
    }
    .stat-number {
        font-size: 30px;
    }
    .testimonial-box {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 22px;
    }
    .about-text {
        font-size: 15px;
    }
    .vision-mission-content h3 {
        font-size: 20px;
    }
    .feature-item {
        padding: 20px 15px;
    }
    .feature-item-content h4 {
        font-size: 16px;
    }
    .feature-item-content p {
        font-size: 14px;
    }
    .gst-content h2 {
        font-size: 20px;
    }
    .gst-extra-content h3 {
        font-size: 16px;
    }
    .gst-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    .stamp-duty-left h2 {
        font-size: 20px;
    }
    .stamp-duty-left h3,
    .stamp-duty-right h3 {
        font-size: 16px;
    }
    .stamp-duty-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    .logo i {
        font-size: 28px;
        margin-right: 10px;
    }
    .mobile-logo-main {
        font-size: 14px;
    }
    .nav-container {
        padding: 0 15px;
    }
}

@media (max-width: 360px) {
    .mobile-logo-main {
        font-size: 13px;
    }
    .logo i {
        font-size: 24px;
    }
    .hero-badge {
        font-size: 14px;
        padding: 6px 12px;
    }
    .badge-line1,
    .badge-line3 {
        font-size: 11px;
    }
    .badge-line2 {
        font-size: 16px;
    }
    .section {
        padding: 30px 15px;
    }
    .feature-box {
        margin: 10px 5px;
        padding: 15px 10px;
    }
}