
/* 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;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

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

main {
    margin-top: 0;
    padding-top: 0;
}

section {
    margin-top: 0;
    padding-top: 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;
    }
}

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;
}


.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;
}


.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;
}

/* navrbar start */
.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;
    }
}
/* navbar end */

/* About Section */
.about-section {
    padding: 5rem 0;
    background: var(--white);
}

/* ===== Grid Layout ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;   /* 🔥 better proportion */
    gap: 3rem;
    align-items: center;

    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* remove restriction */
.about-content {
    max-width: 100%;   /* 🔥 important fix */
}

/* ===== Title ===== */
.section-title {
    font-size: 2.4rem;
    margin-bottom: 1.2rem;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 0.8rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

/* ===== Text ===== */
.section-text {
    font-size: 1.05rem;
    text-align: justify;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.8rem;
}

/* ===== Image ===== */
.about-image img {
    width: 100%;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.02);
}


/* Vision & Mission start*/
.vision-mission {
    padding: 6rem 0;
    background: var(--light-bg);
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.card:hover::before {
    transform: scaleX(1);
}

.card-iconll {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
}

.card:hover .card-iconll {
    transform: rotateY(360deg);
}

.card-iconll i {
    font-size: 2.5rem;
    color: var(--white);
}

.card-title {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.card-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .vision-mission-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .card {
        padding: 2rem;
    }

    .card-iconll {
        width: 60px;
        height: 60px;
    }

    .card-iconll i {
        font-size: 2rem;
    }

    .card-title {
        font-size: 1.5rem;
    }

    .card-text {
        font-size: 1rem;
    }
}

/* vision & mission end */

/* Responsive Adjustments */
@media (max-width: 768px) {
    

    .nav-container {
        padding: 0 1.5rem;
    }
    .section-text{
        font-size: 0.95rem;
    }
}

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

/* Responsive Breakpoints */
@media screen and (max-width: 1200px) {
    
    .grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 992px) {
   

    .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;
    }
}

@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 Content Adjustment */
main {
    margin-top: 0;
    padding-top: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
   
    .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) {
    /* .hero {
        padding: 2rem 0;
    } */

    .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;
}

/* 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 container 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;
}

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

/* Footer columns */
.footer-column {
    flex: 1 1 200px;
    min-width: 200px;
}
.footer-logo img {
    max-width: 100px;
    height: auto;
    margin-bottom: 1.5rem;
}

.footer-logo h3 {
    text-align: justify;
    margin-top: 10px;
}

.footer-column h3 {
    color: #ffffff;
    margin-bottom: 1.2rem;
    font-size: 1.25rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.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;

}

.footer-column a {
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    position: relative;
    padding: 2px 0;
}

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

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

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

/* Quick Links Icon Animation */
.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 Animation */
.social-icons {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #303030;
    border-radius: 50%;
  display: flex;
    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;
}

.social-link i {
    font-size: 18px;
    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);
}

@media screen and (max-width: 768px) {
    .social-icons {
        justify-content: center;
        gap: 1rem;
    }

    .social-link {
        width: 35px;
        height: 35px;
    }

    .social-link i {
        font-size: 1rem;
    }
}

/* Tooltip Animation */
.social-link[data-tooltip]::before {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%) translateY(10px);
}

.social-link[data-tooltip]:hover::before {
    transform: translateX(-50%) translateY(-5px);
}

.footer-bottom {
    background-color: #111;
    color: #ffffff;
    text-align: center;
    padding: 12px 10px;   /* 🔽 reduced padding */
    line-height: 1.4;     /* tighter text */
}
.footer-bottom p {
    font-size: 1.2rem;
    margin: 5px 0;        /* 🔥 remove default big margin */
}

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

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

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

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

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

    .footer-column h3 {
        text-align: center;
    }

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

    .social-icons {
        justify-content: center;
        align-items: center;
    }
    .footer-bottom p {
    font-size: 0.8rem;
}
}

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

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

/* footer section end */



/* partner section start */

