/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* Header Styles */
.header {
    background: #12B7CD;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navbar {
  position: absolute;
  top: 50px;
  left: 14px;
  right: 14px;
  padding: 0px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;        /* white left side */
  overflow: visible;
  z-index: 1000;
}
.navbar::before, .navbar.scrolled::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 45%;      /* start halfway */
    right: 0;
    background: #12B7CD;
    clip-path: polygon(50px 0, 100% 0, 100% 100%, 0 100%);
    /* ↑ left-top corner inset by 20px to form the triangle */
    z-index: 1;
    pointer-events: none;
  }
.navbar.scrolled {
    position: fixed;
    top: 0;
    background: #fff;        /* white left side */
    overflow: visible;
    z-index: 1000;
    padding: 6px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Logo background transparent and logo area styling */
.nav-logo {
    padding-left: 10px;
    z-index: 2;
}

.nav-logo .logo {
    background: transparent !important;
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    box-shadow: none;
    margin-top: 2px;
}

.nav-logo .logo-text {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    padding-right: 15px;
    z-index: 2;
}
/* Menu Item Circle Background */
.nav-menu .nav-item {
    display: inline-block;
    margin: 0 8px;
}


.nav-link {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 50px; 
    color: #12B7CD;
    background: #fff;  
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    background: #29313C;          /* Yellow highlight on hover */
    color: #12B7CD;                 /* White text on hover */
    box-shadow: 0px 4px 12px rgba(0,0,0,0.15);
}

.nav-link::after {
    /*content: '';*/
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #00A5BF;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
    z-index: 1;
}
/* TOP Bar */

.top-bar {
    background-color: #29313C;
    padding: 8px 0;
    font-size: 14px;
    color: #fff;
}
.top-bar-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
}
.top-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0;
    padding: 0;
}
.top-list li {
    display: flex;
    align-items: center;
    gap: 6px;
}
.top-icon {
    width: 14px;
    height: 14px;
    fill: #fff;
}
.top-list i {
    color: #fff;
}
/* Home Banner Section */
.banner-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 110vh;
}
.banner-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slides {
    position: relative;
    width: 100%;
    height: 100%;
}
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(20px);
    transition: all 1s ease-in-out;
}
.slide.active {
    opacity: 1;
    z-index: 1;
    transform: translateX(0);
}
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-wrapper .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4); /* 40% dark overlay */
    z-index: 1;
}

/* Ensure caption stays on top of overlay */



.caption {
    position: absolute;
    bottom: 20%;
    left: 10%;
    color: #fff;
    z-index: 2; /* above overlay */
    max-width: 500px;
}
.caption h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}
.caption p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}
.btn {
    display: inline-block;
    padding: 10px 20px;
    margin: 5px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1rem;
}
.btn-primary {
    background: #007bff;
    color: #fff;
}
.btn-secondary {
    background: #6c757d;
    color: #fff;
}
@media (max-width: 768px) {
    .caption h1 { font-size: 1.8rem; }
    .caption p { font-size: 1rem; }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 40%, #ffb347 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(90deg, #ffb347 0%, #12B7CD 50%, #1e3c72 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #fff;
    color: #12B7CD;
    box-shadow: 0 4px 15px #29313C;
}

.btn-primary:hover {
    background: #12B7CD;
    color: #fff;
    box-shadow: 0 6px 20px #29313C;
}

.btn-secondary {
    background: #12B7CD;
    color: #fff;
    border: 2px solid #12B7CD;
}

.btn-secondary:hover {
    background: #fff;
    color: #12B7CD;
    border: 2px solid #1e3c72;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-graphic {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #12B7CD, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: #667eea;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Services Preview Section */
.services-preview {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fff 60%, #12B7CD 100%);
    position: relative;
    z-index: 1;
    margin-top: 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #333;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #12B7CD, #29313C);
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
   /* background: linear-gradient(135deg, #fffbe7 60%, #ffecd2 100%);*/
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid #ffd70022;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #12B7CD, #29313C);
}

.service-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #29313C, #12B7CD);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #fff;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-image .image-placeholder img {
   height: -webkit-fill-available;
    width: -webkit-fill-available;
}

