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

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* Color variables */
:root {
  --primary: #628e96;
  --primary-light: #7ba1a9;
  --primary-dark: #4a7680;
  --white: #ffffff;
  --gray-light: #f5f5f5;
  --gray: #e0e0e0;
}

/* Navigation bar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  height: 70px;
  background: linear-gradient(to right, var(--primary-dark), var(--primary), var(--primary-light));
  color: var(--white);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--white);
  text-decoration: none;
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-menu li {
  margin-left: 1.5rem;
}

.nav-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--white);
  transition: width 0.3s;
}

.nav-link:hover::after,
.nav-link-active::after {
  width: 100%;
}

.nav-link-active {
  font-weight: 700;
}

/* Mobile menu button */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
  z-index: 1000;
  color: white;
  position: relative;
}

/* SVG icons in hamburger */
.hamburger svg {
  width: 30px;
  height: 30px;
  transition: all 0.3s ease;
  stroke-width: 1.5px;
}

/* Default icon states */
.hamburger .menu-icon,
.hamburger .close-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hamburger .menu-icon:not(.hidden) {
  display: block;
}

.hamburger .close-icon:not(.hidden) {
  display: block;
}

/* Mobile menu container */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  width: 100%;
  background-color: var(--primary);
  z-index: 999;
  padding: 0;
  flex-direction: column;
}

/* Mobile menu links */
.mobile-menu a {
  color: white;
  padding: 1.5rem 0;
  width: 100%;
  margin: 0;
  text-decoration: none;
  font-size: 1.8rem;
  text-align: center;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu a:hover,
.mobile-menu a.nav-link-active {
  background-color: rgba(255, 255, 255, 0.15);
}

/* Utility class for hiding elements */
.hidden {
  display: none !important;
}

/* Phone link styling */
.phone-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.phone-link:hover {
  color: var(--accent);
}



/* Media queries for responsive design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .hamburger {
    display: block;
  }
  
  .mobile-menu:not(.hidden) {
    display: flex;
  }
}

/* Section Styling */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    margin: 0 auto 1.5rem;
    border-radius: 3px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    font-weight: 400;
    margin-top: 1rem;
}

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

/* About Section */
.about-section {
    padding: 4rem 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.about-text {
    flex: 1 1 50%;
    min-width: 300px;
}

.about-text p {
    margin-bottom: 1.25rem;
    line-height: 1.7;
    color: var(--text-color);
    font-size: 1.05rem;
}

.about-text .highlight {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--primary-dark);
    margin-bottom: 1.75rem;
    padding-left: 1.25rem;
    border-left: 3px solid var(--primary);
    line-height: 1.6;
}

.about-highlight {
    background-color: rgba(98, 142, 150, 0.03);
    border-radius: 6px;
    padding: 1.25rem;
    margin: 1.75rem 0;
    border-left: 3px solid var(--primary);
}

.about-highlight p {
    margin: 0;
    color: var(--primary-dark);
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.7;
}

.about-image {
    flex: 1 1 42%;
    min-width: 300px;
    position: relative;
    margin-top: 1rem;
}

.image-frame {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #f8f9fa;
}

.image-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(98, 142, 150, 0.3), rgba(255, 255, 255, 0.1));
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-frame:hover::before {
    opacity: 1;
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-frame:hover img {
    transform: scale(1.03);
}

/* Journey Section */
.journey-section {
    padding: 4rem 1rem;
    background-color: #f9fafb;
    position: relative;
}

.journey-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Center line - hidden on mobile */
.journey-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: var(--primary-light);
    transform: translateX(-50%);
    z-index: 1;
    display: none; /* Hide by default on mobile */
}

