:root {
    --deep-blue: #0a2463;
    --medium-blue: #3e5c9a;
    --light-blue: #7cb9e8;
    --white: #ffffff;
}

body {
    font-family: 'Montserrat', sans-serif;
}

/* Top Bar Styles */
.top-bar {
    background-color: var(--deep-blue);
    font-size: 0.9rem;
}

.top-bar a {
    text-decoration: none;
    transition: color 0.3s;
}

.top-bar a:hover {
    color: var(--light-blue) !important;
}

/* Main Header Styles */
.main-header {
    background-color: var(--medium-blue);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    transition: transform 0.3s;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    border-radius: 4px;
    transition: all 0.3s;
}

.nav-link:hover, .nav-link.active {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .top-bar .col-md-6 {
        text-align: center !important;
        margin-bottom: 0.5rem;
    }
    
    .navbar-nav {
        padding-top: 1rem;
    }
    
    .nav-link {
        margin: 0.25rem 0;
    }
}

/* Hero Banner Styles */
#hero {
    background-color: var(--deep-blue);
    color: var(--white);
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
    /* height: 100vh; */
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, var(--medium-blue) 0%, var(--light-blue) 100%);
    z-index: 1;
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hero-banner .container {
    position: relative;
    z-index: 2;
}

.hero-banner h1 {
    font-weight: 700;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-banner .lead {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-image {
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transform: perspective(1000px) rotateY(-10deg);
    transition: transform 0.5s ease;
    width: 75%;
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.cta-buttons .btn {
    margin-right: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--light-blue);
    border-color: var(--light-blue);
    color: var(--deep-blue);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--light-blue);
    border-color: var(--light-blue);
    transform: translateY(-3px);
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--deep-blue);
    transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-banner::before {
        width: 100%;
        height: 40%;
        top: auto;
        bottom: 0;
        clip-path: polygon(0% 25%, 100% 0%, 100% 100%, 0% 100%);
    }
    
    .hero-banner .row {
        flex-direction: column-reverse;
    }
    
    .hero-banner h1 {
        font-size: 2.2rem;
    }
    
    .hero-image {
        margin-bottom: 2rem;
        max-width: 80%;
    }
}

@media (max-width: 576px) {
    .hero-banner {
        padding: 3rem 0;
        text-align: center;
    }
    
    .hero-banner h1 {
        font-size: 1.8rem;
    }
    
    .hero-banner .lead {
        font-size: 1.1rem;
    }
    
    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin-right: 0;
    }
}

/* Services Section Styles */
#services {
    background-color: var(--white);
    position: relative;
}

.section-header {
    position: relative;
    padding-bottom: 1rem;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--light-blue);
}

.section-title {
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--medium-blue);
    font-weight: 500;
    font-size: 1.1rem;
}

.service-card {
    background: var(--white);
    border-radius: 10px;
    padding: 2rem 1.5rem;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(10, 36, 99, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(10, 36, 99, 0.1);
    border-color: rgba(124, 185, 232, 0.3);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--medium-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-size: 1.8rem;
}

.service-card h3 {
    color: var(--deep-blue);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--medium-blue);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-link {
    color: var(--light-blue);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.service-link i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: var(--deep-blue);
}

.service-link:hover i {
    transform: translateX(3px);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .service-card {
        padding: 1.5rem 1rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .service-card {
        text-align: center;
    }
    
    .service-icon {
        margin-left: auto;
        margin-right: auto;
    }
}

/* USP Section Styles */
#why-choose-us {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.usp-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.pexels.com/photos/590041/pexels-photo-590041.jpeg') center/cover;
    opacity: 0.05;
    z-index: 0;
}

.usp-section .container {
    position: relative;
    z-index: 1;
}

.usp-card {
    background: var(--white);
    border-radius: 10px;
    padding: 2.5rem 1.5rem;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(10, 36, 99, 0.1);
}

.usp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(10, 36, 99, 0.1);
}

.usp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--light-blue), var(--medium-blue));
    transition: width 0.3s ease;
}

.usp-card:hover::before {
    width: 8px;
}

.usp-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--medium-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 10px 20px rgba(124, 185, 232, 0.3);
}

.usp-card h3 {
    color: var(--deep-blue);
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.4rem;
}

.usp-card p {
    color: var(--medium-blue);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.6;
}

.usp-number {
    position: absolute;
    bottom: 1rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(10, 36, 99, 0.05);
    line-height: 1;
    transition: all 0.3s ease;
}

.usp-card:hover .usp-number {
    color: rgba(124, 185, 232, 0.1);
    transform: scale(1.1);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .usp-card {
        padding: 2rem 1.25rem;
    }
    
    .usp-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .usp-card {
        margin-bottom: 1.5rem;
    }
    
    .usp-number {
        font-size: 2.5rem;
    }
}

/* Values Section Styles */
#values {
    background-color: var(--white);
    position: relative;
}

