/* style.css */
/* Base Styles */
:root {
    --primary: #2a7fba;
    --primary-dark: #1a5f8b;
    --primary-light: #e1f0fa;
    --secondary: #f8b739;
    --secondary-dark: #e6a52e;
    --light: #f8f9fa;
    --dark: #343a40;
    --white: #ffffff;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --success: #28a745;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    overflow-x: hidden;
    line-height: 1.6;
    background-color: var(--white);
    cursor: none;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: none;
    font-size: 14px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover:before {
    width: 100%;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary);
}

.section-title p {
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Preloader */
/* .preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.preloader-inner {
    text-align: center;
}

.preloader-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.preloader-icon span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
}

.preloader-icon span:nth-child(2) {
    border-top-color: var(--secondary);
    animation-delay: 0.3s;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    } 
}*/


 .preloader {
      position: fixed;
      inset: 0;
      background: linear-gradient(rgb(0,0,0,0.8), rgb(28, 132, 153));
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
      transition: opacity 0.8s ease;
    }

    .dna-helix-container {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .helix-wrapper {
      perspective: 1000px;
    }

    .helix {
      position: relative;
      width: 100px;
      height: 320px;
      transform-style: preserve-3d;
      animation: rotateHelix 4s linear infinite;
    }

    .base-pair {
      position: absolute;
      left: 50%;
      width: 100%;
      height: 100%;
      transform-origin: center center;
      transform: rotateY(calc(var(--i) * 18deg)) translateZ(45px);
      animation: moveBasePair 2s ease-in-out infinite alternate;
    }

    .base-pair::before,
    .base-pair::after {
      content: '';
      position: absolute;
      top: calc(var(--i) * 16px);
      width: 12px;
      height: 12px;
      border-radius: 50%;
      box-shadow: 0 0 6px rgba(0,0,0,0.1);
    }

    .base-pair::before {
      left: 0;
      background: var(--primary);
      box-shadow: 0 0 8px rgba(42, 127, 186, 0.6);
    }

    .base-pair::after {
      left: 60px;
      background: var(--secondary);
      box-shadow: 0 0 8px rgba(248, 183, 57, 0.6);
    }

    .loading-text {
      margin-top: 40px;
      text-align: center;
    }

    .loading-percentage {
      font-size: 2rem;
      font-weight: 600;
      color: var(--primary);
      text-shadow: 0 1px 1px rgba(0,0,0,0.1);
    }

    .loading-message {
      margin-top: 5px;
      font-size: 0.95rem;
      letter-spacing: 1px;
      color: white;
      text-transform: uppercase;

    }

    @keyframes rotateHelix {
      0%   { transform: rotateY(0deg); }
      100% { transform: rotateY(360deg); }
    }

    @keyframes moveBasePair {
      0%   { transform: rotateY(calc(var(--i) * 18deg)) translateZ(45px) translateY(0px); }
      100% { transform: rotateY(calc(var(--i) * 18deg)) translateZ(45px) translateY(-35px); }
    }

    /* Optional background blur for effect */
    .preloader::before {
      content: '';
      position: absolute;
      inset: 0;
      backdrop-filter: blur(3px);
      z-index: -1;
    }
/* Cursor Styles */
/* Elastic Trail Cursor Styles */
.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--primary);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 999;
    transition: 
        transform 0.2s ease,
        background-color 0.2s ease;
    mix-blend-mode: difference;
}

.cursor-follower {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 998;
    transition: transform 0.1s ease;
}

/* Ripple effect for buttons */
.ripple {
    position: absolute;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(2.5);
        opacity: 0;
    }
}
.cursor-text {
    position: fixed;
    color: white;
    font-size: 14px;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: center;
    width: 100px;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 25px 0;
    background-color: transparent;
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    backdrop-filter: blur(10px);
    cursor: pointer;
}

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

/* Pay Button Styles */
.pay-btn {
    margin-left: 15px;
    background: linear-gradient(rgba(170, 169, 169, 0.8), rgb(28, 132, 153));
    border-radius: 20px;
    padding: 8px 15px;
    color: white;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
    white-space: nowrap;
}

.pay-btn:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Adjustments for different screen sizes */
@media (min-width: 768px) {
    .pay-btn {
        margin-left: 30px;
        padding: 10px 20px;
        font-size: 15px;
    }
}

@media (min-width: 992px) {
    .pay-btn {
        margin-left: 40px;
        padding: 12px 24px;
    }
}

/* Mobile adjustments */
@media (max-width: 576px) {
    .pay-btn {
        margin-left: 10px;
        padding: 6px 12px;
        font-size: 13px;
    }
}

