:root {
    --primary-green: #1a472a;
    --primary-light-green: #2e8b57;
    --accent-green: #3cb371;
    --dark-navy: #1a1a2e;
    --light-gray: #f8f9fa;
    --text-dark: #333;
    --text-light: #666;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* Navigation */
        .navbar {
            padding: 1rem 0;
            transition: all 0.3s ease;
        }

        .navbar-brand img {
            width: 60px;
            height: 60px;
            transition: transform 0.3s ease;
        }

        .navbar-brand img:hover {
            transform: scale(1.1);
        }

        .nav-link {
            color: var(--text-dark) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-green);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }

        .services-btn {
            background-color: var(--primary-green);
            border: none;
            padding: 0.6rem 1.5rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .services-btn:hover {
            background-color: var(--primary-light-green);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(26, 71, 42, 0.3);
        }

         /* Make offcanvas open from the left and cover half of the screen */
.offcanvas-start {
    width: 80% !important;          /* Always half screen */
    left: 0;
    right: auto;
    transform: translateX(-100%);   /* Start hidden offscreen */
    transition: transform 0.35s ease-in-out;
}

.offcanvas-start.show {
    transform: translateX(0);       /* Slide in from the left */
}

/* Optional: Dark backdrop for focus */
.offcanvas-backdrop {
    background-color: rgba(0, 0, 0, 0.5);
}

/* Your existing design styles */
.offcanvas {
    background-color: var(--light-gray);
}

.offcanvas-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
}

.offcanvas-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--primary-green);
}

.offcanvas-body {
    padding: 1.5rem;
}

.offcanvas-body .nav-link {
    padding: 0.75rem 0;
    margin: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.offcanvas-body .dropdown-menu {
    border: none;
    background-color: transparent;
    padding-left: 1rem;
}

.offcanvas-body .dropdown-item {
    padding: 0.5rem 0;
    color: var(--text-dark);
}

.offcanvas-body .dropdown-item:hover {
    background-color: transparent;
    color: var(--primary-green);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    padding: 0.2rem 0;
    transition: all 0.3s ease;
}

.navbar-brand img {
    width: 70px;
    height: 70px;
    transition: transform 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.1);
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-green);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.services-btn {
    background-color: var(--primary-green);
    border: none;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.services-btn:hover {
    background-color: var(--primary-light-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 71, 42, 0.3);
}

/* Offcanvas Side Drawer */
.offcanvas {
    background-color: var(--light-gray);
}

.offcanvas-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
}

.offcanvas-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--primary-green);
}

.offcanvas-body {
    padding: 1.5rem;
}

.offcanvas-body .nav-link {
    padding: 0.75rem 0;
    margin: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.offcanvas-body .dropdown-menu {
    border: none;
    background-color: transparent;
    padding-left: 1rem;
}

.offcanvas-body .dropdown-item {
    padding: 0.5rem 0;
    color: var(--text-dark);
}

.offcanvas-body .dropdown-item:hover {
    background-color: transparent;
    color: var(--primary-green);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    padding: 2rem;
    animation: slideInLeft 0.8s ease-out;
}

.vision-tag {
    display: inline-block;
    color: var(--primary-green);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    background-color: rgba(26, 71, 42, 0.1);
    border-radius: 20px;
    animation: fadeInDown 0.6s ease-out;
}

.vision-tag i {
    margin-right: 0.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark-navy);
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
    animation: slideInLeft 0.8s ease-out 0.4s both;
}

.learn-more-btn {
    background-color: var(--primary-green);
    border: none;
    padding: 0.8rem 2.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    animation: slideInLeft 0.8s ease-out 0.6s both;
}

.learn-more-btn:hover {
    background-color: var(--primary-light-green);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(26, 71, 42, 0.3);
}

.learn-more-btn i {
    transition: transform 0.3s ease;
}

.learn-more-btn:hover i {
    transform: translateX(5px);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 0.8s ease-out;
}

.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 620px;
}

.curved-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--primary-green) 100%);
    border-radius: 50% 0 0 50%;
    animation: scaleIn 0.8s ease-out;
}

.hero-img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50% 0 0 50%;
    z-index: 2;
    animation: fadeIn 0.8s ease-out 0.3s both;
}

/* Flash News Section */
.flash-news {
    background-color: var(--primary-green);
    color: white;
    padding: 1rem 0;
    overflow: hidden;
    position: relative;
}

