
html {
    transition: all 0.3s ease;
}
[dir="rtl"] .arrow { transform: rotateY(180deg); }

/* Hide all Google Translate UI */
.goog-logo-link,
.goog-te-gadget,
.goog-te-banner-frame,
.goog-te-menu-frame,
.goog-te-combo,
.skiptranslate {
    display: none !important;
}


body {
    top: 0 !important;
 
}

/* Quote Card */
.quote-card {
    background: rgba(17, 32, 29, 0.25);
    padding: 40px 30px;
    border-radius: 30px;
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 100px auto;
    max-width: 900px;
    

}

.quote-card:hover {
    transform: translateY(-10px);
}

.quote-text {
    font-size: 1.8rem;
    font-style: italic;
    color: white;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
    position: relative;
    padding: 0 20px;
    
}

.quote-text::before,
.quote-text::after {
    content: '«';
    font-size: 3rem;
    font-weight: 700;
    color: #fcC005;
    opacity: 0.3;
    position: absolute;
    font-family: serif;
}

.quote-text::before {
    top: -20px;
    left: -10px;
}

.quote-text::after {
    content: '»';
    bottom: -40px;
    right: -10px;
}
.quote-card a {
    color: #fcC005;
    text-decoration: underline;
    font-weight: 600;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.quote-card a:hover {
    text-decoration: underline;
    color: #fff;
}


.book-consultation {

    margin-top: 30px;
    padding: 12px 25px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 16px; 
    background: #fcC005;
    color: #ffffff;
}

.book-consultation:hover {
    background: #05604E;
    color: white;
}


.more {
    padding: 12px 25px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 16px; 
    background: #fcC005;
    color: #ffffff;
}


.more:hover {
    background: #05604E;
    color: white;
}


.highlight-yellow {
  color: #FCC005; 
  font-weight: 700;
}

a {
    text-decoration: none;
}

.copy-toast {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: white; 
  color: #11201D; 
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.copy-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}


::selection {
  background-color: rgba(252, 192, 5, 0.6); 
  color: #11201D;                           
}

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

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #11201D;
   
}

/* Canvas container */
    #canvas-container {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
    }


/* Header Styles */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
   
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
}

.top-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    
}

/* Mobile Header Top - Two Buttons */
.mobile-header-top {
    display: none;
    width: 100%;
    gap: 10px;
    margin-bottom: 10px;
}



/* Mobile Header */
.mobile-header {
    display: none;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.menu-toggle {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-section img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.logo-text {
    font-weight: bold;
    font-size: 18px;
    color: #ffffff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}

.language-selector {
    display: flex;
    gap: 15px;
}

.lang {
    font-size: 12px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    color: #fff;
}

.lang:hover{
   color: #fcC005;
}

.lang.active {
    opacity: 1;
    font-weight: bold;
}

/* Desktop Contacts */
.desktop-contacts {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
     padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-icon {
    width: 30px;
    height: 30px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #ffffff;
}

.social-icon:hover {
    background: #fcC005;
    border: 1px solid #fcC005;
    color: #ffffff;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
}

.contact-link:hover {
   color: #fcC005;
}

.contact-links {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0 auto;
}

/* Main Header */
.main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: transparent;
   
   
}

.main-nav {
    display: flex;
    gap: 25px;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
     text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}

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



/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background: #333;
    z-index: 2000;
    transition: left 0.3s ease;
    overflow-y: auto;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #ffffff;
}

.close-menu {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
}

.mobile-nav {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-nav .nav-link {
    padding: 5px 0;
    display: block;
}

.mobile-contacts {
    padding: 20px;
    border-top: 1px solid #ffffff;
}

.mobile-contacts .social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.mobile-contacts .social-icons  .social-icon{
     border: 1px solid  #ffffff;
     color: #ffffff;
}

.mobile-contacts .social-icons  .social-icon:hover{
    background: #fCC005;
    border: 1px solid #fCC005;
    color: #ffffff;
}

.mobile-contacts .contact-link {
    display: block;
    margin-bottom: 10px;
    color: #ffffff;
}

.mobile-contacts .contact-link:hover {
    color: #fcC005;
}

/* Hero Section */
.hero {
   
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
   
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
    font-weight: 300;
}

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

.btn {
    padding: 12px 25px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-primary {
    background: #fcC005;
    color: #ffffff;
    
}

.btn-primary:hover {
    background: #05604E;
    color: white;
}

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

.btn-secondary:hover {
    background: white;
    color: #05604E;
}

.btn-outline {
    background: transparent;
    color: #05604E;
    border: 2px solid #05604E;
}

.btn-outline:hover {
    background: #05604E;
    color: white;
}

/* Footer */
footer {
   border-top: 1px solid #ffffff;
    color: #fff;
    padding: 60px 0 30px;
    font-family: 'Arial', sans-serif;
}

/* Container */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Section */
.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    margin-bottom: 40px;
}

/* Logo */
.footer-logo {
   display: flex;
  align-items: center;   
  justify-content: center;  
  gap: 10px;               
  align-self: flex-start;  
  margin-top: 0;
  padding-top: 0;
  font-size: 1.2rem;
  font-weight: 500;
  color: #ffffff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.footer-logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

/* Contact Info */
.footer-contact h4,
.footer-links h4,
.footer-social h4 { 
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: #fcC005;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.footer-contact p {
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
    margin: 5px 0;
    font-size: 0.95rem;
    color: #fff;
}

/* Links */
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    color: #fff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #fcC005;
}

/* Social Icons */
.footer-social .social-icons {
    display: flex;
    gap: 15px;
}

.footer-social .social-icons .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #ffffff;
    border-radius: 50%;
    color: #11201d;
    font-size: 1rem;
    transition: all 0.3s;
}

.footer-social .social-icons a:hover {
    background: #fCC005;
    color: #ffffff;
    border: 1px solid #fCC005;
}

/* Bottom Section */
.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.footer-bottom a {
    font-weight: 700;
    color: #fcC005;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #fff;
}


/* WhatsApp Floating Button */
#whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

#whatsapp-float a {
    width: 70px;
    height: 70px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 35px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

#whatsapp-float a:hover {
    transform: scale(1.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    /* Mobile Header */
    .mobile-header-top {
        display: flex;
    }
    
    .mobile-header {
        display: flex;
    }
    
    .desktop-contacts {
        display: none;
    }
    
    .main-header {
        display: none;
    }
    
    .top-header {
        padding: 10px 10px;
    }
    

    /* Footer */
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    /* WhatsApp Float */
    #whatsapp-float {
        bottom: 80px;
    }

    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    .footer-logo {
        justify-content: center;
        text-align: center;
    }

    .footer-contact,
    .footer-links,
    .footer-social {
        width: 100%;
        align-items: center;
    }

    .footer-links ul {
        align-items: center;
    }

    .footer-links ul li {
        text-align: center;
    }

    .footer-social .social-icons {
        justify-content: center;
    }

    .footer-bottom {
        text-align: center;
        padding-top: 25px;
    }
}