/* When header is scrolled */
header.scrolled .pay-btn {
    color: white;
}

/* Mobile menu adjustments */
@media (max-width: 768px) {
    nav ul li a.pay-btn {
        display: inline-block;
        margin: 15px 0;
        width: auto;
    }
}


/* Language Toggle Styles */
.language-toggle {
    background: none;
    border: none;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    cursor: none;
    transition: var(--transition);
    padding: 5px 10px;
    border-radius: 20px;
    margin-right: 15px;
}

header.scrolled .language-toggle {
    color: var(--dark);
}

.language-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.language-flag {
    font-size: 1.2rem;
}

.language-text {
    font-size: 0.9rem;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .language-toggle {
        margin-right: 10px;
    }
}
.logo {
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 50px;
    margin-right: 10px;
    transition: var(--transition);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition);
}

header.scrolled .logo-text {
    color: var(--primary);
}

.logo-text span {
    color: var(--secondary);
}

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

nav ul li {
    margin-left: 30px;
    position: relative;
}

nav ul li a {
    color: var(--white);
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

header.scrolled nav ul li a {
    color: var(--dark);
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--secondary);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: none;
    transition: var(--transition);
    padding: 5px;
}

header.scrolled .mobile-menu-btn {
    color: var(--dark);
}

.mobile-menu-btn:hover {
    transform: rotate(90deg);
}


@import "bourbon";


svg{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.beat-loader{
  stroke: #E76E66;
  stroke-dasharray: 175;
  stroke-dashoffset: 350;
  @include animation(draw 1.4s linear);
  @include animation-iteration-count(infinite);
}

@include keyframes(draw) {
  to{
    stroke-dashoffset: 0;
  }
}


/* Google Translate Widget Styles */
.language-toggle-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    margin-right: 15px;
}

#google_translate_element {
    display: inline-block;
}

.goog-te-gadget {
    font-family: 'Poppins', sans-serif !important;
    color: var(--white) !important;
}

header.scrolled .goog-te-gadget {
    color: var(--dark) !important;
}

.language-toggle {
    background: none;
    border: none;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    cursor: none;
    transition: var(--transition);
    padding: 5px 10px;
    border-radius: 20px;
    margin-right: 15px;
}
/* Google Translate Widget Styles */
/* Google Translate Widget Styles */
#google_translate_element {
    display: inline-block;
    vertical-align: middle;
    position: absolute;
    left: -9999px;
}

.goog-te-banner-frame {
    display: none !important;
}

body {
    top: 0 !important;
}

.goog-te-menu-frame {
    max-width: 100% !important;
}

.goog-te-menu2 {
    max-width: 100% !important;
    overflow-x: scroll !important;
    box-sizing: border-box !important;
    height: auto !important;
}

/* Show the Google Translate dropdown when needed */
.goog-te-combo {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
    color: transparent !important;
    position: absolute;
    left: -9999px;
}

/* FAQ Section */
.faq {
    background-color: var(--white);
    padding: 100px 0;
}

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

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    background-color: var(--light);
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: none;
    transition: var(--transition);
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin: 0;
    transition: var(--transition);
}

.faq-question i {
    color: var(--primary);
    transition: var(--transition);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: var(--white);
}

.faq-answer p {
    padding: 0 25px 0;
    margin: 0;
    opacity: 0;
    transition: opacity 0.3s ease 0.2s;
}

.faq-item.active .faq-question {
    background-color: var(--primary);
}

.faq-item.active .faq-question h3 {
    color: white;
}

.faq-item.active .faq-question i {
    color: white;
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer p {
    opacity: 1;
}

.faq-contact {
    text-align: center;
    margin-top: 50px;
}

.faq-contact p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--gray);
}

@media (max-width: 768px) {
    .faq-question {
        padding: 15px 20px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 0 20px;
    }
}

/* Hero Section */
/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('bg1.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    z-index: 0;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 2;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
}

