@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Cormorant:ital,wght@0,300..700;1,300..700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');



@media (max-width: 1024px) {
    .process {
        flex-wrap: wrap;
        justify-content: center;
    }
}
@media (max-width: 768px) {
    .process {
        flex-direction: column;
        align-items: center;
    }
}
/* Variables */
:root {
    --primary-color: #2563eb;
    --text-color: #1f2937;
    --light-bg: #f3f4f6;
    --gradient: linear-gradient(135deg, #2563eb, #3b82f6);
    --transition: 0.3s ease;
    --white: #ffffff;
    --primary: #2563eb;
    --secondary: #3b82f6;
    --text-dark: #2B3445;
    --text-light: #64748b;
    --container-width-lg: 1200px;
    --container-width-md: 960px;
    --container-width-sm: 720px;
    --container-padding: 1rem;
    --header-height: 70px;
    --emergency-height: 40px;
    --total-header: calc(var(--header-height) + var(--emergency-height));
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: var(--container-width-lg);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
}

main {
    margin-top: var(--total-header);
    overflow: hidden;
}

section {
    padding: 6rem 0;
}

@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }
}

@media (max-width: 576px) {
    section {
        padding: 3rem 0;
    }
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 1.5rem;
    }
}

h1,
.h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h2,
.h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.3;
    margin-bottom: 1.25rem;
}

h3,
.h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.4;
    margin-bottom: 1rem;
}

p,
.text {
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.image-wrapper {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2rem);
    border-radius: 8px;
    font-weight: 600;
    font-size: clamp(0.875rem, 2vw, 1rem);
    transition: all 0.3s ease;
    text-decoration: none;
    gap: 0.5rem;
}

.btn:hover{
    background-color: #db0a7d;
}

.card {
    background: var(--white);
    border-radius: 20px;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    transition: all 0.3s ease;
}

.form-group {
    margin-bottom: 1.5rem;
}

.input {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--light-bg);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.mt-1 {
    margin-top: clamp(0.5rem, 1vw, 1rem);
}

.mt-2 {
    margin-top: clamp(1rem, 2vw, 2rem);
}

.mt-3 {
    margin-top: clamp(1.5rem, 3vw, 3rem);
}

.mt-4 {
    margin-top: clamp(2rem, 4vw, 4rem);
}

.mt-5 {
    margin-top: clamp(2.5rem, 5vw, 5rem);
}