.services-preview-home .service-icon-home {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px; /* center + spacing below */
}

.services-preview-home .service-icon-home img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

   

.service-link {
    color: #12B7CD;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #29313C;
}

/* Destinations Section */
.destinations {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fff 0%, #fff 100%);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.destination-card {
    background: linear-gradient(135deg, #29313C 0%, #29313C 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    color: #fff;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid #ffd70022;
}

.destination-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.3s ease;
    opacity: 0;
}

.destination-card:hover::before {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.3);
}

.destination-flag {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #12B7CD;
}
.destination-flag img {
    height: 100px;
    width: 100px;
}

.destination-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.destination-card p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 5rem 0;
    background: linear-gradient(135deg, #12B7CD 0%, #29313C 50%, #12B7CD 100%);
    color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    position: relative;
    text-align: center;
    padding: 2rem;
    background: url('images/banners/passport-with-tickets-on-map.jpg') center/cover no-repeat;
    overflow: hidden; 
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    z-index: 0;
}
.feature::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55); /* Dark overlay */
    z-index: 0; /* In front of image */
}

.feature:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.2);
}

.feature-icon {
    opacity: 0.9;
    width: 70px;
    height: 70px;
    background: #12B7CD;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: #1e3c72;
}

.feature h3 {
    opacity: 0.9;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature p {
    opacity: 0.9;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    position: relative;
    background: url('images/office/office.jpeg') center/cover no-repeat;
    color: #fff;
    text-align: center;
}
.cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.55); /* Dark overlay */
    z-index: 1;
}
.cta-content {
    position: relative;
    z-index: 2; /* Keep text above overlay */
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #29313C 0%, #29313C 50%, #29313C 100%);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo img {
    background: transparent !important;
    border-radius: 0;
    box-shadow: none;
    width:150px;
}

.footer-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #12B7CD;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffb347;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #12B7CD, #12B7CD);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 179, 71, 0.4);
    color: #29313C;
}

.contact-info p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info i {
    color: #12B7CD;
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #ccc;
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, #29313C 0%, #29313C 100%);
    padding: 135px 0 80px;
    text-align: center;
    color: white;
}

.about-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.company-story {
    padding: 5rem 0;
    background: white;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #333;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #12B7CD 0%, #29313C 100%);
    border-radius: 15px;
    color: white;
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #12B7CD;
}

.stat p {
    font-size: 1rem;
    opacity: 0.9;
}

.story-image .image-placeholder {
    width: 100%;
    background: linear-gradient(45deg, #12B7CD, #29313C);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: white;
}
.story-image .image-placeholder img {
    height:100%;
    width:100%;
}

.mission-vision {
    padding: 5rem 0;
    background: #f8f9fa;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mission-card, .vision-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #12B7CD, #29313C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: white;
}

.mission-card h3, .vision-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #333;
}

.mission-card p, .vision-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
}

.values {
    padding: 5rem 0;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #12B7CD, #29313C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
}

.value-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

.team {
    padding: 5rem 0;
    background: linear-gradient(135deg, #29313C 0%, #12B7CD 100%);
    color: white;
}
.team .section-title {
    color: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: rgba(255,255,255,0.1);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.2);
}

.about-approval-list .team-member {
    background: transparent;
    backdrop-filter: none;
}

.member-image {
    width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: #12B7CD;
}

.team-member h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #fff;
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-desc {
    opacity: 0.9;
    line-height: 1.6;
}

.why-choose-about {
    padding: 5rem 0;
    background: white;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.advantage {
    text-align: center;
    padding: 2rem;
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #12B7CD, #29313C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
}

.advantage h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.advantage p {
    color: #666;
    line-height: 1.6;
}
.team.about-approval-list {
    position: relative;
    overflow: hidden;
}

.team.about-approval-list .background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /*opacity: 0.3;  Adjust for readability */
}

