/* Combined CSS for Shetty Ventures Website */

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', 'Arial', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    color: #333;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 28px;
    text-decoration: none;
    color: white;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: #1976D2;
    border: 2px solid #1976D2;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid white;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-primary:hover {
    background-color: #01092b;
}

/* Projects Page Button Overrides */
.projects .btn {
    border-radius: 25px;
    font-size: 13px;
}

.projects .btn-primary {
    background: linear-gradient(135deg, #1976D2, #42A5F5);
}

.projects .btn-secondary {
    color: #1976D2;
    border: 2px solid #1976D2;
}

.projects .btn:hover {
    box-shadow: 0 8px 25px rgba(25, 118, 210, 0.4);
}

.projects .btn-secondary:hover {
    background-color: #1976D2;
    color: white;
}

/* Section Header Styles */
.section-header {
    margin-bottom: 40px;
    text-align: center;
}

.section-header h2 {
    font-size: 32px;
    color: #1976D2;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: #1976D2;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    color: #777;
    max-width: 700px;
    margin: 0 auto;
}

/* Projects Page Section Header Overrides */
.projects .section-header {
    margin-bottom: 50px;
}

.projects .section-header h2 {
    font-size: 36px;
}

.projects .section-header h2::after {
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #1976D2, #42A5F5);
    border-radius: 2px;
}

.projects .section-header p {
    color: #666;
    max-width: 800px;
    font-size: 16px;
}

/* Header styles */
header {
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

/* Header Logo Styles */
.logo {
    display: flex;
    align-items: center;
}

.logo img, .logo svg {
    height: auto;
    max-height: 60px;
    object-fit: contain;
}

.logo h1 {
    color: #1976D2;
    font-size: 22px;
    font-weight: 700;
}

/* Projects Page Header Overrides */
.projects header {
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.projects .logo img {
    height: 60px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

/* Projects Page Navigation Overrides */
.projects nav ul {
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 0;
    position: relative;
}

nav ul li a:hover {
    color: #1976D2;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #1976D2;
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

.header-contact {
    display: flex;
    align-items: center;
}

.header-phone {
    display: flex;
    align-items: center;
    margin-right: 20px;
    font-size: 14px;
    font-weight: 500;
}

/* Projects Page Header Phone Overrides */
.projects .header-phone {
    margin-right: 0;
    font-weight: 600;
    color: #1976D2;
}

.header-phone i {
    color: #1976D2;
    font-size: 18px;
    margin-right: 8px;
}

.search-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: #1976D2;
}

/* Hero slider */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
}

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.slide-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
    text-align: center;
}

.slide-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.slide-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-nav-item {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-nav-item.active, .slider-nav-item:hover {
    background-color: #fff;
    transform: scale(1.2);
}

/* Page Hero */
.page-hero {
    background: linear-gradient(rgba(25, 118, 210, 0.8), rgba(1, 9, 43, 0.8)), url('./images/about-hero.jpg') no-repeat center/cover;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-hero-content p {
    font-size: 18px;
    opacity: 0.9;
}

/* Breadcrumb */
.breadcrumb {
    background-color: #f8f9fa;
    padding: 20px 0;
}

/* Projects Page Breadcrumb Override */
.projects .breadcrumb {
    background: linear-gradient(135deg, #f8f9ff, #f0f7ff);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
}

.breadcrumb-list li {
    margin-right: 10px;
}

.breadcrumb-list li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-list li a:hover {
    color: #1976D2;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '/';
    margin-left: 10px;
    color: #999;
}

.breadcrumb-list li:last-child {
    color: #1976D2;
    font-weight: 500;
}

/* Projects Page Breadcrumb Override */
.projects .breadcrumb-list li:last-child {
    font-weight: 600;
}

/* Counter section */
.counter-section {
    background-color: #1976D2;
    color: white;
    padding: 40px 0;
}

.counter-container {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.counter-item {
    flex: 1;
    padding: 20px;
}

.counter-number {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.counter-text {
    font-size: 16px;
    opacity: 0.9;
}

/* About section */
.about {
    padding: 100px 0;
    background-color: #f9f9f9;
}

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

.about-text {
    flex: 1;
}

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

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.about-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid #1976D2;
    border-radius: 8px;
    top: 20px;
    left: 20px;
    z-index: -1;
}

.read-more {
    display: inline-block;
    margin-top: 20px;
    color: #1976D2;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    position: relative;
    padding-bottom: 5px;
}

.read-more::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #1976D2;
    transition: width 0.3s ease;
}

.read-more:hover::after {
    width: 100%;
}

/* Company Overview */
.company-overview {
    padding: 80px 0;
    background-color: #fff;
}

.overview-content {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.overview-text {
    flex: 1.2;
}

.overview-text h3 {
    color: #1976D2;
    font-size: 24px;
    margin-bottom: 20px;
}

.overview-text p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.overview-image {
    flex: 1;
    position: relative;
}

.overview-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.overview-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid #1976D2;
    border-radius: 8px;
    top: 20px;
    left: 20px;
    z-index: -1;
}

/* Company Stats */
.company-stats {
    background-color: #1976D2;
    color: white;
    padding: 60px 0;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.stat-text {
    font-size: 16px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Projects Overview Stats */
.projects-overview {
    padding: 60px 0;
    background: linear-gradient(135deg, #1976D2, #42A5F5);
    color: white;
}

.overview-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mission section */
.mission {
    padding: 100px 0;
    background: url('./images/about-hero.jpg') no-repeat center/cover;
    position: relative;
    color: white;
}

.mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.mission-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.mission-content h2 {
    margin-bottom: 25px;
    font-size: 36px;
    position: relative;
}

.mission-content h2::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: white;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.mission-content p {
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 1.8;
}

/* Mission Vision Values */
.mission-vision {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.mvv-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mvv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #1976D2;
}

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

.mvv-icon {
    font-size: 48px;
    color: #1976D2;
    margin-bottom: 25px;
}

.mvv-card h3 {
    color: #1976D2;
    font-size: 24px;
    margin-bottom: 20px;
}

.mvv-card p {
    color: #666;
    line-height: 1.7;
}

/* Why Choose Us section */
.why-choose {
    padding: 100px 0;
    background-color: #fff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.benefit-card {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    gap: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background-color: #1976D2;
    transition: height 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.benefit-card:hover::before {
    height: 100%;
}

.benefit-icon {
    color: #1976D2;
    font-size: 40px;
    flex-shrink: 0;
}

.benefit-text h3 {
    margin-bottom: 15px;
    color: #1976D2;
    font-size: 22px;
}

.benefit-text p {
    color: #666;
    line-height: 1.7;
}

/* Projects section */
.projects {
    padding: 100px 0;
    background-color: #f5f5f5;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.project-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.project-image {
    height: 250px;
    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-content {
    padding: 25px;
}

.project-content h3 {
    margin-bottom: 10px;
    font-size: 20px;
    color: #1976D2;
}

.project-content p {
    color: #666;
    margin-bottom: 20px;
}

.project-location {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #777;
    font-size: 14px;
}

.project-location i {
    margin-right: 8px;
    color: #1976D2;
}

/* Individual Project Showcase */
.project-showcase {
    padding: 80px 0;
    background-color: #fff;
}

.project-item {
    margin-bottom: 120px;
    position: relative;
}

.project-item:last-child {
    margin-bottom: 0;
}

.project-content-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 40px;
}

.project-item:nth-child(even) .project-content-wrapper {
    flex-direction: row-reverse;
}

.project-image-section {
    flex: 1.2;
    position: relative;
}

.project-slider {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

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

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

.project-slide.active {
    opacity: 1;
}

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

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: white;
    transform: scale(1.2);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #1976D2;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-arrow:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

.project-status-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-under-construction {
    background: linear-gradient(135deg, #FF9800, #F57C00);
    color: white;
}

.status-pre-launch {
    background: linear-gradient(135deg, #2196F3, #1976D2);
    color: white;
}

.status-ready {
    background: linear-gradient(135deg, #4CAF50, #388E3C);
    color: white;
}

.project-details-section {
    flex: 1;
    padding: 20px 0;
}

.project-title {
    font-size: 32px;
    color: #1976D2;
    margin-bottom: 15px;
    font-weight: 700;
}

.project-description {
    color: #555;
    margin-bottom: 30px;
    line-height: 1.8;
    font-size: 16px;
}

.project-highlights {
    background: linear-gradient(135deg, #f8f9ff, #f0f7ff);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    border-left: 5px solid #1976D2;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.highlight-item {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.highlight-label {
    color: #666;
    font-weight: 500;
    min-width: 120px;
}

.highlight-value {
    color: #1976D2;
    font-weight: 700;
}

.project-price-section {
    background: linear-gradient(135deg, #1976D2, #42A5F5);
    color: white;
    padding: 10px 15px;
    border-radius: 15px;
    margin-bottom: 30px;
    text-align: center;
}

.price-label {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-amount {
    font-size: 28px;
    font-weight: 700;
}

.project-actions {
    display: flex;
    gap: 15px;
}

.action-btn {
    flex: 1;
    padding: 15px 25px;
    text-align: center;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.btn-details {
    background: linear-gradient(135deg, #1976D2, #42A5F5);
    color: white;
}

.btn-contact {
    background: transparent;
    color: #1976D2;
    border: 2px solid #1976D2;
}

.btn-brochure {
    background: linear-gradient(135deg, #4CAF50, #388E3C);
    color: white;
}

/* Additional Images Gallery */
.project-gallery {
    margin-top: 40px;
}

.gallery-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-image {
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-image:hover {
    transform: translateY(-5px);
}

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

/* RERA Information */
.rera-info {
    background: linear-gradient(135deg, #FFF3E0, #FFE0B2);
    padding: 20px 30px;
    border-radius: 12px;
    margin-top: 30px;
    border-left: 4px solid #FF9800;
}

.rera-title {
    font-size: 14px;
    color: #E65100;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.rera-number {
    font-size: 16px;
    color: #BF360C;
    font-weight: 600;
}

/* Coming Soon Section */
.coming-soon {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
}

.coming-soon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.coming-soon-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.coming-soon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #1976D2, #42A5F5);
}

.coming-soon-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.coming-soon-icon {
    font-size: 50px;
    color: #1976D2;
    margin-bottom: 25px;
}

.coming-soon-title {
    font-size: 22px;
    color: #1976D2;
    margin-bottom: 12px;
    font-weight: 700;
}

.coming-soon-subtitle {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

element-1 {
    width: 200px;
    height: 200px;
    top: -100px;
    right: -100px;
}

.element-2 {
    width: 150px;
    height: 150px;
    bottom: -75px;
    left: -75px;
}

.element-3 {
    width: 180px;
    height: 180px;
    top: -90px;
    left: -90px;
}

.element-4 {
    width: 120px;
    height: 120px;
    bottom: -60px;
    right: -60px;
}

.element-5 {
    width: 160px;
    height: 160px;
    top: -80px;
    right: -80px;
}

.element-6 {
    width: 140px;
    height: 140px;
    bottom: -70px;
    left: -70px;
}

/* ======================================
   MEMBER IMAGE CONTAINER
   ====================================== */
.member-image-container {
    position: relative;
    width: 300px;
    height: 350px;
    margin: 30px;
    flex-shrink: 0;
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(25, 118, 210, 0.2);
}

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

.modern-team-card:hover .image-wrapper img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.8), rgba(66, 165, 245, 0.6));
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay-content {
    text-align: center;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1976D2;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    transform: translateY(20px) scale(0.8);
    opacity: 0;
}

.social-link:hover {
    background: white;
    transform: translateY(0) scale(1.1);
    box-shadow: 0 8px 25px rgba(25, 118, 210, 0.3);
}

.designation-badge {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.founder-badge {
    background: linear-gradient(135deg, #FFD700, #FFA000);
    color: white;
}

.director-badge {
    background: linear-gradient(135deg, #1976D2, #42A5F5);
    color: white;
}

/* ======================================
   MEMBER CONTENT
   ====================================== */
.member-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.member-header {
    margin-bottom: 25px;
}

.member-name {
    font-size: 2rem;
    font-weight: 800;
    color: #1976D2;
    margin-bottom: 8px;
    line-height: 1.2;
}

.member-position {
    font-size: 1.1rem;
    color: #666;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.experience-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f8f9ff, #e3f2fd);
    color: #1976D2;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(25, 118, 210, 0.1);
}

.member-bio {
    margin-bottom: 25px;
}

.member-bio p {
    color: #555;
    line-height: 1.8;
    font-size: 16px;
}

.expertise-section {
    margin-bottom: 25px;
}

.expertise-section h4 {
    color: #1976D2;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.expertise-tag {
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.1), rgba(66, 165, 245, 0.1));
    color: #1976D2;
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(25, 118, 210, 0.2);
    transition: all 0.3s ease;
}

.expertise-tag:hover {
    background: linear-gradient(135deg, #1976D2, #42A5F5);
    color: white;
    transform: translateY(-2px);
}

.member-quote {
    background: linear-gradient(135deg, #f8f9ff, #e3f2fd);
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid #1976D2;
    position: relative;
    margin-top: auto;
}

.member-quote i {
    color: #1976D2;
    font-size: 16px;
    margin-bottom: 10px;
}

.member-quote p {
    color: #555;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
    font-size: 15px;
}

/* Card Layout Adjustments */
.modern-team-card {
    display: flex;
    align-items: stretch;
    min-height: 500px;
}

.modern-team-card:nth-child(even) {
    flex-direction: row-reverse;
}

.modern-team-card:nth-child(even) .member-image-container {
    margin: 30px 30px 30px 0;
}

/* ======================================
   TEAM VALUES SECTION
   ====================================== */
.team-values-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e3f2fd 100%);
    position: relative;
}

.team-values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231976d2' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(25, 118, 210, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(25, 118, 210, 0.05);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #1976D2, #42A5F5);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(25, 118, 210, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1976D2, #42A5F5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(25, 118, 210, 0.3);
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-card h3 {
    color: #1976D2;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.value-card p {
    color: #666;
    line-height: 1.7;
    font-size: 15px;
}

/* ======================================
   TEAM CTA SECTION
   ====================================== */
.team-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1976D2 0%, #42A5F5 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.team-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,0 L60,60 L120,0 L60,60 L120,120 L60,60 L0,120 L60,60 Z' fill='none' stroke='rgba(255,255,255,0.05)' stroke-width='2'/%3E%3C/svg%3E");
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.team-cta-section h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.team-cta-section p {
    font-size: 1.3rem;
    opacity: 0.95;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-btn.primary {
    background: white;
    color: #1976D2;
    border-color: white;
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.cta-btn.primary:hover {
    background: #f5f5f5;
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ======================================
   RESPONSIVE DESIGN
   ====================================== */
@media (max-width: 1200px) {
    .leadership-grid {
        gap: 50px;
    }
    
    .member-image-container {
        width: 250px;
        height: 300px;
    }
    
    .member-name {
        font-size: 1.8rem;
    }
}

@media (max-width: 992px) {
    .modern-team-card {
        flex-direction: column !important;
        text-align: center;
        min-height: auto;
    }
    
    .modern-team-card:nth-child(even) {
        flex-direction: column !important;
    }
    
    .member-image-container {
        width: 200px;
        height: 250px;
        margin: 30px auto !important;
        align-self: center;
    }
    
    .member-content {
        padding: 30px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-stats {
        gap: 40px;
    }
    
    .hero-stat .stat-number {
        font-size: 2rem;
    }
    
    .team-hero h1 {
        font-size: 2.8rem;
    }
    
    .team-cta-section h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .team-hero {
        padding: 80px 0 60px;
    }
    
    .team-hero h1 {
        font-size: 2.2rem;
    }
    
    .team-hero p {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
        margin-top: 40px;
    }
    
    .modern-team-section {
        padding: 60px 0;
    }
    
    .leadership-grid {
        gap: 40px;
        margin-top: 40px;
    }
    
    .member-image-container {
        width: 180px;
        height: 220px;
    }
    
    .member-name {
        font-size: 1.5rem;
    }
    
    .member-position {
        font-size: 1rem;
    }
    
    .member-bio p {
        font-size: 15px;
    }
    
    .expertise-tags {
        justify-content: center;
    }
    
    .team-values-section {
        padding: 60px 0;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .team-cta-section {
        padding: 60px 0;
    }
    
    .team-cta-section h2 {
        font-size: 2rem;
    }
    
    .team-cta-section p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .team-hero h1 {
        font-size: 1.8rem;
    }
    
    .team-hero p {
        font-size: 1rem;
    }
    
    .hero-badge {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .member-image-container {
        width: 150px;
        height: 180px;
        margin: 20px auto !important;
    }
    
    .member-content {
        padding: 20px;
    }
    
    .member-name {
        font-size: 1.3rem;
    }
    
    .member-position {
        font-size: 0.9rem;
    }
    
    .member-bio p {
        font-size: 14px;
    }
    
    .value-card {
        padding: 25px 20px;
    }
    
    .value-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .value-card h3 {
        font-size: 1.2rem;
    }
    
    .team-cta-section h2 {
        font-size: 1.8rem;
    }
    
    .cta-badge {
        padding: 8px 16px;
        font-size: 12px;
    }
}

/* ======================================
   ANIMATION CLASSES
   ====================================== */
.animate-in {
    animation: slideInUp 0.8s ease-out;
}

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

/* ======================================
   ENHANCED HOVER EFFECTS
   ====================================== */
.modern-team-card:hover .decoration-element {
    transform: scale(1.2) rotate(45deg);
    transition: transform 0.6s ease;
}

.modern-team-card:hover .member-quote {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(25, 118, 210, 0.1);
    transition: all 0.3s ease;
}css file
   ====================================== */

/* Team Page Body Class */
.team-page {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

/* ======================================
   TEAM HERO SECTION
   ====================================== */
.team-hero {
    background: linear-gradient(135deg, #1976D2 0%, #42A5F5 50%, #64B5F6 100%);
    color: white;
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.team-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,0 Q50,25 100,0 Q50,75 0,100 Q50,75 100,100 Q50,25 0,0' fill='none' stroke='rgba(255,255,255,0.1)' stroke-width='2'/%3E%3C/svg%3E");
    opacity: 0.3;
}

.team-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.team-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(45deg, #ffffff, #e3f2fd, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.team-hero p {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
}

.hero-stat {
    text-align: center;
}

.hero-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.hero-stat .stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 20s infinite linear;
}

.shape-1 {
    width: 120px;
    height: 120px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 15%;
    animation-delay: -7s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 70%;
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(90deg); }
    50% { transform: translateY(0px) rotate(180deg); }
    75% { transform: translateY(20px) rotate(270deg); }
}

/* ======================================
   MODERN TEAM SECTION
   ====================================== */
.modern-team-section {
    padding: 100px 0;
    background: white;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #e3f2fd, #f8f9ff);
    color: #1976D2;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(25, 118, 210, 0.1);
}

.leadership-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    margin-top: 60px;
}

/* ======================================
   MODERN TEAM CARDS
   ====================================== */
.modern-team-card {
    background: white;
    border-radius: 25px;
    padding: 0;
    box-shadow: 0 15px 50px rgba(25, 118, 210, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(25, 118, 210, 0.05);
}

.modern-team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(25, 118, 210, 0.15);
}

.card-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.decoration-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.05), rgba(66, 165, 245, 0.05));
}

.notify-btn {
    background: linear-gradient(135deg, #1976D2, #42A5F5);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

.notify-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(25, 118, 210, 0.4);
}

/* Why Choose Location */
.location-advantages {
    padding: 80px 0;
    background-color: #fff;
}

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

.advantage-card {
    background: white;
    padding: 35px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    border-color: #1976D2;
}

.advantage-icon {
    font-size: 45px;
    color: #1976D2;
    margin-bottom: 25px;
}

.advantage-title {
    font-size: 20px;
    color: #1976D2;
    margin-bottom: 15px;
    font-weight: 700;
}

.advantage-description {
    color: #666;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1976D2, #42A5F5);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    background: white;
    color: #1976D2;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.3);
}

/* Team section */
.team {
    padding: 100px 0;
    background-color: #fff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.team-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.team-image {
    height: 300px;
    overflow: hidden;
    position: relative;
}

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

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

.team-social {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    opacity: 0;
    transition: all 0.3s ease;
}

.team-card:hover .team-social {
    opacity: 1;
    bottom: 25px;
}

.team-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(25, 118, 210, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.team-social a:hover {
    background-color: #01092b;
    transform: translateY(-3px);
}

.team-content {
    padding: 25px;
}

.team-content h3 {
    margin-bottom: 8px;
    font-size: 22px;
    color: #1976D2;
}

.team-position {
    color: #777;
    font-size: 14px;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
}

.team-description {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

.team-experience {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 15px;
    background-color: #f0f7ff;
    color: #1976D2;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Board of Directors */
.board-directors {
    padding: 80px 0;
    background-color: #fff;
}

.board-container {
    margin-top: 50px;
}

.board-member {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 12px;
    padding: 0;
    margin-bottom: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
}

.board-member:nth-child(even) {
    flex-direction: row-reverse;
}

.board-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

.member-image-section {
    flex: 0 0 320px;
    height: 400px;
    position: relative;
    overflow: hidden;
}

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

.board-member:hover .member-image-section img {
    transform: scale(1.05);
}

.member-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.1), rgba(1, 9, 43, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.board-member:hover .member-image-overlay {
    opacity: 1;
}

.member-social-floating {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.board-member:hover .member-social-floating {
    opacity: 1;
    transform: translateX(0);
}

.member-social-floating a {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1976D2;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.member-social-floating a:hover {
    background-color: #1976D2;
    color: white;
    transform: scale(1.1);
}

.member-content-section {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.member-header {
    margin-bottom: 25px;
}

.member-name {
    color: #1976D2;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.2;
}

.member-position {
    color: #666;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
}

.member-position::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #1976D2, #64B5F6);
    border-radius: 2px;
}

.member-bio {
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 15px;
}

.member-expertise {
    background: linear-gradient(135deg, #f8f9ff, #f0f7ff);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #1976D2;
    margin-bottom: 20px;
}

.member-expertise h5 {
    color: #1976D2;
    font-size: 14px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.expertise-tag {
    background-color: rgba(25, 118, 210, 0.1);
    color: #1976D2;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(25, 118, 210, 0.2);
}

.member-experience-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #1976D2, #42A5F5);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.member-experience-badge i {
    margin-right: 8px;
    font-size: 14px;
}

/* Chairman/Founder special styling */
.board-member.chairman {
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.02), rgba(1, 9, 43, 0.05));
    border: 2px solid rgba(25, 118, 210, 0.1);
}

.board-member.chairman .member-name {
    background: linear-gradient(135deg, #1976D2, #42A5F5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.board-member.chairman .member-position::after {
    background: linear-gradient(90deg, #FFD700, #FFA000);
}

/* Company Timeline */
.company-timeline {
    padding: 50px 0;
    background-color: #f5f5f5;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 40px auto 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background-color: #1976D2;
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 40px;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 40px;
}

.timeline-content {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 20px;
    width: 0;
    height: 0;
    border: 10px solid transparent;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -20px;
    border-left-color: white;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -20px;
    border-right-color: white;
}

.timeline-year {
    background-color: #1976D2;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.timeline-title {
    color: #1976D2;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.timeline-desc {
    color: #666;
    line-height: 1.6;
}

.timeline-dot {
    position: absolute;
    top: 20px;
    width: 16px;
    height: 16px;
    background-color: #1976D2;
    border: 4px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 4px #1976D2;
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -48px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -48px;
}

/* Services section */
.services {
    padding: 100px 0;
    background-color: #f5f5f5;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: white;
    padding: 40px 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #1976D2;
    transition: height 0.5s ease;
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    color: white;
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover .service-icon,
.service-card:hover h3 {
    color: white;
}

.service-icon {
    color: #1976D2;
    font-size: 48px;
    margin-bottom: 25px;
    transition: color 0.3s ease;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
    color: #1976D2;
    transition: color 0.3s ease;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background-color: #f9f9f9;
    position: relative;
}

.testimonials-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-item {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    position: relative;
}

.testimonial-text {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-size: 50px;
    color: #1976D2;
    opacity: 0.2;
    position: absolute;
}

.testimonial-text::before {
    top: -20px;
    left: -15px;
}

.testimonial-text::after {
    bottom: -50px;
    right: -15px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-author-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 15px;
    border: 3px solid #1976D2;
}

.testimonial-author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author-name {
    font-size: 18px;
    font-weight: 600;
    color: #1976D2;
    margin-bottom: 5px;
}

.testimonial-author-title {
    font-size: 14px;
    color: #777;
}

/* Commitment section */
.commitment {
    padding: 100px 0;
    background-color: #fff;
}

.commitment-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.commitment-text {
    flex: 1;
}

.commitment-text p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.commitment-image {
    flex: 1;
    position: relative;
}

.commitment-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* Certificates section */
.certificates {
    padding: 100px 0;
    background-color: #f5f5f5;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.certificate-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.certificate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.certificate-image {
    height: 200px;
    overflow: hidden;
}

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

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

/* FAQ section */
.faq {
    padding: 100px 0;
    background-color: #fff;
}

.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #1976D2;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
    padding-bottom: 20px;
    color: #666;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 20px 20px;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Partners section */
.partners {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.partners-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.partner-logo {
    flex: 1;
    text-align: center;
    padding: 20px;
    min-width: 150px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.05);
}

.partner-logo img {
    max-width: 100%;
    max-height: 60px;
}

/* Contact section */
.contact {
    padding: 100px 0;
    background-color: #f5f5f5;
}

/* About Page Contact Override */
.about-page .contact {
    padding: 50px 0;
}

.contact-content {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.contact-form {
    flex: 2;
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-form h3 {
    margin-bottom: 25px;
    color: #1976D2;
    font-size: 24px;
    position: relative;
    padding-bottom: 10px;
}

.contact-form h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background-color: #1976D2;
    bottom: 0;
    left: 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #1976D2;
    box-shadow: 0 0 0 2px rgba(44, 62, 80, 0.1);
    outline: none;
}

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

.form-submit {
    background-color: #1976D2;
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    display: inline-block;
}

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

.contact-cta {
    flex: 1;
    background-color: #1976D2;
    color: white;
    padding: 40px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-cta h3 {
    margin-bottom: 25px;
    font-size: 24px;
}

.contact-cta p {
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.7;
}

.contact-info {
    margin-top: 40px;
}

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

.contact-info-icon {
    color: white;
    font-size: 20px;
    margin-right: 15px;
    margin-top: 2px;
}

.contact-info-text {
    font-size: 15px;
    line-height: 1.6;
}

/* Footer */
footer {
    background-color: #01092b;
    color: #fff;
    padding: 80px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.footer-info {
    flex: 1.5;
    max-width: 400px;
}

/* Footer Logo Styles */
.footer-logo {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.footer-logo img, .footer-logo svg {
    height: auto;
    object-fit: contain;
}

/* Projects Page Footer Logo Override */
.projects .footer-logo img {
    height: 50px;
}

.footer-logo h2 {
    color: white;
    font-size: 20px;
}

.footer-info p {
    color: #bbb;
    margin-bottom: 25px;
    line-height: 1.7;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background-color: #1976D2;
    transform: translateY(-3px);
}

/* Projects Page Footer Social Override */
.projects .footer-social a {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #1976D2, #42A5F5);
    font-size: 18px;
}

.projects .footer-social a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(25, 118, 210, 0.4);
}

.footer-links {
    flex: 1;
}

.footer-links h4 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 18px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: #1976D2;
    bottom: 0;
    left: 0;
}

/* Projects Page Footer Links Override */
.projects .footer-links h4::after {
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, #1976D2, #42A5F5);
    border-radius: 2px;
}

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

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

.footer-links ul li a {
    color: #bbb;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-links ul li a::before {
    content: '›';
    position: absolute;
    left: 0;
    color: #1976D2;
    font-size: 18px;
    line-height: 1;
}

.footer-links ul li a:hover {
    color: white;
    padding-left: 20px;
}

.footer-newsletter {
    flex: 1.5;
}

.footer-newsletter h4 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 18px;
    position: relative;
    padding-bottom: 10px;
}

.footer-newsletter h4::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: #1976D2;
    bottom: 0;
    left: 0;
}

/* Projects Page Footer Newsletter Override */
.projects .footer-newsletter h4::after {
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, #1976D2, #42A5F5);
    border-radius: 2px;
}

.footer-newsletter p {
    color: #bbb;
    margin-bottom: 20px;
    line-height: 1.7;
}

.newsletter-form {
    display: flex;
}

/* Projects Page Newsletter Form Override */
.projects .newsletter-form {
    border-radius: 25px;
    overflow: hidden;
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
}

/* Projects Page Newsletter Input Override */
.projects .newsletter-input {
    padding: 12px 20px;
    border-radius: 0;
    outline: none;
}

.newsletter-btn {
    background-color: #1976D2;
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background-color: #3498db;
}

/* Projects Page Newsletter Button Override */
.projects .newsletter-btn {
    background: linear-gradient(135deg, #1976D2, #42A5F5);
    padding: 0 25px;
    border-radius: 0;
}

.projects .newsletter-btn:hover {
    background: linear-gradient(135deg, #42A5F5, #1976D2);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #bbb;
    font-size: 14px;
}

.footer-bottom-links a {
    color: #bbb;
    margin-left: 20px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: white;
}

/* Section padding and offset for smooth scrolling */
section[id] {
    scroll-margin-top: 80px;
}

/* Responsive styles */
@media (max-width: 1100px) {
    .projects-grid,
    .certificates-grid,
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .benefits-grid,
    .services-grid,
    .projects-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .certificates-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .about-content,
    .commitment-content,
    .contact-content,
    .overview-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .about-image, 
    .commitment-image,
    .overview-image {
        margin-top: 30px;
        order: 2;
    }

    .overview-text {
        order: 1;
    }
    
    .counter-container {
        flex-wrap: wrap;
    }
    
    .counter-item {
        flex: 0 0 50%;
    }
    
    .footer-content {
        flex-wrap: wrap;
        gap: 40px;
    }
    
    .footer-info,
    .footer-links,
    .footer-newsletter {
        flex: 0 0 100%;
        max-width: 100%;
    }

    /* About Page Responsive Overrides */
    .overview-content {
        flex-direction: column !important;
        gap: 30px;
    }

    /* Force the reverse direction to also become column */
    .overview-content[style*="row-reverse"] {
        flex-direction: column !important;
    }

    .overview-image {
        margin-top: 20px;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .mvv-grid {
        grid-template-columns: 1fr;
    }

    /* Board of Directors Responsive */
    .board-member {
        flex-direction: column !important;
        text-align: center;
    }

    .board-member:nth-child(even) {
        flex-direction: column !important;
    }

    .member-image-section {
        flex: none;
        width: 100%;
        height: 300px;
    }

    .member-content-section {
        padding: 30px 20px;
    }

    .member-name {
        font-size: 24px;
    }

    .member-bio {
        font-size: 14px;
    }

    .expertise-tags {
        justify-content: center;
    }

    .board-grid {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 60px !important;
        padding-right: 0 !important;
        text-align: left !important;
    }

    .timeline-content::before {
        left: -20px !important;
        border-right-color: white !important;
        border-left-color: transparent !important;
    }

    .timeline-dot {
        left: 12px !important;
        right: auto !important;
    }

/* Projects Page Responsive Fixes */

/* Project Showcase Mobile Improvements */
@media (max-width: 992px) {
    /* Project Content Wrapper */
    .project-content-wrapper {
        flex-direction: column !important;
        gap: 30px;
    }
    
    .project-item:nth-child(even) .project-content-wrapper {
        flex-direction: column !important;
    }
    
    /* Project Image Section */
    .project-image-section {
        flex: none;
        width: 100%;
    }
    
    .project-slider {
        height: 300px;
        border-radius: 15px;
    }
    
    /* Project Details Section */
    .project-details-section {
        padding: 10px 0;
        text-align: center;
    }
    
    .project-title {
        font-size: 28px;
        text-align: center;
    }
    
    .project-location {
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .project-description {
        text-align: center;
        margin-bottom: 25px;
    }
    
    /* Project Highlights */
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .highlight-item {
        justify-content: space-between;
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }
    
    /* Project Actions */
    .project-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .action-btn {
        width: 100%;
        text-align: center;
    }
    
    /* Gallery Images */
    .gallery-images {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .gallery-image {
        height: 150px;
    }
    
    /* Advantages Grid */
    .advantages-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .advantage-card {
        padding: 25px 20px;
    }
}

@media (max-width: 768px) {
    /* Project Showcase Mobile */
    .project-item {
        margin-bottom: 60px;
    }
    
    .project-slider {
        height: 250px;
        border-radius: 12px;
    }
    
    .project-title {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .project-location {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .project-description {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    /* Project Highlights Mobile */
    .project-highlights {
        padding: 20px 15px;
        margin-bottom: 20px;
    }
    
    .highlight-item {
        font-size: 13px;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding: 8px 0;
    }
    
    .highlight-label {
        min-width: auto;
        margin-bottom: 5px;
        font-weight: 600;
    }
    
    .highlight-value {
        font-size: 14px;
    }
    
    /* Project Price Section Mobile */
    .project-price-section {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .price-label {
        font-size: 13px;
    }
    
    .price-amount {
        font-size: 24px;
    }
    
    /* Project Actions Mobile */
    .project-actions {
        gap: 12px;
    }
    
    .action-btn {
        padding: 12px 20px;
        font-size: 13px;
    }
    
    /* RERA Info Mobile */
    .rera-info {
        padding: 15px 20px;
        margin-top: 20px;
    }
    
    .rera-title {
        font-size: 13px;
    }
    
    .rera-number {
        font-size: 15px;
    }
    
    /* Gallery Mobile */
    .gallery-images {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .gallery-image {
        height: 200px;
    }
    
    /* Coming Soon Mobile */
    .coming-soon-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .coming-soon-card {
        padding: 30px 20px;
    }
    
    .coming-soon-icon {
        font-size: 40px;
        margin-bottom: 20px;
    }
    
    .coming-soon-title {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .coming-soon-subtitle {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    /* Advantages Mobile */
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .advantage-card {
        padding: 25px 15px;
    }
    
    .advantage-icon {
        font-size: 35px;
        margin-bottom: 20px;
    }
    
    .advantage-title {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .advantage-description {
        font-size: 15px;
    }
    
    /* Project Slider Mobile */
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .slider-arrow.prev {
        left: 10px;
    }
    
    .slider-arrow.next {
        right: 10px;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
    }
    
    .slider-nav {
        bottom: 15px;
        gap: 6px;
    }
    
    /* CTA Section Mobile */
    .cta-content h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .cta-content p {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
        padding: 12px 25px;
    }
}

@media (max-width: 480px) {
    /* Extra Small Mobile */
    .project-slider {
        height: 200px;
        border-radius: 10px;
    }
    
    .project-title {
        font-size: 22px;
    }
    
    .project-description {
        font-size: 14px;
    }
    
    .project-highlights {
        padding: 15px 12px;
    }
    
    .highlight-item {
        font-size: 12px;
    }
    
    .highlight-value {
        font-size: 13px;
    }
    
    .project-price-section {
        padding: 12px;
    }
    
    .price-amount {
        font-size: 22px;
    }
    
    .action-btn {
        padding: 10px 15px;
        font-size: 12px;
    }
    
    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .slider-dot {
        width: 8px;
        height: 8px;
    }
    
    .advantage-icon {
        font-size: 30px;
    }
    
    .advantage-title {
        font-size: 16px;
    }
    
    .advantage-description {
        font-size: 14px;
    }
    
    .coming-soon-card {
        padding: 25px 15px;
    }
    
    .coming-soon-icon {
        font-size: 35px;
    }
    
    .coming-soon-title {
        font-size: 18px;
    }
}
}

@media (max-width: 768px) {
    .services-grid,
    .projects-grid,
    .certificates-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .slide-content h2 {
        font-size: 32px;
    }
    
    .slide-content p {
        font-size: 16px;
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .logo img, .logo svg {
        height: 60px;
        max-width: 150px;
    }
    
    .footer-logo img, .footer-logo svg {
        height: 50px;
        max-width: 140px;
    }
    
    .logo h1 {
        font-size: 18px;
    }
    
    .footer-logo h2 {
        font-size: 16px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 5px 10px;
    }

    /* About Page Responsive Overrides */
    .page-hero-content h1 {
        font-size: 36px;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    /* Projects Page Responsive Overrides */
    .page-hero-content h1 {
        font-size: 40px;
    }
    
    .overview-stats,
    .coming-soon-grid,
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-images {
        grid-template-columns: 1fr;
    }
    
    .project-title {
        font-size: 28px;
    }
    
    .project-actions {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    /* Projects Page Navigation Override */
    .projects nav ul {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .logo img, .logo svg {
        height: 50px;
        max-width: 120px;
    }
    
    .footer-logo img, .footer-logo svg {
        height: 40px;
        max-width: 110px;
    }

    /* About Page Mobile Small */
    .page-hero-content h1 {
        font-size: 28px;
    }

    .page-hero-content p {
        font-size: 16px;
    }

    .overview-text h3 {
        font-size: 18px;
    }

    .overview-text p {
        font-size: 14px;
    }

    .member-name {
        font-size: 20px;
    }

    .member-position {
        font-size: 13px;
    }

    .member-bio {
        font-size: 13px;
    }

    .member-content-section {
        padding: 20px 10px;
    }

    .member-expertise {
        padding: 12px;
    }

    .expertise-tag {
        font-size: 10px;
        padding: 2px 6px;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-text {
        font-size: 14px;
    }

    .timeline-content {
        padding: 20px 15px;
    }

    .timeline-year {
        font-size: 12px;
        padding: 4px 12px;
    }

    .timeline-title {
        font-size: 16px;
    }

    .timeline-desc {
        font-size: 14px;
    }
}