.mb-1 {
    margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.mb-2 {
    margin-bottom: clamp(1rem, 2vw, 2rem);
}

.mb-3 {
    margin-bottom: clamp(1.5rem, 3vw, 3rem);
}

.mb-4 {
    margin-bottom: clamp(2rem, 4vw, 4rem);
}

.mb-5 {
    margin-bottom: clamp(2.5rem, 5vw, 5rem);
}

.flex {
    display: flex;
    gap: 1rem;
}

.flex-center {
    align-items: center;
    justify-content: center;
}

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

@media (max-width: 768px) {
    .flex-md-column {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .flex-sm-column {
        flex-direction: column;
    }
}

.hide-sm {
    display: block;
}

.show-sm {
    display: none;
}

@media (max-width: 576px) {
    .hide-sm {
        display: none;
    }

    .show-sm {
        display: block;
    }
}

@media (prefers-reduced-motion: no-preference) {
    .fade-in {
        animation: fadeIn 0.5s ease-in-out;
    }

    .slide-up {
        animation: slideUp 0.5s ease-in-out;
    }

    .slide-in {
        animation: slideIn 0.5s ease-in-out;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateX(-20px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.bg-pattern {
    position: relative;
    overflow: hidden;
}

.bg-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--light-bg) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
    z-index: 0;
}

.bg-pattern>* {
    position: relative;
    z-index: 1;
}



/* Navigation */
/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-container {
    max-width: 1900px;
    height: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    position: relative;
    transition: var(--transition);
}

.nav-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-item:hover::before,
.nav-item.active::before {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-item:hover,
.nav-item.active {
    color: var(--primary);
}

.menu-icon {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 102;
}

.bar1, .bar2, .bar3 {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #333;
    transition: var(--transition);
}

.bar1 { top: 0; }
.bar2 { top: 50%; transform: translateY(-50%); }
.bar3 { bottom: 0; }

/* Mobile Navigation */
@media screen and (max-width: 968px) {
    .menu-icon {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: var(--transition);
        z-index: 101;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        opacity: 0;
        transform: translateY(20px);
        transition: var(--transition);
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
        transition-delay: calc(0.1s * var(--i));
    }

    .menu-icon.active .bar1 {
        transform: rotate(-45deg) translate(-5px, 6px);
        background-color: var(--primary);
    }

    .menu-icon.active .bar2 {
        opacity: 0;
    }

    .menu-icon.active .bar3 {
        transform: rotate(45deg) translate(-5px, -6px);
        background-color: var(--primary);
    }

    .nav-item {
        font-size: 1.4rem;
    }
}

@media screen and (max-width: 576px) {
    .nav-container {
        padding: 0 1rem;
    }

    .logo img {
        height: 50px;
    }

    .nav-item {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    

    .nav-container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 576px) {
    
    .logo img {
        height: 35px;
    }
}

@media screen and (max-width: 1200px) {
    .container {
        max-width: var(--container-width-md);
    }

    .grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 992px) {
    .container {
        max-width: var(--container-width-sm);
    }

    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .section {
        padding: 4rem 0;
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 1rem;
    }

    .nav-toggle {
        display: block;
    }

    .nav-menu-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(300px, 80vw);
        height: 100vh;
        background: var(--white);
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease-in-out;
        z-index: 1000;
    }

    .nav-menu-wrapper.active {
        right: 0;
    }

    .nav-menu {
        flex-direction: column;
        padding: 80px 0 0;
    }

    .menu-item {
        width: 100%;
        text-align: center;
        padding: 1rem;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
    }

    .vision-mission-grid {
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 576px) {

    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    

    .logo {
        height: 32px;
    }

    .section {
        padding: 2.5rem 0;
    }

    .section-title {
        font-size: 1.8rem;
    }
}


main {
    margin-top: var(--total-header);
}

/* Responsive Design */
@media (max-width: 992px) {
    .container {
        padding: 0 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-grid,
    .director-grid {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .about-grid,
    .cards-grid,
    .director-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-title {
        text-align: center;
    }

    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .about-content,
    .director-content {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    } 
}

/* Animations */
@keyframes shine {
    100% {
        transform: translateX(100%);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-animate] {
    opacity: 0;
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate="fade-up"] {
    transform: translateY(30px);
}

[data-animate="fade-right"] {
    transform: translateX(-30px);
}

[data-animate="fade-left"] {
    transform: translateX(30px);
}

[data-animate="slide-right"] {
    transform: translateX(-50px) rotate(-3deg);
}

[data-animate="slide-left"] {
    transform: translateX(50px) rotate(3deg);
}

.animate {
    opacity: 1;
    transform: translate(0) rotate(0) !important;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.py-1 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-2 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.py-3 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

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

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

.slide-up {
    animation: slideUp 0.5s ease-in-out;
}

/* Utility Classes */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.close-menu {
    display: none;
}

/* footer start */

.footer {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #1a1a1a;
    color: #fff;
    padding: 4rem 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    overflow: hidden;
}

.footer * {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-column {
    flex: 1;
    min-width: 250px;
    position: relative;
}

.footer-logo img {
    max-width: 100px;
    height: auto;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInLogo 1.5s ease-out forwards;
}

.footer-column h3 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 0.3s;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #007bff;
}

.footer-column p {
    margin-bottom: 0.8rem;
    line-height: 1.6;
    color: #fff;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 0.6s;
}

.footer-column a {
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    position: relative;
    padding: 2px 0;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 1s;
}

.footer-column a:hover {
    color: #db0a7d;
    transform: translateX(8px);
}

.footer-column a:hover::after {
    width: 100%;
}

.footer-column a:hover i {
    color: #db0a7d;
    transform: scale(1.2);
}

.footer-column .fa-chevron-right {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    transform: translateX(-5px);
}

.footer-column a:hover .fa-chevron-right {
    opacity: 1;
    transform: translateX(3px);
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    opacity: 0;
    animation: fadeIn 1.5s ease-out forwards;
    animation-delay: 1.3s;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    opacity: 0;
    animation: fadeIn 1.5s ease-out forwards;
    animation-delay: 1.6s;
}

.social-link i {
    font-size: 1.2rem;
    color: #fff;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 10px;
}

.social-link:hover {
    transform: translateY(-5px);
    color: #db0a7d;
    box-shadow: 0 6px 12px rgba(219, 10, 125, 0.2);
}

.social-link:hover i {
    transform: scale(1.2);
}

.social-link:active {
    transform: scale(0.95);
}

.footer-bottom {
    background-color: #111;
    color: #ffffff;
    text-align: center;
    padding: 1rem; /* Reduce padding to avoid large gaps */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer-bottom p {
    margin: 0.5rem 0; /* Reduce space between paragraphs */
    font-size: 0.9rem; /* Optional: smaller font size for compactness */
}

.footer-bottom a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

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

/* Ensure the footer text stays centered on smaller screens */
@media screen and (max-width: 480px) {
    .footer-bottom {
        padding: 1rem; /* Ensure consistent padding on mobile */
    }

    .footer-bottom p {
        font-size: 0.8rem; /* Slightly smaller text on small screens */
    }
}


.footer-column i {
    margin-right: 8px;
    color: #007bff;
}

@media screen and (max-width: 768px) {
    .footer {
        padding: 3rem 1rem;
    }

    .footer-column {
        flex: 100%;
        text-align: center;
    }

    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-icons {
        justify-content: center;
        align-items: center;
    }
}

@media screen and (max-width: 480px) {
    .footer {
        padding: 2rem 1rem;
    }

    .footer-logo img {
        max-width: 150px;
    }
}

/* Keyframes for fadeIn and other animations */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLogo {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* footer end */

.map-container {
    width: 100%;
    max-width: 900px;
    margin: 20px auto;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid grey;
}
.map-container iframe {
    width: 100%;
    height: 350px;
    border: none;
}

.contact-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 3rem;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 80vh;
}

.contact-info, .contact-form {
    flex: 1;
    max-width: 550px;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-info:hover, .contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.contact-info::before, .contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #2563eb, #4f46e5);
}

.contact-info h2, .contact-form h2 {
    color: #1e293b;
    margin-bottom: 2rem;
    font-size: 2.2rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.contact-info h2::after, .contact-form h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #4f46e5);
    border-radius: 2px;
}

.contact-info p {
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #4b5563;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-info img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: none;
}

.contact-info a {
    color: #2563eb;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.contact-info a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #2563eb;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.contact-info a:hover {
    color: #1d4ed8;
}

.contact-info a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-icons a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f1f5f9;
    transition: all 0.3s ease;
}

.social-icons img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
    filter: none;
}

.social-icons a:hover {
    background: #2563eb;
    transform: translateY(-5px);
}

.social-icons a:hover img {
    transform: scale(1.1);
   
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    background: #f8fafc;
    color: #1e293b;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2563eb;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.contact-form textarea {
    min-height: 180px;
    resize: vertical;
}

.contact-form button {
    background: linear-gradient(90deg, #2563eb, #4f46e5);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.contact-form button:hover::before {
    left: 100%;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .contact-container {
        padding: 4rem 2rem;
    }

    .contact-info, .contact-form {
        padding: 2.5rem;
    }
}

@media screen and (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        padding: 3rem 1.5rem;
        gap: 2rem;
    }

    .contact-info, .contact-form {
        max-width: 100%;
        padding: 1.3rem;
    }

    .contact-info h2, .contact-form h2 {
        font-size: 1.8rem;
    }
    .contact-info p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .contact-container {
        padding: 2rem 1rem;
    }

    .contact-info, .contact-form {
        padding: 1.5rem;
    }

    .contact-info h2, .contact-form h2 {
        font-size: 1.6rem;
    }

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

    .contact-form input,
    .contact-form textarea {
        padding: 0.875rem 1.25rem;
    }

    .contact-form button {
        width: 100%;
    }
}

.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px; /* Move the button to the left side */
    z-index: 1000;
    display: flex;
    align-items: center;
    background-color: #16c95b;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 10px 15px;
    transition: all 0.3s ease;
    overflow: hidden;
  }
  
  .whatsapp-icon {
    background-color: #f6f8f7;
    color: rgb(57, 201, 88);
    padding: 10px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  
  .whatsapp-icon i {
    font-size: 28px;
  }
  
  .dots {
    width: 8px;
    height: 8px;
    background-color: #00d61d;
    border-radius: 50%;
    position: absolute;
    top: 8px;
    left: 5px;
    animation: blink 1s infinite;
    
  }
  
  .whatsapp-text {
    color: white;
    font-size: 14px;
    font-weight: bold;
    margin-left: 12px;
    display: none;
    transition: opacity 0.3s ease-in-out;
  }
  
  .whatsapp-btn:hover {
    background-color: #128C7E; /* Darker WhatsApp color on hover */
  }
  
  .whatsapp-btn:hover .whatsapp-text {
    display: inline-block;
    opacity: 1;
  }
  
  .whatsapp-btn:hover .whatsapp-icon {
    background-color: #128C7E; /* Darker color for the icon */
  }
  
  @keyframes blink {
    0% {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }


  /* Updated Team Banner Styles */
.team-banner {
    position: relative;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8eeff 100%);
    padding: 120px 0;
    overflow: hidden;
    min-height: 100vh;
}

.banner-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.banner-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: center;
}

.banner-text {
    max-width: 600px;
}

.banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(71, 118, 230, 0.1);
    padding: 12px 24px;
    border-radius: 100px;
    margin-bottom: 30px;
    animation: slideIn 0.6s ease;
}

.badge-icon {
    font-size: 24px;
}

.banner-title {
    font-size: 64px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 30px;
    animation: slideIn 0.6s ease 0.2s both;
}

.title-wrap {
    margin-top: 10px;
}

.highlight-text {
    color: #4776e6;
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(71, 118, 230, 0.2);
    z-index: -1;
    transform: skewX(-10deg);
}

.banner-description {
    font-size: 18px;
    line-height: 1.8;
    color: #131212;
    margin-bottom: 50px;
    animation: slideIn 0.6s ease 0.4s both;
}

/* Banner Image Styles */
.banner-image {
    position: relative;
    animation: slideIn 0.6s ease 0.8s both;
}

.image-container {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 30px;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    transition: transform 0.6s ease;
}

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

.image-shape {
    position: absolute;
    top: -20px;
    right: -20px;
    bottom: -20px;
    left: -20px;
    border: 2px dashed rgba(71, 118, 230, 0.2);
    border-radius: 30px;
    z-index: -1;
}

/* Background Shapes */
.banner-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.shape {
    position: absolute;
    background: rgba(79, 120, 216, 0.082);
    border-radius: 50%;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -150px;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: -100px;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: -75px;
    left: 50%;
}

/* Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .banner-title {
        font-size: 48px;
    }
    
    .image-container {
        height: 500px;
    }
}

@media (max-width: 992px) {
    .banner-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .banner-text {
        max-width: 100%;
        text-align: center;
    }
    
    .banner-stats {
        justify-content: center;
    }
    
    .image-container {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .team-banner {
        padding: 80px 0;
    }
    
    .banner-title {
        font-size: 36px;
    }
    
    .banner-stats {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .image-container {
        height: 400px;
    }
    
    .floating-card {
        padding: 15px;
    }
    
    .card-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    .banner-image{
        margin-top: 60px;
    }
    .image-shape{
        display: none;
    }
}