.team.about-approval-list .container {
    position: relative;
    z-index: 2;
}

/* Services Page Styles */
.services-hero {
    background: linear-gradient(135deg, #29313C 0%, #29313C 100%);
    padding: 130px 0 80px;
    text-align: center;
    color: white;
}

.services-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.services-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.main-services {
    padding: 5rem 0;
    background: white;
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
    padding: 3rem 0;
    border-bottom: 1px solid #eee;
}

.service-detail:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.service-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #12B7CD, #29313C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 2rem;
    font-size: 2rem;
    color: white;
}

.service-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
}

.service-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 2rem;
}

.service-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.feature-item i {
    color: #4CAF50;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.service-image .image-placeholder {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: white;
}

.image-placeholder.study {
    background: linear-gradient(45deg, #12B7CD, #29313C);
}

.image-placeholder.work {
    background: linear-gradient(45deg, #12B7CD, #29313C);
}

.image-placeholder.pr {
    background: linear-gradient(45deg, #12B7CD, #29313C);
}

.image-placeholder.business {
    background: linear-gradient(45deg, #12B7CD, #29313C);
}

.additional-services {
    padding: 5rem 0;
    background: #f8f9fa;
}

.additional-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.additional-service {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.additional-service:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.process {
    padding: 5rem 0;
    background: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #12B7CD, #29313C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.step p {
    color: #666;
    line-height: 1.6;
}

/* Testimonials Page Styles */
.testimonials-hero {
    background: linear-gradient(135deg, #29313C 0%, #29313C 100%);
    padding: 135px 0 80px;
    text-align: center;
    color: white;
}

.testimonials-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.testimonials-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.featured-testimonials {
    padding: 5rem 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.testimonial-card.featured {
    background: linear-gradient(135deg, #12B7CD 0%, #29313C 100%);
    color: white;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.stars {
    margin-bottom: 1.5rem;
}

.stars i {
    color: #12B7CD;
    margin-right: 0.2rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
}

.client-info {
    display: flex;
    align-items: center;
}

.client-avatar {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.5rem;
    color: #12B7CD;
}

.client-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.client-details span {
    opacity: 0.8;
    font-size: 0.9rem;
}

.success-stories {
    padding: 5rem 0;
    background: #f8f9fa;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.story-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.story-image {
    height: 200px;
    background: linear-gradient(45deg, #12B7CD, #29313C);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
}

.story-content {
    padding: 2rem;
}

.story-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.story-meta {
    color: #667eea;
    font-weight: 500;
    margin-bottom: 1rem;
}

.story-stats p {
    color: #fff;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.story-author {
    color: #333;
    font-weight: 500;
}

.video-testimonials {
    padding: 5rem 0;
    background: white;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.video-card {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.video-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(45deg, #12B7CD, #29313C);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    transform: scale(1.05);
}

.video-placeholder p {
    font-size: 1rem;
    margin-top: 1rem;
}

.video-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.video-card p {
    color: #666;
    line-height: 1.6;
}

.testimonial-stats {
    padding: 5rem 0;
    background: linear-gradient(135deg, #29313C 0%, #29313C 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #12B7CD;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.more-testimonials {
    padding: 5rem 0;
    background: #f8f9fa;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.testimonial-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
    color: #666;
}

/* Enhanced Testimonial Section Styles */
.testimonial-section {
    margin: 56px 0;
    text-align: center;
    background: linear-gradient(135deg, #e3f0ff 0%, #f8fbff 100%);
    padding: 64px 0 80px 0;
    border-radius: 32px;
    box-shadow: 0 12px 48px rgba(25, 118, 210, 0.10);
    position: relative;
    overflow: hidden;
}
.testimonial-section::before {
    content: '';
    position: absolute;
    top: -60px;
    left: -60px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, #bbdefb 0%, transparent 80%);
    z-index: 0;
}
.testimonial-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, #90caf9 0%, transparent 80%);
    z-index: 0;
}
.testimonial-section .section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #12B7CD;
    letter-spacing: 1.5px;
    position: relative;
    z-index: 1;
}
.testimonial-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    padding: 48px 32px 72px 32px;
    min-height: 320px;
    transition: box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
}
.testimonial-slide {
    display: none;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 0 24px;
    background: transparent;
    border-radius: 18px;
    min-height: 260px;
    transition: opacity 0.4s;
    width: 100%;
    gap: 48px;
}
.testimonial-slide.active {
    display: flex;
    opacity: 1;
}
.testimonial-img-col {
    flex: 0 0 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.testimonial-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 7px solid #12B7CD;
    box-shadow: 0 6px 32px rgba(25, 118, 210, 0.18);
    background: #e3f2fd;
    transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial-slide.active .testimonial-img {
    transform: scale(1.05) rotate(-2deg);
    box-shadow: 0 12px 48px rgba(25, 118, 210, 0.22);
}
.testimonial-content-col {
    flex: 1 1 0%;
    text-align: left;
    padding-left: 24px;
}
.client-name {
    font-size: 1.7rem;
    font-weight: 800;
    margin: 0 0 18px 0;
    color: #12B7CD;
    letter-spacing: 0.5px;
}
.testimonial-desc {
    font-size: 1.22rem;
    color: #333;
    margin-bottom: 0;
    font-style: italic;
    line-height: 1.8;
    background: #f1f8ff;
    padding: 18px 24px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(25, 118, 210, 0.06);
    display: inline-block;
}
.testimonial-prev, .testimonial-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #12B7CD;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 2rem;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(25, 118, 210, 0.10);
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.testimonial-prev:hover, .testimonial-next:hover {
    background: #29313C;
    box-shadow: 0 4px 16px rgba(25, 118, 210, 0.18);
}
.testimonial-prev {
    left: 5px;
}
.testimonial-next {
    right: 16px;
}
.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 32px;
    gap: 18px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 24px;
    z-index: 2;
}
.testimonial-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #b0bec5;
    display: inline-block;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    border: 3px solid #fff;
}
.testimonial-dot.active {
    background: #12B7CD;
    transform: scale(1.22);
    box-shadow: 0 2px 8px rgba(25, 118, 210, 0.10);
}

.video-content-section {
    padding: 4rem 0;
    background: #f9f9f9;
}

.container-split {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.video-content-section .text-content {
    flex: 1;
    min-width: 280px;
}

.video-content-section .text-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.video-content-section .text-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.video-box {
    flex: 1;
    min-width: 280px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.video-box video {
    width: 100%;
    height: auto;
    display: block;
}
@media (max-width: 1100px) {
    .testimonial-carousel {
        max-width: 98vw;
        padding: 24px 2vw 56px 2vw;
    }
    .testimonial-slide {
        gap: 24px;
    }
    .testimonial-img-col {
        flex-basis: 120px;
    }
    .testimonial-img {
        width: 100px;
        height: 100px;
    }
}
@media (max-width: 700px) {
    .testimonial-section {
        padding: 18px 0 24px 0;
        border-radius: 16px;
    }
    .testimonial-carousel {
        min-height: 180px;
        padding: 12px 2vw 40px 2vw;
    }
    .testimonial-slide {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
        padding: 0 2vw;
    }
    .testimonial-content-col {
        padding-left: 0;
    }
    .testimonial-img-col {
        flex-basis: 60px;
    }
    .testimonial-img {
        width: 60px;
        height: 60px;
    }
    .testimonial-dots {
        margin-top: 18px;
        bottom: 10px;
    }
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, #29313C 0%, #29313C 100%);
    padding: 135px 0 80px;
    text-align: center;
    color: white;
}

.contact-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.contact-info-section {
    padding: 5rem 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #12B7CD, #29313C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
}

.contact-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.contact-card p {
    color: #666;
    line-height: 1.6;
}

.contact-form-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.contact-form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.form-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.form-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
    color: #666;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

.form-sidebar {
    background: linear-gradient(135deg, #12B7CD 0%, #29313C 100%);
    padding: 3rem;
    border-radius: 20px;
    color: white;
}

.sidebar-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #12B7CD;
}

.benefits-list {
    list-style: none;
    margin-bottom: 2rem;
}

.benefits-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.benefits-list li i {
    color: #12B7CD;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.emergency-contact {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.emergency-contact h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #12B7CD;
}

.emergency-contact p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.map-section {
    padding: 5rem 0;
    background: white;
}

.map-container {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 8px;
}

.map-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    filter: brightness(70%);
    pointer-events: none; /* prevents user from interacting with the map */
}

.map-placeholder {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    padding: 50px 20px;
    font-size: 1.2rem;
}

.map-placeholder i {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}



.faq-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.faq-grid {
    margin-top: 3rem;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.faq-question i {
    color: #667eea;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    line-height: 1.6;
}

/*popup design */
/* Modal Background */
.modal {
  display: none; 
  position: fixed; 
  z-index: 1000; 
  padding-top: 100px; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  background-color: rgba(0,0,0,0.6); 
}

/* Modal Content */
.modal-content {
  background: #fff;
  margin: auto;
  padding: 20px;
  border-radius: 12px;
  width: 60%;
  max-width: 600px;
  animation: fadeIn 0.3s ease-in-out;
}

/* Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: #12b7cd;
}

/* Popup Modal */
#image-popup.popup {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
}
#image-popup .popup-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    object-fit: contain;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
#image-popup.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}


@keyframes fadeIn {
  from {opacity: 0; transform: scale(0.9);}
  to {opacity: 1; transform: scale(1);}
}
/*Recent Stories */
.recent-stories {
    padding: 30px 0;
    background: #f9f9f9;
}
.recent-stories .slider-wrapper {
  position: relative;
  overflow: hidden;
}

.recent-stories .stories-grid {
  display: flex;
  transition: transform 0.4s ease-in-out;
}
.recent-stories .story-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}
.recent-stories .story-card {
  min-width: calc(100% / 3); /* 3 per view */
  overflow: hidden;
 cursor: pointer;
  padding: 10px;
}


.recent-stories .prev, .recent-stories .next {
  position: absolute;
  top: 70%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
}

.recent-stories .prev { left: -30px; }
.recent-stories .next { right: -30px; }
/*achievements section */
.achievements {
  padding: 60px 20px;
  background: linear-gradient(135deg, #29313C 0%, #12B7CD 100%);
  color: white;
}

.achievements-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
  flex-wrap: wrap;
}

.achievements-image img {
  width: 400px;
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.achievements-content {
  flex: 1;
  min-width: 280px;
   color: #fff;
}

.achievements-content h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #fff;
}

.achievements-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #fff;
}

.achievement-link {
  display: inline-block;
  padding: 12px 20px;
  background: #fff;
  color: #12b3c8;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: 0.3s;
}

.achievement-link:hover {
  background: #29313c;
}


/* Responsive Design */
@media (max-width: 768px) {
    .top-bar{
        display:none;
    }
    .hamburger {
        display: flex;
    }
    .navbar{
        top:14px
    }
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background-color: #12B7CD;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        padding-top: 0.5rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-graphic {
        width: 200px;
        height: 200px;
        font-size: 5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid,
    .destinations-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .story-grid,
    .mission-vision-grid,
    .service-detail {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-stats {
        grid-template-columns: 1fr;
    }

    .contact-form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .testimonials-grid,
    .stories-grid,
    .video-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .service-card,
    .destination-card,
    .feature {
        padding: 1.5rem;
    }

    .about-hero-content h1,
    .services-hero-content h1,
    .testimonials-hero-content h1,
    .contact-hero-content h1 {
        font-size: 2rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .form-sidebar {
        padding: 2rem;
    }
} 