.news-ticker {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.news-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    white-space: nowrap;
    padding: 0 1rem;
    border-right: 2px solid rgba(255, 255, 255, 0.3);
    background-color: var(--primary-green);
    z-index: 2;
}

.news-content {
    display: flex;
    gap: 3rem;
    padding-left: 2rem;
    animation: scroll 30s linear infinite;
}

.news-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    font-size: 0.95rem;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Services Section */
.services-section {
    background-color: var(--light-gray);
    padding: 5rem 0;
}

.section-label {
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-navy);
    margin-top: 0.5rem;
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    animation: fadeInUp 0.6s ease-out;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(26, 71, 42, 0.2);
}

.service-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 71, 42, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
}

.overlay-content h5 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-content {
    padding: 1.5rem;
}

.service-content h5 {
    color: var(--dark-navy);
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.service-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* About Section */
.about-image {
    position: relative;
    overflow: hidden;
}

.green-frame {
    position: absolute;
    top: 10%;
    right: 10%;
    bottom: 10%;
    left: 10%;
    border: 7px solid rgba(0, 51, 25, 0.9);
    pointer-events: none;
    transition: 0.3s ease;
}

.about-image:hover .green-frame {
    transform: scale(1.08);
    border-color: rgba(0, 77, 38, 1);
}

.experience-box {
    position: absolute;
    bottom: -20px;
    left: -25px;
    background-color: #003319;
    color: #fff;
    padding: 25px 30px;
    border-radius: 8px;
    width: 160px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5);
}

.experience-box h1 {
    font-size: 3rem;
    margin-bottom: 0;
}

.experience-box p {
    font-size: 0.9rem;
    line-height: 1.3;
}

/* Why Choose Us Section */
.why-choose-section {
    background-color: #fff;
}

.feedback-box {
    background-color: #063b1b;
    border-radius: 8px;
}

.carousel-indicators {
    position: absolute;
    bottom: -30px;
    left: 90%;
    transform: translateX(-50%);
    justify-content: center;
    margin: 0;
    z-index: 10;
}

.carousel-indicators button {
    background-color: #fff;
    width: 5px;
    height: 10px;
    border-radius: 50%;
    border: none;
    opacity: 0.5;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    opacity: 1;
    background-color: #00a859;
    width: 12px;
    height: 12px;
}