.partners-section {
    position: relative;
    min-height: 100vh;
    padding: 100px 20px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    overflow: hidden;
}


.partners-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.partners-section {
    position: relative;
    min-height: 100vh;
    padding: 100px 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    overflow: hidden;
}

.partners-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.partners-content {
    position: relative;
    z-index: 3;
    width: 100%;
}


.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
    background: linear-gradient(45deg, #60a5fa, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #60a5fa, #34d399);
    margin: 20px auto;
    border-radius: 2px;
}

.section-header p {
    color: #94a3b8;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}
.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .partners-grid {
        grid-template-columns: 1fr;
    }
}


.partner-card {
    perspective: 1000px;
    height: 300px;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s;
}

.partner-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.1), rgba(52, 211, 153, 0.1));
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #60a5fa, #34d399);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon-wrapper i {
    font-size: 32px;
    color: #fff;
}

.partner-card h3 {
    color: #fff;
    font-size: 1.5rem;
    text-align: center;
    margin: 15px 0;
}

.partner-card p {
    color: #ffffff;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 20px;
}

.learn-more {
    color:  #ee0c90;
    text-decoration: none;
    display: flex; 
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: color 0.3s;
}

.learn-more:hover {
    color: #1894e7;
}

.partners-cta {
    text-align: center;
    margin-top: 60px;
}

.cta-text {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.cta-buttonn {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(45deg, #2a70c5, #d334b8);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-buttonn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2.5rem;
    }

   

    .partner-card {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 2rem;
    }

    .partner-card {
        height: 260px;
    }
}

/* partner section end */



/* Contact Us Section before footer */
.contact-us {
    position: relative;
    background: url("../images/build.png") center/cover no-repeat;
    padding: 80px 20px;
    text-align: center;
    z-index: 1;
}

.contact-us::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4)); /* Blackish gradient */
    backdrop-filter: blur(2px);
    z-index: -1;
}

.containerv {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 700;
    
}

.contact-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #f8f9fa;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #db0a7d;
    /* Pink button color */
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    border-radius: 25px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Button Hover Effects */
.cta-button:hover {
    background-color: #e4007f;
    transform: translateY(-5px);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .contact-content h2 {
        font-size: 2rem;
    }

    .contact-content p {
        font-size: 1rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 12px 30px;
    }
}

@media (max-width: 480px) {
    .contact-content h2 {
        font-size: 1.5rem;
    }

    .contact-content p {
        font-size: 0.9rem;
    }

    .cta-button {
        font-size: 0.9rem;
        padding: 10px 25px;
    }
}

/* Process Section */
.containerf {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem;
    text-align: center;
    overflow: hidden;
}

.containerf h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: #333;
    margin-bottom: clamp(2rem, 5vw, 3rem);
    position: relative;
    display: inline-block;
}

.containerf h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(60px, 8vw, 80px);
    height: 3px;
    background: var(--primary);
}

.process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
    margin-top: clamp(1.5rem, 3vw, 2rem);
    width: 100%;
}

.box {
    background: #fff;
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0;
    transform: translateY(30px);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.box.visible {
    opacity: 1;
    transform: translateY(0);
}

.box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.box h3 {
    color: var(--primary);
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    margin-bottom: clamp(0.75rem, 2vw, 1rem);
    width: 100%;
}

.box p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
}

