/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #A7DA2E;
    --primary-dark: #8BC02A;
    --accent-red: #D01900;
    --accent-orange: #DD6B20;
    --background-dark: #0A0A0A;
    --background-card: #1A1A1A;
    --background-elevated: #2A2A2A;
    --text-primary: #FFFFFF;
    --text-secondary: #B0B0B0;
    --text-muted: #808080;
    --border-color: #1E1E1E;
    --shadow-light: 0 2px 8px rgba(167, 218, 46, 0.1);
    --shadow-medium: 0 4px 16px rgba(167, 218, 46, 0.15);
    --shadow-heavy: 0 8px 32px rgba(167, 218, 46, 0.2);
    --border-radius: 0px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--background-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

/* Content Container - 85% width */
.content-container {
    width: 85%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section - Full Screen */
.hero-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

/* Background Slider */
.background-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: zoomInOut 20s ease-in-out infinite;
}

.slide-1 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                      url('hero-nav-bg.png');
}

.slide-2 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                      url('hero-slide2.png');
}

.slide-3 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                      url('hero-slide3.png');
}

@keyframes zoomInOut {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Header and Navigation */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #F8EBE3;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    width: 85%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links-group {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #000000;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    position: relative;
    font-size: 17px;
    text-transform: uppercase;
}

.nav-link.active {
    color: var(--accent-orange);
}

.nav-link:hover {
    color: var(--accent-red);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-red);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.contact-btn {
    background: var(--accent-red);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Archivo', sans-serif;
    border-radius: 0px;
    cursor: pointer;
    transition: var(--transition);
}

.contact-btn:hover {
    background: #C53030;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--accent-orange);
    transition: var(--transition);
    border-radius: 0px;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 40px;
}

/* Hero content animation classes */
.hero-title,
.info-title,
.info-description {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-title.fade-out {
    opacity: 0;
    transform: translateY(-20px);
}

.hero-title.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.info-title.fade-out,
.info-description.fade-out {
    opacity: 0;
    transform: translateX(20px);
}

.info-title.fade-in,
.info-description.fade-in {
    opacity: 1;
    transform: translateX(0);
}

.hero-text-section {
    flex: 1;
}

.hero-title {
    font-size: 70px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-info-section {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.info-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    text-align: left;
}

.info-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent-red);
    margin-bottom: 1rem;
}

.info-description {
    color: #1E1E1E;
    font-size: 24px;
    line-height: 125%;
    margin-bottom: 2rem;
}

.info-cta {
    background: var(--accent-red);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Archivo', sans-serif;
    border-radius: 0px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-cta:hover {
    background: #C53030;
    transform: translateY(-2px);
}

.arrow-icon {
    width: 20px;
    height: 20px;
    transition: var(--transition);
}

.info-cta .arrow-icon {
    width: 20px;
    height: 20px;
    transition: var(--transition);
    filter: brightness(0) invert(1);
}

.info-cta:hover .arrow-icon {
    transform: translateX(5px);
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 40px;
    left: 9%;
    display: flex;
    gap: 1rem;
    z-index: 20;
}

.indicator {
    width: 200px;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 0px;
    cursor: pointer;
    transition: var(--transition);
    overflow: hidden;
}

.indicator.active {
    background: var(--accent-red);
}

.indicator-line {
    height: 100%;
    width: 0%;
    background: var(--accent-red);
    border-radius: 0px;
}

/* About Rekki Group Section */
.about-rekki-section {
    background-color: #C85A1A;
    padding: 80px 0 0 0;
    width: 100%;
}

.about-rekki-content {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 4rem;
    align-items: start;
}

.about-rekki-text {
    color: white;
}

.about-rekki-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.about-rekki-description {
    margin-bottom: 2rem;
}

.about-rekki-description p {
    color: #E6E6E6;
    font-size: 20px;
    line-height: 125%;
    margin-bottom: 1.5rem;
    width: 643px;
}

.about-rekki-cta {
    background: white;
    color: #D01900;
    border: none;
    padding: 1rem 2rem;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Archivo', sans-serif;
    border-radius: 0px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.about-rekki-cta:hover {
    background: #f8f8f8;
    transform: translateY(-2px);
}

.about-rekki-cta .arrow-icon {
    width: 20px;
    height: 20px;
    transition: var(--transition);
    filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%);
}

.about-rekki-cta:hover .arrow-icon {
    transform: translateX(5px);
}

.about-rekki-image {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: -80px;
    height: calc(560px + 80px);
}

.rock-formation-img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    border-radius: 0px;
}