.legacy-content img {
    filter: drop-shadow(0px 2px 3px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
}

.legacy-content img:hover {
    transform: scale(1.1);
}

.counter {
    color: #000;
    font-size: 1.8rem;
    transition: 0.3s ease;
}

.legacy-icon {
    color: var(--primary-green);
    margin-bottom: 10px;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(to right, #003319, #026734);
    padding: 100px 0;
    margin-left: 80px;
    margin-right: 80px;
    margin-bottom: 50px;
    border: 1px solid #fff;
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    padding: 40px 30px;
    max-width: 450px;
    color: white;
    z-index: 2;
    position: relative;
    margin: 0 auto;
}

.contact-form .form-title {
    text-align: left;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.input-group-text {
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: white;
}

.form-control, .form-control:focus, textarea {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    border: none;
    box-shadow: none;
}

.form-control::placeholder {
    color: #f3eaea;
}

.btn-submit {
    background-color: #003319;
    color: white;
    border-radius: 50px;
    padding: 10px 25px;
    border: none;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #fff;
    color: #003319;
}

.btn-outline-light {
    border-radius: 50px;  
    padding: 10px 25px;
    transition: all 0.3s ease;
}

/* Decorative geometric shapes + background pattern */
.bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
    filter: blur(90px);
    z-index: 1;
    animation: moveGlow 12s ease-in-out infinite alternate;
}

.shape1 {
    width: 250px;
    height: 250px;
    top: 10%;
    left: 10%;
    background: radial-gradient(circle, #00ff99 0%, transparent 70%);
}

.shape2 {
    width: 300px;
    height: 300px;
    bottom: 15%;
    right: 10%;
    background: radial-gradient(circle, #00cc66 0%, transparent 80%);
}

.shape3 {
    width: 180px;
    height: 180px;
    top: 50%;
    right: 40%;
    background: radial-gradient(circle, #00ffcc 0%, transparent 80%);
}

@keyframes moveGlow {
    0% { transform: translateY(0px) scale(1); opacity: 0.5; }
    50% { transform: translateY(-20px) scale(1.1); opacity: 0.7; }
    100% { transform: translateY(10px) scale(1); opacity: 0.5; }
}

.bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
}

/* Footer */
.footer {
    background-color: var(--dark-navy);
    color: white;
    padding: 2rem 0;
}

.footer h5 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--accent-green);
}

.footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: var(--accent-green);
    padding-left: 0.5rem;
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--accent-green);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: white;
    color: var(--primary-green);
    transform: translateY(-5px);
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
@media (max-width: 992px) {
  .contact-section {
    margin-left: 0 !important;
    margin-right: 0 !important;
    border-radius: 0;
    padding: 60px 0;
  }

  .contact-form {
    width: 100%;
    max-width: none;
    border-radius: 0;
    padding: 30px 20px;
  }
}

/* WhatsApp floating button */
.whatsapp-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  border-radius: 50%;
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  cursor: pointer;
  z-index: 1000;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.whatsapp-btn img {
  width: 35px;
  height: 35px;
}
.whatsapp-btn:hover{
  background-color: #128c7e;
}

/* Alert styles */
.alert {
    padding: 12px 20px;
    border-radius: 8px;
    margin: 15px 0;
    font-weight: 500;
    text-align: center;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Country Code Picker Styles */
.phone-input-group {
    display: flex;
    width: 100%;
}

.country-code-select {
    flex: 0 0 120px;
    margin-right: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    padding: 12px 15px;
    font-size: 1rem;
    background-color: white;
    color: black;
    cursor: pointer;
}

.country-code-select:focus {
    outline: none;
    border-color: #003319;
    color: black;
    box-shadow: 0 0 0 2px rgba(0, 51, 25, 0.1);
}

.phone-number-input {
    flex: 1;
    border-radius: 8px;
    border: 1px solid #ccc;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s;
}

.phone-number-input:focus {
    outline: none;
    border-color: #003319;
    box-shadow: 0 0 0 2px rgba(0, 51, 25, 0.1);
}

.validation-message {
    font-size: 0.85rem;
    margin-top: 5px;
    color: #666;
}

.validation-message.error {
    color: #f57582;
}

.validation-message.success {
    color: #e3ece8;
}

/* Contact form specific styles */
.contact-form {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    padding: 40px 30px;
    max-width: 450px;
    color: white;
    z-index: 2;
    position: relative;
    margin: 0 auto;
}

.contact-form .form-title {
    text-align: left;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.input-group-text {
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: white;
}

.form-control, .form-control:focus, textarea {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    border: none;
    box-shadow: none;
}

.form-control::placeholder {
    color: #f3eaea;
}

.btn-submit {
    background-color: #003319;
    color: white;
    border-radius: 50px;
    padding: 10px 25px;
    border: none;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #fff;
    color: #003319;
}

.btn-outline-light {
    border-radius: 50px;  
    padding: 10px 25px;
    transition: all 0.3s ease;
}
.country-code-select {
        background-color: rgba(255, 255, 255, 0.3);
        color: white;
    }

/* Responsive */
@media (max-width: 480px) {
    .phone-input-group {
        flex-direction: column;
    }

    .country-code-select {
        background-color: rgba(255, 255, 255, 0.3);
        color: white;
        flex: 1;
        margin-right: 0;
        margin-bottom: 10px;
    }
}
/* Additional CSS for the floating buttons */
        .floating-buttons {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .translate-btn {
            background-color: #064814;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
        }
        
        .translate-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
        }
        
        .translate-btn i {
            font-size: 24px;
        }
        
        .whatsapp-btn {
            background-color: #25D366;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .whatsapp-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
        }
        
        .whatsapp-btn img {
            width: 35px;
            height: 35px;
        }
        
        /* Google Translate Dropdown */
        .translate-dropdown {
            position: absolute;
            bottom: 80px;
            right: 0;
            background: white;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            width: 200px;
            padding: 15px;
            display: none;
        }
        
        .translate-dropdown.show {
            display: block;
        }
        
        .translate-dropdown select {
            width: 100%;
            padding: 8px;
            border-radius: 4px;
            border: 1px solid #ddd;
        }
        
        .translate-dropdown .close-btn {
            position: absolute;
            top: 5px;
            right: 10px;
            background: none;
            border: none;
            font-size: 16px;
            cursor: pointer;
            color: #666;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .floating-buttons {
                bottom: 20px;
                right: 20px;
            }
            
            .translate-btn, .whatsapp-btn {
                width: 50px;
                height: 50px;
            }
            
            .translate-btn i {
                font-size: 20px;
            }
            
            .whatsapp-btn img {
                width: 28px;
                height: 28px;
            }
            
            .translate-dropdown {
                width: 180px;
            }
        }

