:root {
    --primary-color: #145886;
    --secondary-color: #55B848;
    --primary-light: #1e7bb4;
    --primary-lighter: #d4e8f3;
    --secondary-light: #6bc95d;
    --secondary-lighter: #e8f5e6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

.logo-img{
	width: 320px;
}

.banner-area{
    padding: 80px 0px;
    background-color: #145886;
}
.banner-heading{
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    text-align: center;
}
.btn-2{
	color: #111;
    font-size: 14px;
    text-decoration: none;
}
.btn-2:hover{
	color: #65ac4b;
}

/* ========== HEADER SECTION ========== */
#header-top-bar {
    background-color: #1e293b;
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

#header-top-bar a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

#header-top-bar a:hover {
    color: var(--secondary-color);
}

#header-main {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s;
}

#header-main.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
}

.logo-subtitle {
    font-size: 0.875rem;
    color: var(--primary-color);
}

.nav-link {
    color: #475569;
    font-weight: 500;
    padding: 20px 10px !important;
    transition: color 0.3s;
	font-size: 18px;
}

.nav-link:hover {
    color: var(--primary-color);
}

.btn-primary-custom {
    background-color: var(--primary-color) !important;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 0.375rem;
    border: none;
    transition: all 0.3s;
}

.btn-primary-custom:hover {
    background-color: var(--secondary-color) !important;
    transform: translateY(-2px);
}

/* ========== HERO SECTION ========== */
#hero-section {
    background: linear-gradient(to bottom right, #1e293b, #334155, #1e293b);
    padding: 40px 0px;
}

.hero-badge {
    background-color: rgba(20, 88, 134, 0.2);
    color: var(--secondary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(85, 184, 72, 0.3);
    display: inline-block;
    font-size: 30px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(to right, var(--secondary-color), #7dd66f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-check-item {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.hero-stats-card {
    position: absolute;
    bottom: -2rem;
    left: -2rem;
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

.hero-image {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
}

/* ========== PROFILE SECTION ========== */
#profile-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, white, #f8fafc);
}

.profile-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.profile-image-wrapper {
    background: linear-gradient(to bottom right, #f8fafc, var(--primary-lighter));
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.profile-img {
    width: 250px;
    height: 250px;
    border-radius: 1rem;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.profile-name-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    border-top: 4px solid var(--primary-color);
    text-align: center;
    width: 100%;
}

/* ========== ABOUT SECTION ========== */
#about-section {
    background: white;
}

.about-image {
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

.mission-quote {
    background: #f8fafc;
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: 0 0.5rem 0.5rem 0;
    font-style: italic;
}

.stat-card {
    background: white;
    border: 1px solid #e2e8f0;
    padding: 1.5rem;
    border-radius: 0.75rem;
    transition: all 0.3s;
}

.stat-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

/* ========== SERVICES SECTION ========== */
#services-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #f8fafc, white);
}



.service-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 1.5rem;
  height: 100%;
  transition: all 0.3s;
}

.service-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
  transform: translateY(-0.5rem);
}

.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--primary-lighter) !important;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: all 0.3s;
}

.service-card:hover .service-icon {
  background: var(--primary-color);
  color: white !important;
}

.cta-section {
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  border-radius: 1rem;
  padding: 3rem;
  text-align: center;
  color: white;
}


/* ========== WHY CHOOSE US SECTION ========== */

.feature-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 2px solid #e2e8f0;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    transition: all 0.3s;
    position: relative;
    height: 100%;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 0.75rem 0.75rem 0 0;
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    border-color: var(--primary-color);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(to bottom right, var(--primary-lighter), var(--secondary-lighter));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(to bottom right, var(--primary-color), var(--secondary-color));
}

.feature-card:hover .feature-icon i {
    color: white !important;
}

/* ========== TESTIMONIALS ========== */
.testimonial-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 2px solid #e2e8f0;
    transition: all 0.3s;
    height: 100%;
}

.testimonial-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
    transform: translateY(-0.5rem);
}

.testimonial-card:nth-child(odd) {
    border-top: 4px solid var(--primary-color);
}

.testimonial-card:nth-child(even) {
    border-top: 4px solid var(--secondary-color);
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
}

.testimonial-card:nth-child(even) .testimonial-img {
    border-color: var(--secondary-color);
}

/* ========== CAREER SECTION ========== */
#career-section {
    
    background: linear-gradient(to bottom, white, #f8fafc);
}

.career-form-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    border: 1px solid #e2e8f0;
    padding: 3rem;
}

.upload-area {
    border: 2px dashed var(--primary-color);
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.upload-area:hover {
    border-color: var(--secondary-color);
    background: #f8fafc;
}

.file-preview {
    border: 2px solid var(--secondary-color);
    border-radius: 0.5rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ========== CONTACT SECTION ========== */
#contact-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #f8fafc, white);
}

.contact-info-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
}

.contact-info-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.contact-icon {
    background: var(--primary-lighter);
    padding: 0.75rem;
    border-radius: 0.5rem;
}

/* ========== MAP SECTION ========== */
#map-section {
    width: 100%;
    background: #f8fafc;
}

#map-section iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

/* ========== FOOTER SECTION ========== */
#footer-section {
    background: #1e293b;
    color: white;
    padding: 3rem 0 1rem;
}

#footer-section a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

#footer-section a:hover {
    color: var(--secondary-color);
}