/* Large screens */
@media screen and (min-width: 1200px) {
    .process {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Medium screens */
@media screen and (max-width: 992px) {
    .process {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Small screens */
@media screen and (max-width: 768px) {
    .containerf {
        padding: 1rem;
        margin: 2rem auto;
    }

    .process {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Extra small screens */
@media screen and (max-width: 480px) {
    .containerf {
        padding: 1rem 0.5rem;
    }

    .box {
        padding: 1.25rem;
    }

    .box:hover {
        transform: translateY(-5px);
    }
}

/* Animation delays for boxes */
.box:nth-child(1) { transition-delay: 0.1s; }
.box:nth-child(2) { transition-delay: 0.2s; }
.box:nth-child(3) { transition-delay: 0.3s; }
.box:nth-child(4) { transition-delay: 0.4s; }

/* Process Section */
.process-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.process-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.process-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--primary);
    margin: 0;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.process-header .subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #666;
    display: block;
    margin-top: 1rem;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 2rem;
    position: relative;
}

.process-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    opacity: 0.2;
    transform: translateY(-50%);
}

.process-item {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0;
    transform: translateY(30px);
    cursor: pointer;
    border: 1px solid grey;
}

.process-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.process-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.process-number {
    position: absolute;
    top: -20px;
    left: 20px;
    background: var(--primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.process-icon {
    width: 60px;
    height: 60px;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.process-item:hover .process-icon {
    transform: rotate(10deg);
}

.process-icon i {
    font-size: 1.5rem;
    color: var(--primary);
}

.process-content h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    color: #333;
    margin-bottom: 1rem;
}

.process-content p {
    color: #666;
    line-height: 1.6;
    font-size: clamp(0.9rem, 1.6vw, 1rem);
}

@media screen and (max-width: 992px) {
    .process-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-container::before {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .process-section {
        padding: 4rem 1rem;
    }

    .process-container {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .process-item {
        padding: 1.5rem;
    }
}

/* Animation delays */
.process-item:nth-child(1) { transition-delay: 0.1s; }
.process-item:nth-child(2) { transition-delay: 0.2s; }
.process-item:nth-child(3) { transition-delay: 0.3s; }
.process-item:nth-child(4) { transition-delay: 0.4s; }





.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: 90vh;
}

.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: 48px;
    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;
    width: 100%;
    height: 100%;
}

.image-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.image-container img {
   margin-top: 50px;
   width: 100%;
   height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

@media (max-width: 768px) {
    .banner-image {
        margin-top: 2rem;
    }
}

.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 img{
        height: 500px;
    }
}

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

@media (max-width: 768px) {
    .team-banner {
        padding: 80px 0;
    }
    
    .banner-title {
        font-size: 36px;
    }
    
    .image-container img{
        width: 100%;
        height: 80%;
    }
    .banner-image{
        margin-top: 60px;
    }
    .image-shape{
        display: none;
    }

    .about-image{
        width: 100%;
        height: 80%;
    }
}












/* ============================================
   ABOUT PAGE REDESIGN - ADDITIONAL STYLES
   about-redesign.css
   ============================================ */

/* ---- Section Tag ---- */
.section-tag {
    display: inline-block;
    background: rgba(37, 99, 235, 0.08);
    color: #2563eb;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 14px;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

/* ---- About CTA Button ---- */
.about-cta {
    margin-top: 1rem;
    font-size: 0.92rem !important;
    padding: 0.85rem 1.5rem !important;
    line-height: 1.4;
    text-align: center;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: #fff !important;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}
.about-cta:hover {
    background: linear-gradient(135deg, #1d4ed8, #2563eb) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

/* ============================================
   INDUSTRIES WE SERVE SECTION
   (Matches service page design style)
   ============================================ */

.industries-section {
    position: relative;
    min-height: 80vh;
    padding: 100px 20px 80px;
    background: linear-gradient(135deg, #0a0f1e 0%, #0f1b35 50%, #121820 100%);
    overflow: hidden;
}

/* Particles background (same as original) */
.industries-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
}

.industries-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 2;
}

/* Moving dot grid */
.industries-section::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: radial-gradient(rgba(96, 165, 250, 0.06) 1px, transparent 1px);
    background-size: 28px 28px;
    animation: indGridMove 25s linear infinite;
    z-index: 2;
    pointer-events: none;
}

@keyframes indGridMove {
    from { background-position: 0 0; }
    to { background-position: 28px 28px; }
}

/* Ambient glow blobs */
.industries-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background:
        radial-gradient(ellipse at 15% 40%, rgba(37, 99, 235, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 60%, rgba(52, 211, 153, 0.07) 0%, transparent 50%);
    z-index: 2;
    pointer-events: none;
}

.industries-content {
    position: relative;
    z-index: 4;
    max-width: 1300px;
    margin: 0 auto;
}

/* ── Eyebrow Badge ── */
.industries-eyebrow {
    text-align: center;
    margin-bottom: 24px;
}

.ind-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(96, 165, 250, 0.12);
    border: 1px solid rgba(96, 165, 250, 0.25);
    color: #60a5fa;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 50px;
}

.ind-badge i { font-size: 0.75rem; }

/* ── Header ── */
.industries-header {
    text-align: center;
    margin-bottom: 60px;
}

.industries-header h2 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    color: #fff;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 0;
}

.ind-highlight {
    background: linear-gradient(90deg, #60a5fa 0%, #34d399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ind-header-line {
    width: 72px;
    height: 4px;
    background: linear-gradient(90deg, #60a5fa, #34d399);
    border-radius: 4px;
    margin: 20px auto 18px;
}

.industries-header p {
    color: #94a3b8;
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Industry Cards Grid ── */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
    margin-bottom: 60px;
}

/* ── Single Card ── */
.ind-card {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 36px 22px 30px;
    text-align: center;
    cursor: default;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                border-color 0.3s ease,
                box-shadow 0.4s ease;
    backdrop-filter: blur(6px);
}

.ind-card:hover {
    transform: translateY(-12px) scale(1.03);
    border-color: rgba(96, 165, 250, 0.35);
    box-shadow: 0 24px 60px rgba(37, 99, 235, 0.22),
                0 0 0 1px rgba(96, 165, 250, 0.2);
}

/* Glow blob inside card */
.ind-card-glow {
    position: absolute;
    top: -30px; left: 50%;
    transform: translateX(-50%);
    width: 100px; height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.18) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.ind-card:hover .ind-card-glow {
    opacity: 1;
}

/* Top accent line on hover */
.ind-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, #60a5fa, #34d399);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    border-radius: 18px 18px 0 0;
}

.ind-card:hover::before {
    transform: scaleX(1);
}

/* Card icon */
.ind-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(96,165,250,0.12), rgba(52,211,153,0.08));
    border: 1px solid rgba(96,165,250,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                background 0.3s ease;
}

.ind-card:hover .ind-card-icon {
    transform: scale(1.15) rotate(-6deg);
    background: linear-gradient(135deg, rgba(96,165,250,0.2), rgba(52,211,153,0.15));
}

.ind-emoji {
    font-size: 1.9rem;
    line-height: 1;
    display: block;
}

/* Card text */
.ind-card h4 {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.01em;
}

.ind-card p {
    color: rgba(255,255,255,0.55);
    font-size: 0.85rem;
    line-height: 1.65;
    margin: 0;
}

/* ── CTA ── */
.industries-cta {
    text-align: center;
    margin-top: 10px;
}

.ind-cta-text {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 22px;
    opacity: 0.9;
}

.ind-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 36px;
    background: linear-gradient(135deg, #2a70c5, #d334b8);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ind-cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 35px rgba(42, 112, 197, 0.4);
}

.ind-cta-btn i {
    transition: transform 0.3s ease;
}

.ind-cta-btn:hover i {
    transform: translateX(4px);
}

/* ── Responsive ── */
@media (max-width: 1200px) {
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .industries-section {
        padding: 70px 16px 60px;
    }
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .industries-header {
        margin-bottom: 40px;
    }
    .industries-header h2 {
        font-size: 1.9rem;
    }
}

@media (max-width: 480px) {
    .industries-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 40px;
    }
}

/* ============================================
   CONTACT INFO SECTION
   ============================================ */
.contact-info-section {
    background: #f0f4ff;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.contact-info-section::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.07) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-info-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-info-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #1a1a2e;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-sub {
    font-size: 1.2rem;
    color: #2563eb;
    font-weight: 600;
    margin: 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* ✅ FIXED CARD */
.contact-info-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 20px;   
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(37, 99, 235, 0.08);
    position: relative;
    overflow: hidden;
}

.contact-info-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(37, 99, 235, 0.12);
}

.contact-info-card:hover::after {
    transform: scaleX(1);
}

.contact-info-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.contact-info-card:hover .contact-info-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-info-icon i {
    color: #fff;
    font-size: 1.5rem;
}

.contact-info-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #2563eb;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

.contact-info-card p {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.5;
    margin: 0;

    /* 🔥 email/text overflow fix */
    word-break: break-word;
}

.contact-info-card a {
    color: #444;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-info-card a:hover {
    color: #2563eb;
}

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

@media (max-width: 576px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-section {
        padding: 50px 16px;
    }
}
/* ============================================
   SOCIAL MEDIA SECTION
   ============================================ */
.social-media-section {
    background: linear-gradient(135deg, #0a0f2c 0%, #0d1b4b 50%, #1a1040 100%);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.social-media-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: 
        radial-gradient(ellipse at 20% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Animated floating dots background */
.social-media-section::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: bgMove 20s linear infinite;
    pointer-events: none;
}

@keyframes bgMove {
    from { background-position: 0 0; }
    to { background-position: 30px 30px; }
}

.social-media-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.social-media-header {
    text-align: center;
    margin-bottom: 60px;
}

.social-media-header h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: #fff;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.2;
}

.social-sub {
    font-size: 1.3rem;
    color: #60a5fa;
    font-weight: 600;
    margin-bottom: 16px;
}

.social-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.65);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Social Cards Grid */
.social-cards-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* Social Card Base */
.social-card {
    position: relative;
    border-radius: 20px;
    padding: 32px 20px 28px;
    text-decoration: none;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                box-shadow 0.4s ease;
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.04);
}

.social-card:hover {
    transform: translateY(-12px) scale(1.03);
}

/* Background blob animation */
.social-card-bg {
    position: absolute;
    top: -40%;
    left: -40%;
    width: 180%;
    height: 180%;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.6s ease;
    transform: scale(0.5);
}

.social-card:hover .social-card-bg {
    opacity: 0.12;
    transform: scale(1);
}

/* Platform-specific colors */
.whatsapp-card { border-color: rgba(37, 211, 102, 0.25); }
.whatsapp-card:hover { box-shadow: 0 20px 60px rgba(37, 211, 102, 0.3); }
.whatsapp-card .social-card-bg { background: radial-gradient(circle, #25d366 0%, transparent 70%); }
.whatsapp-card .social-card-icon { background: linear-gradient(135deg, #25d366, #128c7e); }
.whatsapp-card .social-follow-btn { background: rgba(37, 211, 102, 0.15); color: #25d366; border-color: rgba(37,211,102,0.3); }
.whatsapp-card:hover .social-follow-btn { background: #25d366; color: #fff; }

.facebook-card { border-color: rgba(24, 119, 242, 0.25); }
.facebook-card:hover { box-shadow: 0 20px 60px rgba(24, 119, 242, 0.3); }
.facebook-card .social-card-bg { background: radial-gradient(circle, #1877f2 0%, transparent 70%); }
.facebook-card .social-card-icon { background: linear-gradient(135deg, #1877f2, #166fe5); }
.facebook-card .social-follow-btn { background: rgba(24, 119, 242, 0.15); color: #60a5fa; border-color: rgba(24,119,242,0.3); }
.facebook-card:hover .social-follow-btn { background: #1877f2; color: #fff; }

.youtube-card { border-color: rgba(255, 0, 0, 0.25); }
.youtube-card:hover { box-shadow: 0 20px 60px rgba(255, 0, 0, 0.3); }
.youtube-card .social-card-bg { background: radial-gradient(circle, #ff0000 0%, transparent 70%); }
.youtube-card .social-card-icon { background: linear-gradient(135deg, #ff0000, #cc0000); }
.youtube-card .social-follow-btn { background: rgba(255, 0, 0, 0.15); color: #ff6b6b; border-color: rgba(255,0,0,0.3); }
.youtube-card:hover .social-follow-btn { background: #ff0000; color: #fff; }

.linkedin-card { border-color: rgba(10, 102, 194, 0.25); }
.linkedin-card:hover { box-shadow: 0 20px 60px rgba(10, 102, 194, 0.3); }
.linkedin-card .social-card-bg { background: radial-gradient(circle, #0a66c2 0%, transparent 70%); }
.linkedin-card .social-card-icon { background: linear-gradient(135deg, #0a66c2, #004182); }
.linkedin-card .social-follow-btn { background: rgba(10, 102, 194, 0.15); color: #60a5fa; border-color: rgba(10,102,194,0.3); }
.linkedin-card:hover .social-follow-btn { background: #0a66c2; color: #fff; }

.instagram-card { border-color: rgba(225, 48, 108, 0.25); }
.instagram-card:hover { box-shadow: 0 20px 60px rgba(225, 48, 108, 0.35); }
.instagram-card .social-card-bg { background: radial-gradient(circle, #e1306c 0%, transparent 70%); }
.instagram-card .social-card-icon { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.instagram-card .social-follow-btn { background: rgba(225, 48, 108, 0.15); color: #f472b6; border-color: rgba(225,48,108,0.3); }
.instagram-card:hover .social-follow-btn { background: linear-gradient(135deg, #f09433, #cc2366); color: #fff; }

/* Social Card Icon */
.social-card-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                box-shadow 0.3s ease;
    position: relative;
    z-index: 1;
}

.social-card:hover .social-card-icon {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.social-card-icon i {
    color: #fff;
    font-size: 1.8rem;
}

/* Social Card Content */
.social-card-content {
    position: relative;
    z-index: 1;
}

.social-card-content h3 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.social-card-content p {
    color: rgba(255,255,255,0.6);
    font-size: 0.82rem;
    line-height: 1.5;
    margin-bottom: 18px;
}

/* Follow Button */
.social-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    border: 1px solid;
    transition: all 0.3s ease;
}

/* Floating particles on cards */
.social-card-particles {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.social-card-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    animation: particleFloat 4s infinite;
    opacity: 0;
}

.social-card:hover .social-card-particles span {
    opacity: 1;
}

.social-card-particles span:nth-child(1) { left: 20%; top: 80%; animation-delay: 0s; }
.social-card-particles span:nth-child(2) { left: 60%; top: 70%; animation-delay: 0.7s; }
.social-card-particles span:nth-child(3) { left: 80%; top: 85%; animation-delay: 1.4s; }

@keyframes particleFloat {
    0% { transform: translateY(0) scale(1); opacity: 0.5; }
    100% { transform: translateY(-80px) scale(0); opacity: 0; }
}

/* Pulse animation on icon hover */
@keyframes iconPulse {
    0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.3); }
    70% { box-shadow: 0 0 0 12px rgba(255,255,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

.social-card:hover .social-card-icon {
    animation: iconPulse 1.5s ease infinite;
}

/* Responsive - Social Cards */
@media (max-width: 1200px) {
    .social-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .instagram-card {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .social-media-section {
        padding: 60px 16px;
    }
    .social-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .social-card {
        padding: 24px 16px 20px;
    }
    .social-media-header {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .social-cards-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }
}

/* ============================================
   ENHANCED EXISTING ELEMENTS
   ============================================ */

/* Animated gradient border on about section cards */
.card {
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, #2563eb, #3b82f6, #60a5fa);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.card:hover::before {
    transform: scaleX(1);
}

/* Enhanced btn-primary base */
.btn-primary {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: #fff !important;
    border: none;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.35);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    padding: 0.85rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8, #2563eb) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5) !important;
    background-color: unset !important;
}

/* ============================================
   RESPONSIVE - GENERAL
   ============================================ */
@media (max-width: 992px) {
    .about-section .about-grid {
        grid-template-columns: 1fr !important;
    }
    .about-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .contact-info-section {
        padding: 60px 16px;
    }
    .contact-info-header h2 {
        font-size: 1.8rem;
    }
}