.timeline-item {
    display: flex;
    flex-direction: column;
    position: relative;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
    width: 100%;
    padding: 0;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Reset reverse styles for mobile */
.timeline-item.reverse {
    justify-content: flex-start;
    padding: 0;
}

.timeline-content {
    width: 100%;
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.timeline-date {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.timeline-image {
    position: relative;
    width: 100%;
    margin: 1.5rem 0 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    order: -1; /* Move image above content on mobile */
    max-width: 100%;
    height: auto;
    aspect-ratio: 3/4; /* Maintain aspect ratio similar to portrait photos */
}

.timeline-image img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Changed from 'cover' to 'contain' to show full image */
    transition: transform 0.5s ease;
    background-color: #f5f5f5; /* Light background for any empty space */
}

/* Tablet styles (768px and up) */
@media (min-width: 768px) {
    .journey-section {
        padding: 6rem 2rem;
        background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
    }
    
    .journey-timeline {
        padding: 0 2rem;
        position: relative;
    }
    
    .journey-timeline::before {
        display: block;
        background: linear-gradient(to bottom, var(--primary-light), var(--primary), var(--primary-light));
        width: 3px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .timeline-item {
        flex-direction: row;
        justify-content: flex-end;
        padding-right: 50%;
        margin-bottom: 8rem;
        position: relative;
    }
    
    .timeline-item:last-child {
        margin-bottom: 4rem;
    }
    
    .timeline-item.reverse {
        justify-content: flex-start;
        padding-left: 50%;
        padding-right: 0;
    }
    
    .timeline-content {
        width: 90%;
        max-width: 500px;
        padding: 2.5rem;
        background: white;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        position: relative;
        z-index: 2;
    }
    
    .timeline-content:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    }
    
    .timeline-content::before {
        content: '';
        position: absolute;
        width: 24px;
        height: 24px;
        background: white;
        border: 4px solid var(--primary);
        border-radius: 50%;
        top: 50%;
        right: -12px;
        transform: translateY(-50%);
        z-index: 3;
    }
    
    .timeline-item.reverse .timeline-content::before {
        right: auto;
        left: -12px;
    }
    
    .timeline-image {
        position: absolute;
        width: 40%;
        max-width: 450px;
        max-height: 500px;
        margin: 0;
        top: 50%;
        transform: translateY(-50%);
        right: -20%;
        order: 0;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }
    
    .timeline-item.reverse .timeline-image {
        right: auto;
        left: -20%;
    }
    
    .timeline-content h3 {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
        color: var(--primary-dark);
        position: relative;
        padding-bottom: 0.75rem;
    }
    
    .timeline-content h3::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 3px;
        background: var(--primary);
    }
    
    .timeline-date {
        font-size: 0.85rem;
        padding: 0.35rem 1.25rem;
        margin-bottom: 1.25rem;
        letter-spacing: 0.5px;
    }
    
    .timeline-content p {
        font-size: 1.05rem;
        line-height: 1.8;
        margin-bottom: 1.25rem;
        color: #4a4a4a;
    }
}

/* Large Desktop styles (1200px and up) */
@media (min-width: 1200px) {
    .journey-section {
        padding: 8rem 2rem;
    }
    
    .timeline-content {
        padding: 3rem;
    }
    
    .timeline-content h3 {
        font-size: 2rem;
    }
    
    .timeline-date {
        font-size: 0.9rem;
    }
}

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

/* Video Hero Section */
.video-hero {
    padding: 6rem 0;
    background-color: var(--primary-dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.video-hero .section-title-light {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.video-hero .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-top: 1rem;
}

.video-container {
    max-width: 1200px;
    margin: 4rem auto 0;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.video-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    aspect-ratio: 16/9;
    background: #000;
}

.video-player {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.play-button svg {
    width: 30px;
    height: 30px;
    fill: var(--primary);
    margin-left: 5px;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: white;
}

.video-quote {
    padding: 2rem 0;
}

.quote-text {
    font-size: 1.5rem;
    line-height: 1.5;
    font-weight: 500;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 2rem;
    font-style: italic;
}

.quote-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -1rem;
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
    font-family: Georgia, serif;
}

.quote-caption {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
    color: #ffffff; /* Changed to white for better contrast */
    text-align: left;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3); /* Added subtle text shadow for better readability */
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    text-align: left;
}

.benefits-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95); /* Changed to almost white with slight transparency */
    font-size: 1.1rem; /* Slightly larger text for better readability */
}