/* Disable parallax on mobile */
@media (max-width: 768px) {
    .hero-parallax {
        background-attachment: scroll;
    }
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.hero-btns .btn {
    animation: fadeIn 1s ease 0.8s both;
}

.hero-btns .btn:last-child {
    animation-delay: 1.1s;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 24px;
    animation: bounce 2s infinite;
    cursor: none;
    z-index: 2;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.scroll-down:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateX(-50%) translateY(-5px);
}

.hero-shape {
    position: absolute;
    bottom: -150px;
    left: 0;
    width: 100%;
    height: 300px;
    background-color: var(--white);
    clip-path: ellipse(75% 100% at 50% 100%);
    z-index: 1;
}

/* Stats Section */
.stats {
    background-color: var(--white);
    padding: 60px 0;
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 30px 20px;
    background-color: var(--light);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background-color: var(--primary);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.stat-item:hover:before {
    height: 100%;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.stat-text {
    color: var(--gray);
    font-size: 1rem;
}

/* Locations Section */
/* Locations Section */
/* Map Container */
.map-container {
  position: relative;
  height: 400px;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.location-map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}

.location-map.active {
  display: block;
}

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

/* Map Toggle Buttons */
.map-toggle {
  display: flex;
  margin-bottom: 20px;
  justify-content: center;
  gap: 5px;
}

.map-btn {
  padding: 12px 24px;
  background: white;
  border: 1px solid var(--primary);
  color: var(--primary);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.map-btn:first-child {
  border-radius: 30px 0 0 30px;
}

.map-btn:last-child {
  border-radius: 0 30px 30px 0;
  border-left: none;
}

.map-btn.active {
  background: var(--primary);
  color: white;
}

/* Location Cards */
.location-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.location-card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

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

.card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: var(--primary);
}

.card-header i {
  font-size: 1.2rem;
}

.card-body p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.get-directions {
  width: 100%;
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
}

.info-item i {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-top: 3px;
}

.info-item h4 {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.info-item p {
    font-size: 0.95rem;
    color: var(--dark);
    line-height: 1.5;
}

.location-actions {
    display: flex;
    gap: 15px;
    margin-top: auto;
}

.location-actions .btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
}

/* Map Container */
.location-map-container {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.map-toggle {
    display: flex;
    border-bottom: 1px solid var(--light-gray);
}

.map-toggle-btn {
    flex: 1;
    padding: 15px;
    background: none;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.map-toggle-btn:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.map-toggle-btn.active {
    color: var(--primary-dark);
}

.map-toggle-btn.active:after {
    transform: scaleX(1);
}

.location-map {
    height: 400px;
    position: relative;
}

.map-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--light);
    color: var(--primary);
    font-size: 1.2rem;
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
}


/* Add to style.css */
/* Parallax Sections */
.parallax-section {
    position: relative;
    height: 500px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.parallax-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

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

.parallax-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.parallax-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.5);
}

/* Specific parallax sections */
.parallax-about {
    background-image: url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
}

.parallax-services {
    background-image: url('https://images.unsplash.com/photo-1530026186672-2cd00ffc50fe?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
}

.parallax-testimonials {
    background-image: url('https://images.unsplash.com/photo-1579684385127-1ef15d508118?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
}


/* Disable parallax on mobile */
@media (max-width: 768px) {
    .parallax-section {
        background-attachment: scroll;
    }
}
/* Responsive Adjustments */
@media (max-width: 768px) {
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .location-actions {
        flex-direction: column;
    }
    
    .location-map {
        height: 300px;
    }
}
.location-map {
    height: 400px;
    width: 100%;
    position: relative;
    background: var(--light-gray);
}

/* Fallback placeholder styles */
.map-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--light);
    color: var(--primary);
    font-size: 1.2rem;
    text-align: center;
    padding: 20px;
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
}

.map-placeholder a {
    color: var(--primary);
    text-decoration: underline;
}

/* Make sure Google Maps controls are visible */
.gm-style .gm-style-iw {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.gm-style .gm-style-iw a {
    color: var(--primary);
}

/* About Section */
.about {
    background-color: var(--white);
}

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

.about-img {
    flex: 1 1 400px;
    position: relative;
}

.about-img .img-wrapper {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.about-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

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

.about-content {
    flex: 1 1 400px;
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-content h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.about-content p {
    margin-bottom: 20px;
    color: var(--gray);
}

.about-signature {
    margin-top: 30px;
    display: flex;
    align-items: center;
}

.about-signature img {
    height: 80px;
    margin-right: 20px;
}

.signature-text h4 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.signature-text p {
    color: var(--gray);
    font-style: italic;
}

/* Services Section */
.services {
    /* background-color: var(--light); */
        background: linear-gradient( rgba(79, 122, 152, 0.2), rgba(246, 245, 245, 0.4)), url('images-tran.png') no-repeat;

    /* background: url(images-tran.png);
    background-repeat:no-repeat;
    background-size: 30vw auto; */
    background-position-x: center;
    background-position-y: center;
}

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

.service-card {
    /* background-color: var(--white); */
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    cursor: none;
    position: relative;
    overflow: hidden;
}

.service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--secondary);
    transition: var(--transition);
}

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

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

.service-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background-color: var(--primary);
    transform: rotateY(180deg);
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary);
    transition: var(--transition);
}

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

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

.service-card p {
    color: var(--gray);
}

/* Testimonials Section */
.testimonials {
    background-color: var(--white);
    position: relative;
}

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

.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s ease;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-content {
    background-color: var(--light);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    position: relative;
}

.quote-icon {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--dark);
    margin-bottom: 20px;
    position: relative;
}

