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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(42, 70, 73, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo {
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
}

.nav-right {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #DCDCDC;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(42, 70, 73, 0.98);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active {
    display: block;
}

.mobile-nav-link {
    display: block;
    padding: 1rem 2rem;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-nav-link:last-child {
    border-bottom: none;
}

/* Hero Section - Enhanced */
.hero {
    min-height: 100vh;
    background: #2A4649;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: float 6s ease-in-out infinite;
}

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

.shape-2 {
    width: 280px;
    height: 280px;
    top: 65%;
    right: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 220px;
    height: 220px;
    bottom: 15%;
    left: 65%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(180deg);
    }
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-title .highlight {
    color: #DCDCDC;
    position: relative;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.8s both;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.5rem;
}

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

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    animation: fadeInUp 1s ease-out 1s both;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    min-width: 160px;
    text-align: center;
}

.btn-primary {
    background: white;
    color: #2A4649;
}

.btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

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

.btn-secondary:hover {
    background: white;
    color: #2A4649;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Quick Contact Section */
.quick-contact-section {
    background: white;
    padding: 4rem 2rem;
}

.quick-contact-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.quick-contact-container h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2A4649;
    margin-bottom: 1rem;
}

.quick-contact-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.quick-contact-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: block;
}

.quick-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(42, 70, 73, 0.15);
    border-color: #2A4649;
}

.quick-contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.quick-contact-card h3 {
    font-size: 1.3rem;
    font-weight: bold;
    color: #2A4649;
    margin-bottom: 0.5rem;
}

.quick-contact-card p {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

.quick-contact-card:hover h3 {
    color: #1a2f32;
}

.quick-contact-card:hover .quick-contact-icon {
    transform: scale(1.1);
}

/* Light Section - Based on SVG 2 */
.light-section {
    min-height: 100vh;
    background: #DCDCDC;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
}

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

.light-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    line-height: 1.2;
    color: black;
}

.light-description {
    font-size: 1.2rem;
    color: black;
}

.light-description p {
    margin-bottom: 0.5rem;
}

/* About Us Section */
.about-section {
    background: white;
    padding: 4rem 2rem;
}

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

.about-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-header h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #2A4649;
}

.about-subtitle {
    font-size: 1.3rem;
    color: #666;
    font-weight: 300;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.about-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 6px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.about-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.about-card h3 {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #2A4649;
}

.about-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

.about-cta {
    text-align: center;
    padding: 2rem;
    background: #2A4649;
    border-radius: 6px;
    color: white;
}

.about-cta p {
    font-size: 1.2rem;
    margin: 0;
}

/* Projects Section */
.projects-section {
    background: #f8f9fa;
    padding: 4rem 2rem;
}

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

.projects-container h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 3rem;
    color: #2A4649;
    text-align: center;
}

/* Simple Project Cards */
.project-card.simple {
    background: white;
    border-radius: 6px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card.simple:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.project-card.simple .project-content h3 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #2A4649;
    line-height: 1.3;
}

.project-card.simple .project-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 1.2rem;
}

.project-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #2A4649;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Flagship Project Card */
.project-card.flagship {
    background: white;
    border-radius: 6px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
    border: 2px solid #2A4649;
}

.project-header {
    margin-bottom: 3rem;
}

.project-header h3 {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #2A4649;
    line-height: 1.3;
}

.project-header p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 1.2rem;
}

/* Project Gallery */
.project-gallery {
    margin-top: 2rem;
}

.main-image {
    position: relative;
    margin-bottom: 2rem;
}

.main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.main-image:hover img {
    transform: scale(1.02);
}

.development-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #dc3545;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.gallery-item.plans {
    border: 2px solid #2A4649;
}