.values-image-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(10, 36, 99, 0.1);
    transform: perspective(1000px) rotateY(10deg);
    transition: transform 0.5s ease;
}

.values-image-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.values-image {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 36, 99, 0.1), rgba(10, 36, 99, 0.3));
}

.value-item {
    display: flex;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 1rem;
}

.value-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(to bottom, var(--light-blue), var(--medium-blue));
}

.value-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light-blue);
    margin-right: 1.5rem;
    min-width: 40px;
    line-height: 1;
}

.value-text h3 {
    color: var(--deep-blue);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.value-text p {
    color: var(--medium-blue);
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.values-cta .btn {
    padding: 0.75rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(124, 185, 232, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .values-image-wrapper {
        transform: none;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .value-item {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .value-item {
        flex-direction: column;
    }
    
    .value-number {
        margin-bottom: 0.5rem;
    }
    
    .values-cta .btn {
        width: 100%;
        text-align: center;
    }
}

/* Contact Section Styles */
#contact {
    background-color: var(--white);
    position: relative;
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: 10px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(10, 36, 99, 0.1);
    height: 100%;
}

.contact-form .form-control {
    border: 1px solid rgba(10, 36, 99, 0.2);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--light-blue);
    box-shadow: 0 0 0 0.25rem rgba(124, 185, 232, 0.25);
}

.contact-form textarea.form-control {
    min-height: 150px;
}

.contact-info-wrapper {
    background: var(--deep-blue);
    border-radius: 10px;
    padding: 2.5rem;
    height: 100%;
    color: var(--white);
}

.contact-info-card {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--light-blue);
    flex-shrink: 0;
}

.contact-info-text h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.contact-info-text p,
.contact-info-text a {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-text a:hover {
    color: var(--light-blue);
}

.contact-social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--light-blue);
    color: var(--deep-blue);
    transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-info-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-info-icon {
        margin-bottom: 1rem;
    }
}

/* Info Cards - Refined Styles */
.info-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(10, 36, 99, 0.08);
    border: 1px solid rgba(10, 36, 99, 0.08);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
    position: relative;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(10, 36, 99, 0.15);
    border-color: rgba(124, 185, 232, 0.3);
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--light-blue), var(--medium-blue));
    transition: width 0.3s ease;
}

.info-card:hover::before {
    width: 6px;
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    transition: all 0.3s ease;
}

.info-card:hover .icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(124, 185, 232, 0.3);
}

.info-card-title {
    color: var(--deep-blue);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    text-align: center;
}

.info-card-content {
    text-align: center;
    color: var(--medium-blue);
}

.info-card-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.phone-link, .email-link {
    color: var(--medium-blue);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.phone-link:hover, .email-link:hover {
    color: var(--light-blue);
    text-decoration: underline;
}

.map-link {
    display: inline-flex;
    align-items: center;
    color: var(--light-blue);
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.map-link:hover {
    color: var(--medium-blue);
}

.map-link i {
    transition: transform 0.3s ease;
}

.map-link:hover i {
    transform: translateX(3px);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .info-card {
        padding: 1.75rem;
    }
    
    .icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .info-card {
        text-align: center;
    }
    
    .d-flex {
        justify-content: center;
    }
}

/* Footer Section Styles */
.footer-section {
    background-color: var(--deep-blue) !important;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: rgba(124, 185, 232, 0.05);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.footer-brand {
    display: flex;
    align-items: center;
}

.footer-brand span {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--light-blue);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding-left: 0;
}

.footer-contact li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact a:hover {
    color: var(--light-blue);
}

.footer-contact i {
    color: var(--light-blue);
    width: 20px;
    text-align: center;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.social-icon.whatsapp:hover {
    background: #25D366;
}

.social-icon.facebook:hover {
    background: #3b5998;
}

.social-icon.twitter:hover {
    background: #1DA1F2;
}

.social-icon.linkedin:hover {
    background: #0077B5;
}

.legal-links {
    list-style: none;
    padding-left: 0;
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
    margin-bottom: 0;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.legal-links a:hover {
    color: var(--light-blue);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer-section::before {
        display: none;
    }
    
    .legal-links {
        justify-content: flex-start;
        margin-top: 1rem;
    }
    
    .footer-contact li {
        margin-bottom: 1.5rem;
    }
}


/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white !important;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
  font-size: 28px;
  transition: all 0.3s ease;
  position: relative;
  animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
  background-color: #128C7E;
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid #25D366;
  border-radius: 50%;
  animation: ripple 1.5s infinite;
  opacity: 0;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes ripple {
  0% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Tooltip Customization */
.tooltip {
  --bs-tooltip-bg: #075E54; /* WhatsApp dark green */
}

.tooltip .tooltip-inner {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  padding: 8px 12px;
  background-color: var(--bs-tooltip-bg);
}

.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before,
.bs-tooltip-start .tooltip-arrow::before {
  border-left-color: var(--bs-tooltip-bg);
}

/* Responsive Design */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }
  
  .whatsapp-btn {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}