.testimonial-author h4 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--gray);
    font-size: 0.9rem;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 20px;
}

.slider-prev, .slider-next {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 1.5rem;
    cursor: none;
    transition: var(--transition);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.slider-prev:hover, .slider-next:hover {
    background-color: var(--primary-light);
    transform: translateY(-3px);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--light-gray);
    cursor: none;
    transition: var(--transition);
}

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

/* Contact Section */
.contact {
    background-color: var(--light);
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-info {
    flex: 1 1 300px;
}

.contact-info h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-details p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-details i {
    margin-right: 15px;
    color: var(--primary);
    font-size: 1.2rem;
    min-width: 25px;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    transition: var(--transition);
    cursor: none;
}

.social-links a:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
}

.contact-form {
    flex: 1 1 400px;
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(42, 127, 186, 0.2);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    cursor: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.submit-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    padding: 80px 0 20px;
    position: relative;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1 1 200px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

.footer-col p {
    margin-bottom: 15px;
    color: #adb5bd;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #adb5bd;
    transition: var(--transition);
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #adb5bd;
    font-size: 0.9rem;
}


/* ===== Team Section Styles ===== */
:root {
  --primary: rgb(42, 127, 186);
  --primary-dark: #1a5f8b;
  --secondary: #f8b739;
  --light: #f8f9fa;
  --dark: #343a40;
  --white: #ffffff;
  --gray: #6c757d;
}

.team-section {
  padding: 80px 0;
  /* background-color: var(--white); */
     background: linear-gradient(rgba(246, 245, 245, 0.4), rgba(79, 122, 152, 0.2)),  no-repeat;

  position: relative;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Title */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 15px;
  font-family: 'Playfair Display', serif;
}

.section-title p {
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Founder Bio */
.founder-bio {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 80px;
  align-items: center;
}

.founder-image {
  flex: 1;
  min-width: 300px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.8s ease;
}

.founder-image.animate {
  transform: translateY(0);
  opacity: 1;
}

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

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

.founder-content {
  flex: 1;
  min-width: 300px;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.8s ease 0.2s;
}

.founder-content.animate {
  transform: translateY(0);
  opacity: 1;
}

.founder-content h1 {
  font-size: 2.5rem;
  color: var(--primary-dark);
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}

.founder-content .title {
  color: var(--secondary);
  font-weight: 500;
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.founder-content .location {
  color: var(--gray);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.founder-content .location i {
  color: var(--primary);
}

.bio h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  font-family: 'Playfair Display', serif;
}

.bio h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--secondary);
}

.bio p {
  margin-bottom: 20px;
  color: var(--gray);
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px) scale(1.1);
}

/* Team Grid - 4 columns */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.team-member {
  transform: scale(0.9);
  opacity: 0;
  transition: all 0.6s ease;
}

.team-member.animate {
  transform: scale(1);
  opacity: 1;
}

.member-card {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.5s ease;
  height: 100%;
}

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

.member-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

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

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

.member-social {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s ease;
}

.member-card:hover .member-social {
  transform: translateY(0);
  opacity: 1;
}

.member-info {
  padding: 20px;
  text-align: center;
}

.member-info h4 {
  font-size: 1.3rem;
  color: var(--primary-dark);
  margin-bottom: 5px;
  font-family: 'Playfair Display', serif;
}

.member-info p {
  color: var(--gray);
  font-size: 0.9rem;
}

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

@media (max-width: 992px) {
  .founder-bio {
    flex-direction: column;
  }
  
  .founder-image, .founder-content {
    flex: 1 1 100%;
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 2rem;
  }
  
  .founder-content h1 {
    font-size: 2rem;
  }
  
  .member-image {
    height: 240px;
  }
}

@media (max-width: 576px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .founder-content h1 {
    font-size: 1.8rem;
  }
  
  .member-image {
    height: 280px;
  }
}
/* Floating Particles */
.floating-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    background-color: var(--primary-light);
    border-radius: 50%;
    animation: float linear infinite;
    opacity: 0.6;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .section-title h2 {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-container, .contact-container {
        flex-direction: column;
    }
    
    .about-img, .about-content, .contact-info, .contact-form {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    section {
        padding: 80px 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background-color: white;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        z-index: 999;
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        padding: 20px;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    nav ul li a {
        color: var(--dark);
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .location-card {
        flex: 1 1 100%;
    }
    
    .testimonial-content {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-col {
        flex: 1 1 100%;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}