/* ========== STICKY ICONS ========== */
.sticky-icons-right {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sticky-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.sticky-btn:hover {
    transform: scale(1.1);
}

.whatsapp-btn {
    background-color: #25D366;
    animation: bounce 2s infinite;
}

.call-btn {
    background-color: var(--primary-color);
}

.call-btn:hover {
    background-color: var(--secondary-color);
}

.scroll-top-btn {
    position: fixed;
    left: 1.5rem;
    bottom: 1.5rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    border: none;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s;
    z-index: 1000;
}

.scroll-top-btn:hover {
    background-color: var(--secondary-color);
    transform: scale(1.1);
}

.scroll-top-btn.show {
    display: flex;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleUp {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.animate-on-scroll {
    opacity: 0;
}

.animate-on-scroll.animated {
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
}

.fade-in-up {
    animation-name: fadeInUp;
}

.slide-right {
    animation-name: slideRight;
}

.slide-left {
    animation-name: slideLeft;
}

.scale-up {
    animation-name: scaleUp;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .profile-img {
        width: 200px;
        height: 200px;
    }

    h2 {
        font-size: 2rem !important;
    }

    .sticky-icons-right,
    .scroll-top-btn {
        bottom: 1rem;
    }
}

/* ========== UTILITIES ========== */
.section{
    padding: 54px 0px;
}
.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #145886;
}

.section-subtitle {
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(20, 88, 134, 0.25);
}

.star-rating i {
    color: #facc15;
}

.section-divider {
    width: 96px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 9999px;
    margin: 0 auto 4rem;
}

.main-heading {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 3rem;
    margin-bottom: 14px;
    line-height: 1.2;
}
.sub-heading {
    color: #145886;
    margin-bottom: 0;
    font-weight: 700;
    font-size: 2rem;
}


.text-secondary-custom {
    color: var(--secondary-color);
}

.content-text {
    color: #374151;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.mission-quote-box {
    position: relative;
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--secondary-color);
    margin-top: 2rem;
}

.quote-icon {
    position: absolute;
    top: -16px;
    left: -16px;
    width: 48px;
    height: 48px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-text {
    color: #1f2937;
    font-style: italic;
    line-height: 1.75;
}

.image-container {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    max-width: 448px;
    margin: 0 auto;
}

.office-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top right, rgba(20, 88, 134, 0.2), transparent);
    z-index: 10;
}

.image-caption-box {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    z-index: 20;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    border-radius: 0.5rem;
    padding: 1rem 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--secondary-color);
}

.image-caption-text {
    color: var(--primary-color);
    font-weight: bold;
    margin: 0;
}

.stat-card {
    background: white;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.stat-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.stat-icon-circle {
    width: 64px;
    height: 64px;
    background: linear-gradient(to bottom right, var(--primary-color), #1a6ba0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-icon-circle {
    transform: scale(1.1);
}

.stat-icon {
    width: 32px;
    height: 32px;
    color: white;
}

.stat-number {
    font-size: 2.25rem;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #4b5563;
    margin: 0;
}

.decorative-circle-1 {
    position: absolute;
    top: 80px;
    right: 40px;
    width: 288px;
    height: 288px;
    background: rgba(125, 214, 111, 0.1);
    border-radius: 50%;
    filter: blur(64px);
    z-index: -10;
}

.decorative-circle-2 {
    position: absolute;
    bottom: 80px;
    left: 40px;
    width: 384px;
    height: 384px;
    background: rgba(20, 88, 134, 0.05);
    border-radius: 50%;
    filter: blur(64px);
    z-index: -10;
}

@media (max-width: 991px) {
    .section-title {
        font-size: 2.5rem;
    }

    .main-heading {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 2rem;
    }

    .main-heading {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }
}

.card-custom {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 1rem;
}

.card-heading {
    color: #145886;
    margin-bottom: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
}

.qr-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.qr-code-container {
    max-width: 390px;
    width: 100%;
    margin: 0 auto;
}

.qr-code-img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.bank-details {
    margin-top: 0.5rem;
}

.detail-item {
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 0.75rem;
    margin-bottom: 0.75rem;
}

.detail-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.detail-label {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.detail-value-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.detail-value {
    color: #111827;
    margin: 0;
    word-break: break-all;
}

.copy-btn {
    background: transparent;
    border: none;
    padding: 0.375rem;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background-color 0.2s;
    flex-shrink: 0;
}

.copy-btn:hover {
    background-color: #f3f4f6;
}

.copy-icon {
    width: 1rem;
    height: 1rem;
    color: #6b7280;
}

.copy-icon-success {
    color: #7dd66f;
}

.notification-box {
    background-color: #7dd66f;
    border-left: 4px solid #145886;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    animation: pulse-slow 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse-slow {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.9;
    }
}

.notification-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.notification-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #145886;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.notification-heading {
    color: #145886;
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-size: 1.25rem;
}

.notification-text {
    color: #1f2937;
    margin: 0;
}

.email-link {
    color: #145886;
    text-decoration: underline;
    transition: color 0.2s;
}

.email-link:hover {
    color: #0d3d5c;
}

.footer-section {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.875rem;
}

@media (max-width: 767px) {
    .main-heading {
        font-size: 1.75rem;
    }
    
    .sub-heading {
        font-size: 1.25rem;
    }
    
    .card-heading {
        font-size: 1.1rem;
    }
    
    .notification-heading {
        font-size: 1.1rem;
    }
}