.benefits-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ffffff; /* Changed to white for better visibility */
    font-weight: bold;
    font-size: 1.2rem; /* Slightly larger checkmark */
}

/* Gallery Section */
.gallery-section {
    padding: 4rem 1rem;
    background-color: #f9fafb;
    position: relative;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    color: white;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    font-size: 0.95rem;
    line-height: 1.5;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* Tablet styles */
@media (min-width: 640px) {
    .gallery-section {
        padding: 5rem 2rem;
    }
    
    .gallery-grid {
        gap: 1.25rem;
    }
}

/* Desktop styles */
@media (min-width: 1024px) {
    .gallery-section {
        padding: 6rem 2rem;
    }
    
    .gallery-grid {
        gap: 1.5rem;
    }
    
    .gallery-item {
        aspect-ratio: 3/4;
    }
    
    .gallery-item:nth-child(3n+1) {
        aspect-ratio: 4/3;
    }
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background-color: #f9fafb;
    position: relative;
}

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

.service-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(98, 142, 150, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--primary);
    transform: scale(1.1);
}

.service-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
    transition: all 0.3s ease;
}

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

.service-title {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-description {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-hover {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-radius: 0 0 12px 12px;
}

.service-card:hover .service-hover {
    transform: translateY(0);
}

.service-hover p {
    color: white;
    margin: 0;
    line-height: 1.7;
}

.services-cta {
    text-align: center;
    margin-top: 5rem;
    padding: 3rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.services-cta p {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    font-weight: 500;
}

/* CTA Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    background: white;
    color: var(--primary);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-button svg {
    width: 20px;
    height: 20px;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.cta-button:hover svg {
    transform: translateX(5px);
}

.cta-button.secondary {
    background: var(--primary);
    color: white;
}

.cta-button.secondary svg {
    fill: white;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .about-content {
        flex-direction: column;
        gap: 2.5rem;
    }
    
    .about-text, 
    .about-image {
        flex: 1 1 100%;
        max-width: 100%;
    }
    
    .about-image {
        margin-top: 1.5rem;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .about-text .highlight {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .about-highlight {
        padding: 1.25rem 1rem;
        margin: 1.5rem 0;
    }
    
    .about-text p {
        font-size: 1.05rem;
        margin-bottom: 1.1rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 3rem 0;
    }
    
    .about-text .highlight {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .about-highlight {
        padding: 1.25rem 1rem;
        margin: 1.5rem 0;
    }
    
    .about-text p {
        font-size: 1rem;
        margin-bottom: 1.1rem;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 2.5rem 0;
    }
    
    .about-text .highlight {
        font-size: 1.05rem;
        padding-left: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .about-highlight {
        padding: 1rem;
        margin: 1.25rem 0;
    }
    
    .about-text p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .journey-timeline::before {
        left: 40px;
    }
    
    .timeline-item,
    .timeline-item.reverse {
        justify-content: flex-start;
        padding-left: 80px;
        padding-right: 0;
    }
    
    .timeline-image {
        position: relative;
        right: auto;
        left: 0;
        top: 0;
        transform: none;
        width: 100%;
        margin-bottom: 1.5rem;
    }
    
    .timeline-item.reverse .timeline-image {
        left: 0;
    }
}

@media (max-width: 1024px) {
    .video-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .video-quote {
        text-align: center;
        padding: 0;
    }
    
    .quote-text {
        font-size: 1.3rem;
        padding-left: 0;
    }
    
    .quote-text::before {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .services-cta {
        padding: 2rem 1.5rem;
    }
    
    .services-cta p {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .about-section,
    .journey-section,
    .video-hero,
    .services-section {
        padding: 4rem 0;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .timeline-content h3 {
        font-size: 1.3rem;
    }
    
    .video-hero .section-title-light {
        font-size: 2rem;
    }
    
    .quote-text {
        font-size: 1.2rem;
    }
    
    .quote-caption {
        font-size: 1rem;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-button svg {
        width: 24px;
        height: 24px;
    }
    
    .services-cta p {
        font-size: 1.2rem;
    }
}

/* Hero Section with Profile */
.hero-section {
  padding: 4rem 0 0;
  background-color: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

/* Profile Card */
.profile-card {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  z-index: 1;
}

.profile-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border: 8px solid white;
  background: white;
}

.profile-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

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

/* Hero Content */
.hero-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 1rem;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.hero-company {
  font-size: 1.25rem;
  color: #4a7680;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-tagline {
  font-size: 1.5rem;
  color: #2c3e50;
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.hero-tagline::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--primary);
  margin: 1rem auto 0;
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4a4a4a;
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.cta-button {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background-color: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--primary);
}

.cta-button:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-button-outline {
  background-color: transparent;
  color: var(--primary);
}

.cta-button-outline:hover {
  background-color: var(--primary);
  color: white;
}

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

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

.contact-header .section-title {
    color: var(--primary-dark);
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.contact-header p {
    color: #4a4a4a;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.contact-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-card h3 {
    color: var(--primary-dark);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(98, 142, 150, 0.2);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-item {
    display: flex;
    align-items: center;
    color: #4a4a4a;
    line-height: 1.6;
}

.contact-item i {
    width: 24px;
    margin-right: 12px;
    color: var(--primary);
}

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

.contact-item a:hover {
    color: var(--primary);
}

.resume-card {
    background: #f0f4f8;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Footer Styles */
footer {
    background-color: var(--primary);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

footer .company-name {
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

footer .copyright {
    font-size: 0.9rem;
}

.resume-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.resume-card h3 {
    color: var(--primary-dark);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.resume-card p {
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    max-width: 300px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
}

.download-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.download-btn i {
    font-size: 1rem;
    color: white;
    margin-right: 0.75rem;
    width: 1rem;
    text-align: center;
}

/* Tablet styles */
@media (min-width: 768px) {
    .contact-section {
        padding: 5rem 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .contact-header p {
        font-size: 1.1rem;
    }
}

/* Desktop styles */
@media (min-width: 1024px) {
    .contact-section {
        padding: 6rem 2rem;
    }
    
    .contact-header .section-title {
        font-size: 2.5rem;
    }
    
    .contact-header p {
        font-size: 1.15rem;
    }
}

/* Welcome Message */
.welcome-message {
  background-color: #f0f4f8;
  padding: 3rem 0;
  margin-top: 4rem;
  position: relative;
}

.welcome-message::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-light), var(--primary), var(--primary-dark));
}

.welcome-message .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.welcome-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4a4a4a;
  text-align: center;
  position: relative;
  font-style: italic;
}

/* Responsive Design */
@media (min-width: 768px) {
  .hero-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 3rem;
  }
  
  .profile-card {
    flex: 0 0 40%;
    max-width: 400px;
    margin: 0;
  }
  
  .hero-content {
    flex: 0 0 55%;
    text-align: left;
    padding: 0;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-cta {
    justify-content: flex-start;
  }
  
  .welcome-text {
    font-size: 1.2rem;
  }
}

@media (max-width: 767px) {
  .hero-container {
    padding: 2rem 1rem;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-button {
    width: 100%;
    max-width: 250px;
    text-align: center;
  }
}

/* Additional basic styling for the rest of the site */
section {
  padding: 2rem 1rem;
}

.hero-section {
  background-color: var(--gray-light);
}

.cta-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--primary);
  color: var(--white);
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: var(--primary-dark);
}

/* Simple styling for profile images */
.profile-image-main {
  border-radius: 50%;
  width: 200px;
  height: 200px;
  object-fit: cover;
}

/* Footer styling */
footer {
  background-color: var(--gray-light);
  padding: 2rem 0;
  text-align: center;
  color: var(--primary-dark);
}