/* Responsive design for About Rekki section */
@media (max-width: 768px) {
    .about-rekki-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-rekki-title {
        font-size: 2.5rem;
    }
    
    .about-rekki-description p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about-rekki-title {
        font-size: 2rem;
    }
    
    .about-rekki-cta {
        padding: 0.75rem 1.5rem;
        font-size: 16px;
    }
}

/* Mission & Vision Section */
.mission-vision-section {
    background: white;
    padding: 80px 0;
    width: 100%;
    padding-top: 50px;
}

.mission-vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-right: 8%;
}



/* Mission Panel */
.mission-panel {
    background: url('gradient img1.png');
    background-size: cover;
    background-position: center;
    padding: 3rem;
    border-radius: 0px;
    color: white;
    position: relative;
    height: 481px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.panel-number {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.number-svg {
    width: 120px;
    height: auto;
}

.panel-title {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.panel-text {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 500;
}

/* Vision Panel */
.vision-panel {
    background: url('gradient img2.png');
    background-size: cover;
    background-position: center;
    padding: 3rem;
    border-radius: 0px;
    color: white;
    position: relative;
    height: 481px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Responsive design for Mission & Vision section */
@media (max-width: 1024px) {
    .mission-vision-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .image-collage {
        order: 1;
    }
    
    .mission-panel {
        order: 2;
    }
    
    .vision-panel {
        order: 3;
    }
}

@media (max-width: 768px) {
    .main-circle {
        width: 250px;
        height: 250px;
    }
    
    .panel-number {
        font-size: 3rem;
    }
    
    .panel-title {
        font-size: 1.5rem;
    }
    
    .panel-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .main-circle {
        width: 200px;
        height: 200px;
    }
    
    .mission-panel,
    .vision-panel {
        padding: 2rem;
        min-height: 300px;
    }
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #000000;
    position: relative;
    font-size: 2.75rem;
    font-weight: 700;
}



/* About Section */
.about-section {
    background: var(--background-card);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--background-elevated);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Services Section */
.services-section {
    background: #F6E4D9;
    padding: 80px 0;
    width: 100%;
}

.services-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.services-tabs {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.tab-item {
    border-bottom: 1px solid #ddd;
}

.tab-btn {
    background: none;
    border: none;
    padding: 1.5rem 0;
    font-size: 32px;
    font-weight: 700;
    font-family: 'Archivo', sans-serif;
    color: #1E1E1E;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-bottom: 0.7rem;
}

.tab-btn.active {
    color: #D01900;
}

.tab-btn:hover {
    color: #D01900;
}

.tab-text {
    flex: 1;
}

.tab-icon {
    font-size: 36px;
    font-weight: 700;
    color: #D01900;
}

.tab-pane {
    display: none;
    padding: 1rem 0 1rem 0;
    animation: fadeIn 0.3s ease-in;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.tab-description {
    font-size: 20px;
    line-height: 130%;
    color: #1E1E1E;
    margin-bottom: 1.5rem;
}

.tab-details {
    font-size: 20px;
    line-height: 130%;
    color: #1E1E1E;
    margin-bottom: 1rem;
}

.services-image {
    display: flex;
    justify-content: center;
    align-items: start;
}

.service-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0px;
}

.service-cta {
    background: #D01900;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Archivo', sans-serif;
    border-radius: 0px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-cta:hover {
    background: #C53030;
    transform: translateY(-2px);
}

.service-cta .arrow-icon {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
}

.service-cta:hover .arrow-icon {
    transform: translateX(5px);
}

/* Responsive design for Services section */
@media (max-width: 1024px) {
    .services-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .services-tabs {
        order: 1;
    }
    
    .services-image {
        order: 2;
    }
}

@media (max-width: 768px) {
    .tab-description {
        font-size: 16px;
    }
    
    .tab-btn {
        font-size: 16px;
        padding: 1rem 0;
    }
    
    .service-cta {
        padding: 0.75rem 1.5rem;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 60px 0;
    }
    
    .trading-areas li {
        font-size: 14px;
    }
}

/* Management Profile Section */
.management-profile-section {
    background: url('profile-bg.png') center/cover no-repeat;
    width: 100%;
    height: 778px;
    display: flex;
}

.management-profile-title {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.management-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    align-items: stretch;
}

.management-card {
    background: white;
    border-radius: 0px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: all 0.3s ease;
    padding: 2rem 0rem
}

.management-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.profile-head{
    padding: 0rem 1.625rem
}

.profile-content{
    padding: 0rem 1.625rem
}


.card-name{
    font-size: 30px;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
    line-height: 125%;
    margin-bottom: 0rem !important;
}

.card-title {
    font-size: 20px;
    color: #1E1E1E;
    margin-bottom: 1rem;
    font-weight: 700;
}

.card-divider {
    width: 100%;
    height: 1px;
    background: #282323;
    margin-bottom: 1.5rem;
}

.card-description {
    font-size: 18px;
    line-height: 1.6;
    color: #1E1E1E;
    margin-bottom: 2rem;
}

.read-more-btn {
    background: #D01900;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Archivo', sans-serif;
    border-radius: 0px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more-btn:hover {
    background: #C53030;
    transform: translateY(-2px);
}

.read-more-btn .arrow-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.read-more-btn:hover .arrow-icon {
    transform: translateX(3px);
}

/* Responsive design for Management Profile section */
@media (max-width: 1024px) {
    .management-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .management-profile-section {
        height: auto;
    }
    
    .management-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .management-profile-title {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }
    
    .management-card {
    }
}

@media (max-width: 480px) {
    .management-profile-title {
        font-size: 2rem;
    }
    
    .management-card {
    }
    
    .card-name {
        font-size: 1.3rem;
    }
}

/* Management Section */
.management-section {
    background: var(--background-card);
}

.management-content {
    text-align: center;
}

.management-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.management-card {
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.management-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.management-photo {
    width: 120px;
    height: 120px;
    background: var(--primary-color);
    border-radius: 0px;
    margin: 0 auto 1.5rem;
    opacity: 0.7;
}

.management-card h3 {
    margin-bottom: 0.5rem;
}

.management-card p {
}

/* Contact Section */
.contact-section {
    background: var(--background-dark);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    text-align: left;
    margin-bottom: 1rem;
}

.contact-info h2::after {
    left: 0;
    transform: none;
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-form {
    background: var(--background-elevated);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--background-dark);
    border: 1px solid var(--border-color);
    border-radius: 0px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(167, 218, 46, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.submit-button {
    background: var(--primary-color);
    color: var(--background-dark);
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0px;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.submit-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--background-dark);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 0px;
    transition: var(--transition);
}

.social-link:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(245, 245, 245, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-medium);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-info-section {
        justify-content: center;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .management-grid {
        grid-template-columns: 1fr;
    }

    .content-container {
        width: 95%;
        padding: 0 1rem;
    }

    section {
        padding: 60px 0;
    }

    .hero-section {
        height: 100vh;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .nav-container {
        padding: 1rem;
    }

    .content-container {
        width: 100%;
        padding: 0 1rem;
    }

    .info-card {
        padding: 2rem;
        margin: 0 1rem;
    }

    .slider-indicators {
        bottom: 20px;
    }

    .indicator {
        width: 40px;
    }
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

.scroll-animate.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animations for multiple elements */
.scroll-animate.delay-1 { transition-delay: 0.15s; }
.scroll-animate.delay-2 { transition-delay: 0.3s; }
.scroll-animate.delay-3 { transition-delay: 0.45s; }
.scroll-animate.delay-4 { transition-delay: 0.6s; }

/* Different animation types */
.scroll-animate.fade-left {
    transform: translateX(-60px);
}

.scroll-animate.fade-left.animate-in {
    transform: translateX(0);
}

.scroll-animate.fade-right {
    transform: translateX(60px);
}

.scroll-animate.fade-right.animate-in {
    transform: translateX(0);
}

.scroll-animate.fade-up {
    transform: translateY(60px);
}

.scroll-animate.fade-up.animate-in {
    transform: translateY(0);
}

.scroll-animate.fade-down {
    transform: translateY(-60px);
}

.scroll-animate.fade-down.animate-in {
    transform: translateY(0);
}

.scroll-animate.scale-in {
    transform: scale(0.85);
    opacity: 0;
}

.scroll-animate.scale-in.animate-in {
    transform: scale(1);
    opacity: 1;
}

/* Smooth animation for images */
.scroll-animate img {
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate.animate-in img {
    transform: scale(1);
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .scroll-animate {
        opacity: 1;
        transform: none;
        transition: none;
    }
    
    .scroll-animate.animate-in {
        opacity: 1;
        transform: none;
    }
}

/* Hero animations (keep existing) */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text-section,
.hero-info-section {
    animation: fadeInUp 0.8s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
button:focus,
input:focus,
textarea:focus,
a:focus {
    outline: none;
}

/* Profile Modal Styles */
.profile-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 0px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

.modal-header {
    padding: 2rem 2rem 1rem 2rem;
    border-bottom: 1px solid #e5e5e5;
    position: relative;
}

.modal-name {
    font-family: 'Archivo', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #000;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
}

.modal-title {
    font-family: 'Archivo', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #D01900;
    margin: 0;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: #f5f5f5;
    border: none;
    border-radius: 0px;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: #e0e0e0;
    transform: scale(1.1);
}

.modal-body {
    padding: 1.5rem 2rem;
}

.modal-description {
    font-family: 'Archivo', sans-serif;
    font-size: 20px;
    line-height: 140%;
    color: #1E1E1E;
}

.modal-description p {
    margin: 0 0 1.5rem 0;
    font-family: 'Archivo', sans-serif;
    font-size: 20px;
    line-height: 140%;
    color: #1E1E1E;
}

.modal-description p:last-child {
    margin-bottom: 0;
}

.modal-footer {
    padding: 1rem 2rem 2rem 2rem;
    text-align: left;
}

.modal-contact-btn {
    background: #D01900;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0px;
    font-family: 'Archivo', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.modal-contact-btn:hover {
    background: #b31414;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(208, 25, 0, 0.3);
}

.modal-contact-btn .arrow-icon {
    width: 18px;
    height: 12px;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Get in Touch Section */
.get-in-touch-section {
    background: white;
    padding: 80px 0 160px 0;
    width: 100%;
}

.get-in-touch-title {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #1E1E1E;
    line-height: 1.2;
}

.contact-circles {
    display: flex;
    justify-content: center;
    gap: 6rem;
    align-items: center;
}

.contact-circle {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-circle:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.circle-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.email-circle .circle-bg {
    background-image: url('email-bg.jpg'); /* You'll upload this image */
    background-color: #D01900; /* Temporary red background until you upload the image */
}

.phone-circle .circle-bg {
    background-image: url('phone-bg.jpg'); /* You'll upload this image */
    background-color: #1E1E1E; /* Temporary dark background until you upload the image */
}

.circle-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
}

.circle-content h3 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-family: 'Archivo', sans-serif;
}

.circle-content .arrow-icon {
    width: 48px;
    height: 48px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.contact-circle:hover .arrow-icon {
    transform: translateX(5px);
}

.circled-img{
    background-image: url('email-circle.png');
    background-size: cover;
    height: 350px;
    width: 350px;
}

.circled-img2{
    background-image: url('phone-circle.png');
    background-size: cover;
    height: 350px;
    width: 350px;
}

.contact-circle{
    margin-top: 6rem;
}

/* Footer Section */
.footer {
    background-color: #F8EBE3;
    padding: 4rem 0 1rem 0;
    margin-top: 0;
    border-top: none;
}

.footer-content {
    display: flex;
    align-items: flex-start;
    gap: 6rem;
}

.footer-logo {
    width: auto;
    height: auto;
}

.footer-contact {
    display: flex;
    gap: 4rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 4rem;
}

.contact-item.full-width {
    grid-column: 1 / -1;
}



.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0rem;
}

.contact-heading {
    font-family: 'Archivo', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #DD6B20;
    text-transform: uppercase;
}

.contact-detail {
    font-family: 'Archivo', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #2c2c2c;
    margin: 0;
    line-height: 1.4;
}

/* Responsive design for Footer */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-contact {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-logo {
        height: auto;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 3rem 0;
    }
    
    .footer-logo {
        height: auto;
    }
    
    .contact-heading,
    .contact-detail {
        font-size: 0.9rem;
    }
}
/* Responsive design for Get in Touch section */
@media (max-width: 768px) {
    .contact-circles {
        flex-direction: column;
        gap: 2rem;
    }
    
    .contact-circle {
        width: 250px;
        height: 250px;
    }
    
    .get-in-touch-title {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }
}

@media (max-width: 480px) {
    .contact-circle {
        width: 200px;
        height: 200px;
    }
    
    .get-in-touch-title {
        font-size: 2rem;
    }
    
    .circle-content h3 {
        font-size: 20px;
    }
}

/* Modal responsive styles */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 10% auto;
        max-height: 85vh;
    }
    
    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 1.5rem;
    }
    
    .modal-name {
        font-size: 1.5rem;
    }
    
    .modal-title {
        font-size: 1rem;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #000000;
    border: none;
    cursor: pointer;
    display: none;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.back-to-top:hover {
    background-color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.back-to-top-arrow {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
    transform: rotate(-90deg);
}