.plan-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(42, 70, 73, 0.9);
    color: white;
    padding: 0.5rem;
    text-align: center;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: black;
    color: white;
    padding: 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content p {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.footer-contacts {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.footer-contact-icon {
    font-size: 1rem;
}

.footer-contact-item a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: #DCDCDC;
}

.footer-contact-item span:not(.footer-contact-icon) {
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design */
@media (max-width: 768px) {
    .quick-contact-container h2 {
        font-size: 2rem;
    }
    
    .quick-contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-contacts {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-contact-item {
        font-size: 0.85rem;
    }
    
    .hero-title, .light-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .shape-1 {
        width: 280px;
        height: 280px;
        top: 25%;
        left: 5%;
    }
    
    .shape-2 {
        width: 200px;
        height: 200px;
        top: 70%;
        right: 5%;
    }
    
    .shape-3 {
        width: 150px;
        height: 150px;
        bottom: 10%;
        left: 70%;
    }
    
    .about-container h2, .projects-container h2 {
        font-size: 2.5rem;
    }
    
    .nav {
        padding: 0 1rem;
    }
    
    .nav-right {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .logo {
        font-size: 1rem;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .project-card.flagship {
        padding: 2rem;
    }
    
    .project-header h3 {
        font-size: 1.8rem;
    }
    
    .main-image img {
        height: 250px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .gallery-item img {
        height: 150px;
    }
    
    .project-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .development-badge {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }
}

@media (max-width: 480px) {
    .quick-contact-section {
        padding: 2rem 1rem;
    }
    
    .quick-contact-container h2 {
        font-size: 1.8rem;
    }
    
    .quick-contact-subtitle {
        font-size: 1rem;
    }
    
    .quick-contact-card {
        padding: 1.5rem;
    }
    
    .footer {
        padding: 1.5rem 1rem;
    }
    
    .footer-contacts {
        gap: 0.8rem;
    }
    
    .footer-contact-item {
        font-size: 0.8rem;
    }
    
    .hero-title, .light-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        min-width: 140px;
    }
    
    .shape-1 {
        width: 200px;
        height: 200px;
        top: 30%;
        left: 5%;
    }
    
    .shape-2 {
        width: 140px;
        height: 140px;
        top: 75%;
        right: 5%;
    }
    
    .shape-3 {
        width: 110px;
        height: 110px;
        bottom: 5%;
        left: 75%;
    }
    
    .about-container h2, .projects-container h2 {
        font-size: 2rem;
    }
    
    .hero, .light-section, .about-section, .projects-section {
        padding: 2rem 1rem;
    }
    
    .nav-right {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .logo {
        font-size: 0.9rem;
    }
    
    .logo-img {
        height: 30px;
    }
    
    .project-card.simple, .project-card.flagship {
        padding: 1.5rem;
    }
    
    .project-header h3 {
        font-size: 1.5rem;
    }
    
    .project-header p, .project-card.simple .project-content p {
        font-size: 0.95rem;
    }
    
    .about-content p {
        font-size: 1rem;
    }
    
    .main-image img {
        height: 200px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .project-stats {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .development-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
        top: 15px;
        left: 15px;
    }
}
/* Flagship Badge */
.flagship-badge {
    position: absolute;
    top: -15px;
    left: 30px;
    background: linear-gradient(135deg, #2A4649, #1a2f32);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(42, 70, 73, 0.3);
}

/* Project Features */
.project-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f8f9fa;
    padding: 0.8rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.feature-icon {
    font-size: 1.2rem;
}

/* Enhanced flagship project positioning */
.project-card.flagship {
    position: relative;
}

/* Company Overview Styles */
.company-overview {
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.company-intro {
    margin-bottom: 3rem;
    text-align: center;
}

.company-lead {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #333;
    font-weight: 300;
    margin: 0;
}

.company-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.company-column h3 {
    font-size: 1.3rem;
    font-weight: bold;
    color: #2A4649;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.company-column h3:first-child {
    margin-top: 0;
}

.company-column p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.5rem;
}

.company-brands {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #2A4649;
}

.brand-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(42, 70, 73, 0.1);
    border-radius: 6px;
}

.brand-item h4 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #2A4649;
    margin-bottom: 0.5rem;
}

.brand-item p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

/* Responsive styles for company overview */
@media (max-width: 768px) {
    .company-details {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .company-brands {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .company-lead {
        font-size: 1.2rem;
    }
}

/* Project Gallery for Simple Projects */
.project-gallery-simple {
    margin: 2rem 0;
}

.main-project-image {
    position: relative;
    margin-bottom: 1.5rem;
}

.main-project-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.main-project-image:hover img {
    transform: scale(1.02);
}

.completion-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #28a745;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.project-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.project-image-item {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-image-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

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

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1rem 0.8rem 0.8rem;
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
}

/* Responsive styles for project gallery */
@media (max-width: 768px) {
    .main-project-image img {
        height: 200px;
    }
    
    .project-images-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .project-image-item img {
        height: 120px;
    }
    
    .completion-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
        top: 10px;
        right: 10px;
    }
}

@media (max-width: 480px) {
    .project-images-grid {
        grid-template-columns: 1fr;
    }
    
    .project-image-item img {
        height: 150px;
    }
    
    .main-project-image img {
        height: 180px;
    }
}

/* Updated Company Overview Styles - Single Column */
.company-details {
    display: block;
    margin-bottom: 3rem;
}

.company-section {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(42, 70, 73, 0.1);
}

.company-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.company-section h3 {
    font-size: 1.3rem;
    font-weight: bold;
    color: #2A4649;
    margin-bottom: 1rem;
}

.company-section p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

/* Investment Section */
.investment-section {
    background: #2A4649;
    color: white;
    padding: 4rem 2rem;
}

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

.investment-header {
    text-align: center;
    margin-bottom: 4rem;
}

.investment-header h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: white;
}

.investment-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.investment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.investment-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.investment-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.investment-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.investment-card h3 {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: white;
}

.investment-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.investment-feature {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin-top: 1rem;
}

.feature-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.feature-value {
    font-size: 0.9rem;
    font-weight: bold;
    color: white;
}

.investment-cta {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 3rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.investment-cta-content h3 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: white;
}

.investment-cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.investment-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.investment-btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 180px;
    text-align: center;
}

.investment-btn.primary {
    background: white;
    color: #2A4649;
}

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

.investment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.investment-btn.secondary:hover {
    background: white;
    color: #2A4649;
}

/* Contact Section */
.contact-section {
    background: #f8f9fa;
    padding: 4rem 2rem;
}

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

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-header h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #2A4649;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin: 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    text-decoration: none;
    color: inherit;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.contact-card-clickable {
    cursor: pointer;
}

.contact-card-clickable:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.contact-card-clickable:hover .contact-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.contact-card-clickable:hover h3 {
    color: #2A4649;
    transition: color 0.3s ease;
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.contact-card h3 {
    font-size: 1.3rem;
    font-weight: bold;
    color: #2A4649;
    margin-bottom: 1rem;
}

.contact-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2A4649;
    margin-bottom: 2rem;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 2px solid #e1e5e9;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2A4649;
}

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

.submit-btn {
    width: 100%;
    background: #2A4649;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-btn:hover {
    background: #1a2f32;
    transform: translateY(-2px);
}

/* Contact CTA */
.contact-cta {
    background: #2A4649;
    border-radius: 6px;
    padding: 3rem;
    text-align: center;
    color: white;
}

.cta-content h3 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #2A4649;
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive Design for Contact Section */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-header h2 {
        font-size: 2.5rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .contact-cta {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 2rem 1rem;
    }
    
    .contact-header h2 {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .contact-cta {
        padding: 1.5rem;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
}

/* Updated Contact Section - No Form */
.contact-content {
    display: block;
    margin-bottom: 3rem;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

/* Address Section with Map */
.address-section {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 4rem;
    overflow: hidden;
}

.address-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    min-height: 300px;
}

.address-info {
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: #f8f9fa;
}

.address-icon {
    font-size: 3rem;
    color: #2A4649;
    flex-shrink: 0;
}

.address-details h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2A4649;
    margin-bottom: 0.5rem;
}

.address-details p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.map-container {
    position: relative;
    height: 100%;
    min-height: 300px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Design for Contact Section - Updated */
@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .address-content {
        grid-template-columns: 1fr;
    }
    
    .address-info {
        padding: 1.5rem;
        text-align: center;
        flex-direction: column;
        gap: 1rem;
    }
    
    .map-container {
        min-height: 250px;
    }
}

@media (max-width: 480px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .address-info {
        padding: 1rem;
    }
    
    .address-details h3 {
        font-size: 1.3rem;
    }
    
    .address-details p {
        font-size: 1rem;
    }
    
    .map-container {
        min-height: 200px;
    }
}


/* Responsive Design for Investment Section */
@media (max-width: 768px) {
    .investment-header h2 {
        font-size: 2.5rem;
    }
    
    .investment-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .investment-cta {
        padding: 2rem;
    }
    
    .investment-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .investment-btn {
        min-width: 200px;
    }
}

@media (max-width: 480px) {
    .investment-section {
        padding: 2rem 1rem;
    }
    
    .investment-header h2 {
        font-size: 2rem;
    }
    
    .investment-card {
        padding: 1.5rem;
    }
    
    .investment-cta {
        padding: 1.5rem;
    }
    
    .investment-cta-content h3 {
        font-size: 1.5rem;
    }
}
