*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

/* Basic Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #fff;
    color: #333;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

/* Header */
header {
    position: relative;
    color: #fff;
    padding-top: 10px;
    padding-bottom: 5px;
    z-index: 3;
    transition: background 0.3s, box-shadow 0.3s;
}

header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    color: #1b5e20;
    box-shadow: 0 2px 12px rgba(30,60,180,0.08);
    transition: background 0.3s, box-shadow 0.3s;
    animation: stickyFadeIn 0.3s;
}
.header-container{
    margin-left: 50px;
    margin-right: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@keyframes stickyFadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

header.sticky .logo,
header.sticky .logo * {
    color: #1b5e20 !important;
}

header.sticky a {
    color: #1b5e20 !important;
}

header.sticky a::after {
    background-color: #1b5e20;
}

header.sticky .menu-icon .bar {
    background-color: #1b5e20;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

header .container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
}

header a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: bold;
    position: relative;
    display: block;
    padding: 0 20px 5px;
    transition: color 0.3s ease, transform 0.3s ease;
}

header a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    transition: width 0.3s ease-in-out;
}

header ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
}

header li {
    display: inline;
}

header nav {
    /* Floats are no longer needed */
}

header .logo {
    margin: 0;
}

/* Navigation Link Animation */
header a:hover {
    transform: scale(1.15);
    color: #ccc;
}

header .active a, header a:active {
    color: #ccc;
}

header a:hover::after,
header .active a::after {
    width: 80%;
}

/* Hero Section */
main {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-text {
    color: #fff;
    font-size: 4rem;
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    animation: fadeInSlideUp 1.5s 0.5s ease-out forwards;
    opacity: 0;
    margin-bottom: 20px;
}

@keyframes fadeInSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
.menu-icon {
    display: none;
    cursor: pointer;
}

.menu-icon .bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
    transition: 0.4s;
}

/* Animate hamburger to X */
.menu-icon.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.menu-icon.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-icon.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

@media (max-width: 768px) {
    .nav-container {
        position: static;
    }

    header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 90%;
        padding: 15px 0;
    }

    .menu-icon {
        display: block;
        z-index: 1001;
    }

    header nav {
        margin-top: 0;
    }

    header nav ul {
        position: fixed;
        top: 0;
        left: 0;
        width: 70%;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 20px 0;
        z-index: 1000;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
    }

    header nav ul.show {
        transform: translateX(0);
    }

    header nav ul a {
        color: #1b5e20 !important;
        font-weight: bold !important;
    }

    header nav ul a:hover {
        color: #03A6A1 !important;
        font-weight: bold !important;
    }

    header li {
        float: none;
        padding: 15px 0;
    }

    .hero-text {
        font-size: 2.5rem;
    }

    main {
        padding-top: 100px;
    }
}

/* Key Solutions Section */
.key-solutions {
    padding: 80px 0;
    background-color: white;
    text-align: center;
    
}

.key-solutions h2 {
    font-size: 3rem;
    color: #1b5e20;
    margin-bottom: 20px;
    animation: pulse 2.5s infinite ease-in-out;
}

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

.key-solutions .section-intro {
    max-width: 800px;
    margin: 0 auto 50px auto;
    color: #000;
    line-height: 1.6;
    font-weight: bold;
    font-size: 22px;
}

.solutions-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    
}

.solution-card {
    background-color: #1b5e20;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    flex-basis: 100%; /* Mobile First Default */
    min-width: 231px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out, box-shadow 0.3s ease;
    text-align: center;
}

.solution-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays */
.solution-card:nth-child(1) { transition-delay: 0s; }
.solution-card:nth-child(2) { transition-delay: 0.1s; }
.solution-card:nth-child(3) { transition-delay: 0.2s; }
.solution-card:nth-child(4) { transition-delay: 0.3s; }

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.solution-card .text-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
}

.solution-card i, .solution-card .text-content {
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
    opacity: 0;
    transform: translateY(20px);
}

.solution-card.visible i, .solution-card.visible .text-content {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays for card content */
.solution-card.visible .text-content { transition-delay: 0.2s; }

.solution-card i {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 20px;
}

.solution-card h3 {
    font-size: 20px; /* Same as navlink */
    color: #1b5e20;
    margin-bottom: 5px;
    font-weight: bold;
    text-align: center;
}

.solution-card h3 + h3 {
    margin-top: 0;
}

.solution-card p {
    font-size:18px;
    font-weight: 600;
    color: black;
    line-height: 1.2;
    text-align: center;
}

/* Responsive adjustments for Key Solutions */
@media (max-width: 768px) {
    .key-solutions h2 {
        font-size: 2rem;
    }
    
    .solutions-container {
        flex-direction: column;
        align-items: center;
    }
}

/* Desktop layout for 4 cards */
@media (min-width: 1200px) {
    .solutions-container {
        gap: 20px;
    }
    .solution-card {
        flex-basis: 23%;
    }
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.features-section h2 {
    font-size: 2.5rem;
    color: #1b5e20;
    margin-bottom: 50px;
}

.features-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    perspective: 1000px;
}

.feature-card {
    background-color: transparent;
    width: 250px;
    height: 250px;
    border: none;
    flex-shrink: 0;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-radius: 10px;
}

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

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-radius: 10px;
}

.card-front {
    background-color: white;
    color: #1b5e20;
}

.card-front i {
    font-size: 3rem;
    margin-bottom: 20px;
}

.card-front h3 {
    font-size: 18px; /* Same as navlink */
    color: #1b5e20;
    font-weight: bold;
}

.card-back {
    background-color: #1b5e20;
    color: white;
    transform: rotateY(180deg);
}

.card-back p {
    font-size: 1rem;
    line-height: 1.5;
}

/* Responsive adjustments for Features Section */
@media (max-width: 768px) {
    .features-section h2 {
        font-size: 2rem;
    }
}

/* Faculty Slider Styles */
.faculty-section {
    padding: 60px 0 40px 0;
    background: white;
    text-align: center;
}
.faculty-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin: 40px auto 0 auto;
    width: 100%;
    max-width: 100%;
    background: none;
    box-shadow: none;
    padding: 0 20px;
}
.faculty-profile-slide {
    background: linear-gradient(135deg, #1b5e20 0%, #03A6A1 100%);
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(60,72,100,0.13), 0 2px 8px rgba(60,72,100,0.10);
    width: 100%;
    max-width: 800px;
    padding: 32px 24px 24px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 280px;
    position: relative;
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.faculty-profile-slide.visible {
    opacity: 1;
    transform: translateX(0);
}
.faculty-photo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 18px;
}
.faculty-photo {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    border: 2.5px solid #5c6bc0;
    box-shadow: 0 2px 16px rgba(92,107,192,0.13);
    background: #fff;
}
.faculty-profile-slide h4 {
    font-size: 1rem;
    color: white;
    margin-bottom: 4px;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-weight: 700;
}
.faculty-profile-slide #faculty-info {
    color: white;
    font-size: 1.3rem;
    font-family:  Arial, sans-serif;
}
.faculty-nav-btn {
    background: #fff;
    color: #5c6bc0;
    border: 1.5px solid #e3e9ff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 1px 4px rgba(92,107,192,0.08);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    outline: none;
    position: static;
}
.faculty-nav-btn:hover {
    background: #5c6bc0;
    color: #fff;
}
@media (max-width: 600px) {
    .faculty-profile-slide {
        width: 90%;
        max-width: 90%;
        padding: 20px 15px 16px 15px;
    }
    .faculty-slider {
        gap: 12px;
        max-width: 100%;
        padding: 0 10px;
    }
}
/* Remove old simple card styles */
.faculty-card-simple { display: none !important; }

/* Faculty Profile Page Styles */
.faculty-profile-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(120deg, #e3e9ff 0%, #f8fafc 100%);
}

.faculty-profile-card {
    background: rgba(255,255,255,0.38);
    border-radius: 28px;
    box-shadow: 0 8px 32px rgba(26,35,126,0.13), 0 2px 8px rgba(26,35,126,0.10);
    padding: 48px 36px 36px 36px;
    width: 100%;
    max-width: 420px;
    text-align: center;
    backdrop-filter: blur(14px);
    border: 1.5px solid rgba(30, 60, 180, 0.13);
    position: relative;
    overflow: hidden;
}

.faculty-profile-photo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
}

.faculty-profile-photo {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    border: 2.5px solid #5c6bc0;
    box-shadow: 0 2px 16px rgba(92,107,192,0.13);
    background: #fff;
}

.faculty-profile-name {
    font-size: 2rem;
    color: #1a237e;
    font-family: 'Segoe UI', 'Poppins', Arial, sans-serif;
    font-weight: 700;
    margin-bottom: 6px;
}

.faculty-profile-title {
    color: #3949ab;
    font-weight: 600;
    margin-bottom: 18px;
    font-size: 1.15rem;
    font-family: 'Segoe UI', 'Poppins', Arial, sans-serif;
}

.faculty-profile-bio {
    color: #444;
    font-size: 1.08rem;
    margin-bottom: 22px;
    font-family: 'Segoe UI', 'Poppins', Arial, sans-serif;
}

.faculty-profile-contact {
    margin-bottom: 24px;
}

.faculty-profile-email {
    color: #5c6bc0;
    font-size: 1.08rem;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.faculty-profile-email:hover {
    color: #1a237e;
    text-decoration: underline;
}

.faculty-profile-back {
    display: inline-block;
    margin-top: 10px;
    padding: 9px 24px;
    background: linear-gradient(90deg, #5c6bc0 0%, #1a237e 100%);
    color: #fff;
    border: none;
    border-radius: 22px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(92,107,192,0.10);
    transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
    cursor: pointer;
}

.faculty-profile-back:hover {
    background: linear-gradient(90deg, #1a237e 0%, #5c6bc0 100%);
    box-shadow: 0 4px 16px rgba(92,107,192,0.18);
    transform: translateY(-2px) scale(1.04);
}

.faculty-card-modern {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 6px 32px rgba(60,72,100,0.10);
    max-width: 340px;
    margin: 32px auto 0 auto;
    padding: 32px 24px 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faculty-photo-modern {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 18px;
    border: 3px solid #5c6bc0;
    box-shadow: 0 2px 8px rgba(92,107,192,0.10);
    background: #fff;
}

.faculty-photo-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.faculty-info-modern h3 {
    font-size: 1.3rem;
    color: #1a237e;
    margin-bottom: 4px;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-weight: 700;
}

.faculty-title-modern {
    color: #3949ab;
    font-weight: 500;
    margin-bottom: 12px;
    font-size: 1.05rem;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.faculty-bio-modern {
    color: #555;
    font-size: 0.98rem;
    margin-bottom: 18px;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.faculty-profile-btn-modern {
    display: inline-block;
    padding: 10px 28px;
    background: #5c6bc0;
    color: #fff;
    border: none;
    border-radius: 22px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(92,107,192,0.10);
    transition: background 0.2s;
    cursor: pointer;
}

.faculty-profile-btn-modern:hover {
    background: #1a237e;
}

@media (max-width: 600px) {
    .faculty-card-modern {
        max-width: 96vw;
        padding: 20px 6vw 18px 6vw;
    }
}

/* About Us Page Styles */
/* .about-section, .collaborations-section, .why-choose-section,
.mission-card, .services-card, .collaboration-card, .feature-item {
    opacity: 1 !important;
    transform: none !important;
} */
.about-section,
.collaborations-section,
.why-choose-section {
    padding: 80px 0;
    background: #fff;
    margin: 20px 0;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.07);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-intro {
    text-align: center;
    margin-bottom: 60px;
}

.about-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #222;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title-animate {
    color: #1b5e20;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.23, 1, 0.32, 1), transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
    animation: pulse 2.5s infinite ease-in-out;
}
.section-title-animate.visible {
    opacity: 1;
    transform: translateY(0);
}
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.about-mission, .about-services {
    margin: 40px 0;
}

.mission-card, .services-card {
    background: #1b5e20;
    color: #fff;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.10);
    transition: transform 0.3s, box-shadow 0.3s;
    opacity: 0;
    transform: translateY(30px);
}
.mission-card.visible, .services-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.mission-card:hover, .services-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}
.mission-card i, .services-card i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff;
}
.mission-card h3, .services-card h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
}
.mission-card p, .services-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #fff;
}

.collaborations-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.collaboration-card {
    background: #1b5e20;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.10);
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(30px);
    color: #fff;
}
.collaboration-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.collaboration-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}
.collaboration-card i {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 20px;
}
.collaboration-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}
.collaboration-card p {
    color: #e0e6f6;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.feature-item {
    background: #03A6A1;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    color: #fff;
}
.feature-item.visible {
    opacity: 1;
    transform: translateY(0);
}
.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}
.feature-item i {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
}
.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #fff;
}
.feature-item p {
    color: #e0e6f6;
    line-height: 1.6;
}

/* Animation delays for staggered effects */
.collaboration-card:nth-child(1) { transition-delay: 0s; }
.collaboration-card:nth-child(2) { transition-delay: 0.1s; }
.collaboration-card:nth-child(3) { transition-delay: 0.2s; }
.feature-item:nth-child(1) { transition-delay: 0s; }
.feature-item:nth-child(2) { transition-delay: 0.1s; }
.feature-item:nth-child(3) { transition-delay: 0.2s; }
.feature-item:nth-child(4) { transition-delay: 0.3s; }
.feature-item:nth-child(5) { transition-delay: 0.4s; }

@media (max-width: 768px) {
    .about-section, .collaborations-section, .why-choose-section {
        padding: 40px 0;
    }
    .about-description {
        font-size: 1rem;
        padding: 0 15px;
    }
    .mission-card, .services-card {
        padding: 30px 20px;
        margin: 0 15px;
    }
    .mission-card h3, .services-card h3 {
        font-size: 1.5rem;
    }
    .collaborations-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .collaboration-card, .feature-item {
        padding: 25px 20px;
    }
}

@media (min-width: 1200px) {
    .collaborations-container {
        grid-template-columns: repeat(3, 1fr);
    }
    .features-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* About Us Page Images */
.about-hero-img-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}
.about-hero-img {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(35,62,145,0.10);
    object-fit: cover;
}
.about-section-img {
    display: block !important;
    max-width: 550px;
    width: 100%;
    height: 380px;
    margin: 0 auto 18px auto;
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(35,62,145,0.08);
    object-fit: cover;
    opacity: 1 !important;
    visibility: visible !important;
}

.about-collab-section-img{
    display: block !important;
    max-width: 350px;
    width: 100%;
    height: 220px;
    margin: 0 auto 18px auto;
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(35,62,145,0.08);
    object-fit: cover;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Additional styling for about solution cards to ensure images are visible */
.about-solution-card img {
    display: block !important;
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative !important;
    z-index: 1 !important;
}

.about-collaboration-card img {
    display: block !important;
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative !important;
    z-index: 1 !important;
}

/* Fallback styles for all images in about page */
.about-key-solutions img,
.about-collaborations-section img {
    display: block !important;
    max-width: 100% !important;
    height: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative !important;
    z-index: 1 !important;
}

/* Additional debugging and positioning for about page images */
.about-solution-card {
    position: relative;
    overflow: visible !important;
}

.about-solution-card img {
    position: relative !important;
    z-index: 10 !important;
    background-color: #1b5e20; /* Light background to show image boundaries */
}

.about-collaboration-card {
    position: relative;
    overflow: visible !important;
}

.about-collaboration-card img {
    position: relative !important;
    z-index: 10 !important;
    background-color: #1b5e20; /* Light background to show image boundaries */
}

/* Ensure images load properly */
img[src*="eco%20friendly%20chemical.jpg"],
img[src*="lab%20scale.jpg"],
img[src*="process%20design.jpg"],
img[src*="sustainability.jpg"],
img[src*="GMP_manifacturing.jpeg"] {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    max-width: 100% !important;
    height: auto !important;
}

@media (max-width: 768px) {
    .about-hero-img {
        max-width: 95vw;
    }
    .about-section-img {
        max-width: 95vw;
        height: 140px;
    }
}

/* About Page Styles - Mirroring Home Page with about- prefix */
.about-hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-hero-text {
    color: #fff;
    font-size: 4rem;
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    animation: fadeInSlideUp 1.5s 0.5s ease-out forwards;
    opacity: 0;
    margin-bottom: 20px;
}

.about-key-solutions {
    padding-bottom: 80px ;
    background-color: white;
    text-align: center;
}

.about-key-solutions h2 {
    font-size: 3rem;
    color: #1b5e20;
    margin-bottom: 15px;
    animation: pulse 2.5s infinite ease-in-out;
}

.about-section-intro {
    font-size: 22px;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
    text-align: left;
    
    /* margin-left: auto; */
    /* margin-right: auto; */
}

.about-collab-section-intro {
    font-size: 22px;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
} 



.about-solutions-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.about-solution-card {
    background: #1b5e20;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    overflow: hidden;
}

.about-solution-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-solution-card:nth-child(1) { transition-delay: 0s; }
.about-solution-card:nth-child(2) { transition-delay: 0.1s; }

.about-solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-text-content {
    margin-top: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.about-solution-card.visible .about-text-content {
    opacity: 1;
    transform: translateY(0);
}

.about-solution-card.visible .about-text-content { transition-delay: 0.2s; }

.about-solution-card i {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 20px;
    display: block;
}

.about-solution-card h3 {
    font-size: 25px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: bold;
}

.about-solution-card p {
    color: #fff;
    line-height: 1.6;
    font-size: large;
    font-weight: 600;
}

.about-collaborations-section {
    padding-bottom: 80px ;
    background-color: #fff;
    text-align: center;
}

.about-collaborations-section h2 {
    font-size: 3rem;
    color: #1b5e20;
    margin-bottom: 20px;
    animation: pulse 2.5s infinite ease-in-out;
}

.about-collaborations-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.about-collaboration-card {
    background: #1b5e20;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.about-collaboration-card.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.about-collaboration-card i {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 15px;
}

.about-collaboration-card h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 10px;
}

.about-collaboration-card p {
    color: #fff;
    font-size: 1.3rem;
}

.about-why-choose-section {
    padding-bottom: 80px ;
    background-color: white;
    text-align: center;
}

.about-why-choose-section h2 {
    font-size: 3rem;
    color: #1b5e20;
    margin-bottom: 20px;
    animation: pulse 2.5s infinite ease-in-out;
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
    justify-items: center;
}

.about-feature-item {
    background: #1b5e20;
    padding: 30px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    color: #fff;
}
.about-feature-item.visible {
    opacity: 1;
    transform: translateY(0);
}
.about-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.about-feature-item i {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 15px;
}
.about-feature-item h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 10px;
}
.about-feature-item p {
    color: #fff;
    font-size: 1.2rem;
}

.about-collaboration-card:nth-child(1) { transition-delay: 0s; }
.about-collaboration-card:nth-child(2) { transition-delay: 0.1s; }
.about-collaboration-card:nth-child(3) { transition-delay: 0.2s; }

.about-feature-item:nth-child(1) { transition-delay: 0s; }
.about-feature-item:nth-child(2) { transition-delay: 0.1s; }
.about-feature-item:nth-child(3) { transition-delay: 0.2s; }
.about-feature-item:nth-child(4) { transition-delay: 0.3s; }
.about-feature-item:nth-child(5) { transition-delay: 0.4s; }

/* About Page Responsive Design */
@media (max-width: 768px) {
    .about-key-solutions, .about-collaborations-section, .about-why-choose-section {
        padding: 40px 0;
    }

    .about-section-intro {
        font-size: 1.3rem;
        padding: 0 20px;
    }

    .about-solution-card {
        margin: 0 20px;
    }

    .about-solution-card h3 {
        font-size: 1.3rem;
    }

    .about-collaborations-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-features-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }

    .about-collaboration-card, .about-feature-item {
        margin: 0 20px;
    }

    .about-hero-text {
        font-size: 2.5rem;
    }
}

@media (min-width: 1200px) {
    .about-collaborations-container {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1200px;
        margin: 50px auto 0;
    }

    .about-features-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 900px;
        margin: 50px auto 0;
        justify-items: center;
    }
}

/* Logo icon sizing and alignment */
.crescon-icon-img {
    height: 2.2em;
    width: auto;
    vertical-align: middle;
    margin-right: 0.5em;
    display: inline-block;
    object-fit: contain;
    max-height: 48px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 2.2rem;
    font-weight: bold;
    gap: 0.3em;
}

/* Contact Page Styles */
.contact-hero {
    height: 100vh;
    min-height: unset;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: transparent;
    text-align: center;
    padding-top: 0;
}
.contact-hero-title {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 0.5em;
    font-weight: bold;
    letter-spacing: 1px;
}
.contact-hero-subtitle {
    font-size: 1.2rem;
    color: #444;
    max-width: 600px;
    margin: 0 auto;
}

.contact-hero-subtitle-below {
    text-align: center;
    font-size: 1.2rem;
    color: #444;
    max-width: 600px;
    margin: 0 auto 40px auto;
    display: block;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.23, 1, 0.32, 1), transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}
.contact-hero-subtitle-below.visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-main-section {
    padding: 60px 0 80px 0;
    background: #fff;
}
.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    justify-content: center;
}
.contact-form-wrapper, .contact-info-wrapper {
    background: #fff;
    border: 1.5px solid #d1e0fa;
    border-radius: 22px;
    box-shadow: 0 8px 32px rgba(35,62,145,0.13), 0 1.5px 8px rgba(35,62,145,0.06);
    padding: 40px 8px 32px 8px;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    transition: box-shadow 0.3s, transform 0.3s;
    position: relative;
    overflow: hidden;
}
.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: -60px; left: -60px;
    width: 160px; height: 160px;
    background: radial-gradient(circle, #b3cfff 0%, transparent 70%);
    opacity: 0.25;
    z-index: 0;
}
.contact-form-wrapper:hover {
    box-shadow: 0 16px 48px rgba(35,62,145,0.18), 0 3px 16px rgba(35,62,145,0.10);
    transform: translateY(-4px) scale(1.015);
}
.contact-form-title {
    color: #1b5e20;
    font-size: 1.7rem;
    margin-bottom: 1.5em;
    font-weight: bold;
    letter-spacing: 0.02em;
    text-align: center;
    z-index: 1;
    position: relative;
}
.contact-form {
    display: block;
}
.contact-form-group {
    position: relative;
    margin-bottom: 2em;
}
.contact-input-icon {
    position: absolute;
    left: 60px;
    top: 50%;
    transform: translateY(-50%);
    color: #1b5e20;
    font-size: 1.7em;
    z-index: 2;
    pointer-events: none;
}
.contact-input {
    width: 75%;
    margin-left: auto;
    margin-right: auto;
    padding: 1.1em 1em 1.1em 4.2em;
    border: 2px solid #1b5e20;
    border-radius: 8px;
    background: #f8faff;
    font-size: 1rem;
    color: #222;
    outline: none;
    transition: border-color 0.2s;
    resize: none;
    box-shadow: 0 1.5px 6px rgba(35,62,145,0.04);
}
.contact-form-group textarea.contact-input {
    width: 75%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 4.2em;
    padding-top: 1.1em;
    padding-bottom: 1.1em;
}
.contact-submit-btn {
    background: #1b5e20;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.95em 2.5em;
    font-size: 1.15rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(35,62,145,0.10);
    display: flex;
    align-items: center;
    gap: 0.7em;
    margin: 0 auto;
}
.contact-submit-btn:hover {
    background: #1b5e20;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(3,166,161,0.3);
    color: #fff;
    text-decoration: none;
}
.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5em 0;
}
.contact-info-list li {
    font-size: 1.05rem;
    color: #333;
    margin-bottom: 1em;
    display: flex;
    align-items: center;
    gap: 0.7em;
}
.contact-info-list i {
    color: #1b5e20;
    font-size: 1.2em;
}
.contact-socials {
    display: flex;
    gap: 1.2em;
    margin-top: 0.5em;
}
.contact-social-link {
    color: #1b5e20;
    font-size: 1.5em;
    transition: color 0.2s, transform 0.2s;
}
.contact-social-link:hover {
    color: #15306b;
    transform: scale(1.15);
}

/* Animations for contact page */
.contact-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.contact-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    .contact-form-wrapper, .contact-info-wrapper {
        max-width: 100%;
        width: 100%;
    }
}
@media (max-width: 600px) {
    .contact-hero-title {
        font-size: 2rem;
    }
    .contact-form-wrapper, .contact-info-wrapper {
        padding: 24px 8px;
    }
    .contact-main-section {
        padding: 30px 0 40px 0;
    }
}

.contact-subtitle-section {
    background: white;
    padding: 40px 0 0 0;
    min-height: 0;
    width: 100%;
    position: relative;
    z-index: 2;
}

.site-footer {
    background: #1b5e20;
    color: #fff;
    padding: 40px 0 0 0;
    text-align: left;
    font-family:  Arial, sans-serif;
    position: relative;
    z-index: 2;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-col {
    flex: 1 1 220px;
    min-width: 200px;
    margin-bottom: 30px;
}

.footer-col h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 18px;
    font-weight: 600;
    letter-spacing: 1px;
}

.footer-col.about {
    text-align: left;
    margin-left: -24px;
}

.footer-col.about p {
    color: white;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

.footer-col.links {
    text-align: center !important;
    margin-left: 0 !important;
    font-size: 1.2rem;
}

.footer-col.links ul,
.footer-col.contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col.links ul li,
.footer-col.contact ul li {
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: #fff;
}

.footer-col.links ul li a {
    text-decoration: none;
    font-size: 1.1rem;
    color: #fff;
}

.footer-col.links ul li a:hover {
    color: #FFD600;
}

.footer-col.contact i {
    margin-right: 8px;
    color: #e3e9ff;
    font-size: 1.1em;
    vertical-align: middle;
}

.footer-col.follow {
    margin-left: 56px;
}

.footer-col.follow .footer-socials {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.footer-col.follow a {
    color: #fff;
    font-size: 1.5em;
    transition: color 0.2s;
}

.footer-col.follow a:hover {
    color: #FFD600;
}

.footer-bottom {
    border-top: 1px solid #e3e9ff33;
    text-align: center;
    color: #e3e9ff;
    font-size: 1.2rem;
    padding: 18px 0 10px 0;
    margin-top: 10px;
    background: #1b5e20;
}

@media (max-width: 900px) {
    .footer-columns {
        flex-direction: column;
        align-items: center;
        padding: 0 10vw;
        gap: 24px;
    }
    .footer-col,
    .footer-col.about,
    .footer-col.links,
    .footer-col.contact,
    .footer-col.follow {
        text-align: center !important;
        margin-left: 0 !important;
    }
    .footer-col ul {
        padding-left: 0;
    }
    .footer-col .footer-socials {
        justify-content: center;
    }
    .footer-bottom {
        text-align: center;
    }
}

@media (max-width: 600px) {
    .footer-columns {
        padding: 0 4vw;
        display: inline;
        
    }
    .footer-col h3 {
        font-size: 1.2rem;
    }
    .footer-col.about p,
    .footer-col.links ul li,
    .footer-col.contact ul li {
        font-size: 1rem;
    }
    .footer-bottom {
        font-size: 1.2rem;
    }
}

.footer-col,
.footer-col ul li,
.footer-col a,
.footer-col.about p {
    font-weight: bold;
}

.footer-col.contact ul li a {
    color: #fff;
    text-decoration: none;
}

.site-footer i,
.site-footer .fa,
.site-footer .fab {
    color: #FFF8E1 !important;
}

/* --- Services Page Styles --- */
.services-hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.services-hero-title {
    color: #fff;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 18px;
    letter-spacing: 1px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}
.services-hero-subtitle {
    color: #e3e9ff;
    font-size: 1.3rem;
    font-weight: 400;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    text-align: center;
    animation: fadeInSlideUp 1.5s 0.8s ease-out forwards;
    opacity: 0;
}
.services-list-section {
    background: white;
    padding: 60px 0 60px 0;
    position: relative;
    z-index: 2;
}
.service-feature-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 48px 0;
}
.service-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    position: relative;
    background: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0 0 0 0;
    min-height: 100px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.service-feature-item.visible {
    opacity: 1;
    transform: translateY(0);
}
.service-feature-accent {
    width: 10px;
    min-width: 10px;
    height: 80px;
    background: linear-gradient(180deg, #FFD600 60%, #fffbe6 100%);
    border-radius: 8px;
    margin-right: 18px;
    margin-top: 8px;
    box-shadow: 0 0 12px #FFD60055;
    transition: height 0.3s, box-shadow 0.3s;
    position: relative;
    z-index: 1;
}
.service-feature-item:hover .service-feature-accent {
    height: 110px;
    box-shadow: 0 0 32px #FFD60099, 0 0 0 #FFD600;
}
.service-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 64px;
    width: 64px;
    background: #1b5e20;
    border-radius: 50%;
    box-shadow: 0 4px 18px #FFD60033, 0 2px 8px rgba(26,60,138,0.10);
    margin-left: -32px;
    margin-right: 18px;
    margin-top: 0;
    position: relative;
    z-index: 2;
    transition: transform 0.3s, box-shadow 0.3s;
}
.service-feature-item:hover .service-feature-icon {
    transform: scale(1.12) translateY(-4px);
    box-shadow: 0 8px 32px #FFD60099, 0 2px 16px rgba(26,60,138,0.13);
}
.service-feature-icon i {
    font-size: 2rem;
    color: #FFD600 !important;
}
.service-feature-content {
    text-align: left;
    margin-top: 0;
    flex: 1 1 320px;
    padding-top: 4px;
}
.service-feature-content h3 {
    font-size: 1rem;
    color: #1b5e20;
    font-weight: bold;
    margin-bottom: 8px;
    margin-top: 0;
}
.service-feature-content p {
    color: #333;
    font-size: 1.3rem;
    line-height: 1.7;
    font-weight: 600;
    margin: 0;
}
@media (max-width: 900px) {
    .service-feature-item {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        min-height: 0;
    }
    .service-feature-accent {
        width: 60px;
        min-width: 60px;
        height: 10px;
        margin: 0 0 18px 0;
        border-radius: 8px;
        background: linear-gradient(90deg, #FFD600 60%, #fffbe6 100%);
        box-shadow: 0 0 12px #FFD60055;
        transition: width 0.3s, box-shadow 0.3s;
    }
    .service-feature-item:hover .service-feature-accent {
        width: 110px;
        box-shadow: 0 0 32px #FFD60099, 0 0 0 #FFD600;
        height: 10px;
    }
    .service-feature-icon {
        margin: 0 0 12px 0;
        height: 54px;
        width: 54px;
    }
    .service-feature-content {
        text-align: center;
        padding-top: 0;
    }
}
@media (max-width: 600px) {
    .service-feature-icon {
        height: 38px;
        width: 38px;
    }
    .service-feature-icon i {
        font-size: 1.1rem;
    }
    .service-feature-content h3 {
        font-size: 1.5rem;
    }
    .service-feature-content p {
        font-size: 1.3rem;
    }
    .service-feature-content ul li{
        font-size: 1.3rem;
        line-height: 1.4;
    }
}

/* --- Split Section for Services --- */
.service-split-section {
    display: flex;
    align-items: stretch;
    justify-content: center;
    margin: 64px 0 32px 0;
    min-height: 140px;
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(26,60,138,0.07);
    position: relative;
    z-index: 2;
}
.service-split-content {
    flex: 1 1 50%;
    min-width: 0;
    min-height: 140px;
    background: #1b5e20;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 40px;
    text-align: left;
}
.service-split-content h2 {
    font-size: 2.1rem;
    color: white;
    font-weight: bold;
    margin-bottom: 18px;
}
.service-split-content p {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.7;
    margin: 0;
}
@media (max-width: 900px) {
    .service-split-section {
        flex-direction: column;
        min-height: 0;
        margin: 36px 0 18px 0;
        box-shadow: 0 2px 12px rgba(26,60,138,0.07);
    }
    .service-split-img, .service-split-content {
        flex: 1 1 100%;
        min-width: 0;
        width: 100%;
    }
    .service-split-content {
        padding: 32px 8vw;
        text-align: center;
    }
    .service-split-content h2 {
        font-size: 1.3rem;
    }
    .service-split-content p {
        font-size: 1.3rem;
    }
}
@media (max-width: 600px) {
    .service-split-content {
        padding: 18px 2vw;
    }
    .service-split-content h2 {
        font-size: 1.05rem;
    }
    .service-split-content p {
        font-size: 1.3rem;
    }
}

/* Industries We Serve Section */
.industries-serve-section {
    padding: 60px 0 40px 0;
    background: white !important;
    text-align: center;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}
.industries-serve-section h2 {
    font-size: 3rem;
    color: #1b5e20;
    margin-bottom: 32px;
    font-weight: bold;
    letter-spacing: 1px;
}
.industries-cards-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 16px;
    padding: 0 20px;
    max-width: 100%;
    overflow-x: hidden;
}
.industries-cards-row .industry-card-img {
    /* no scroll-snap-align */
}
.industry-card-img {
    flex: 0 1 240px;
    min-width: 200px;
    max-width: 200px;
    width: 100%;
    height: 320px;
    background-size: cover;
    background-position: center;
    border-radius: 0;
    box-shadow: 0 4px 18px rgba(30,60,180,0.10);
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}
.industries-cards-row .industry-card-img:first-child {
    border-top-left-radius: 18px;
    border-bottom-left-radius: 18px;
}
.industries-cards-row .industry-card-img:last-child {
    border-top-right-radius: 18px;
    border-bottom-right-radius: 18px;
}
.industry-label {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    background: rgba(26, 138, 48, 0.85);
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 16px 8px 12px 8px;
    border-radius: 12px 12px 0 0;
    margin: 18px 0 18px 10px;
    box-shadow: 0 2px 8px rgba(30,60,180,0.10);
    text-align: center;
    max-height: 80%;
    align-self: flex-end;
}
@media (max-width: 900px) {
    .industries-cards-row {
        gap: 12px;
        padding: 0 15px;
        margin: 0;
    }
    .industry-card-img {
        flex: 0 1 180px;
        min-width: 150px;
        max-width: 200px;
        height: 260px;
    }
    .industry-label {
        font-size: 0.92rem;
        padding: 10px 5px 8px 5px;
        margin: 10px 0 10px 5px;
    }
}
@media (max-width: 600px) {
    .industries-serve-section h2,
    .faculty-section h2 {
        font-size: 2rem;
    }
    .industries-cards-row {
        gap: 6px;
        padding: 0 5px;
        margin: 0;
        justify-content: space-between;
    }
    .industry-card-img {
        flex: 0 1 18%;
        min-width: 60px;
        max-width: 80px;
        height: 120px;
    }
    .industry-label {
        font-size: 0.7rem;
        padding: 4px 1px 2px 1px;
        margin: 2px 0 2px 2px;
        max-height: 70%;
    }
}

/* Our Process Section */
.our-process-section {
    padding: 80px 0 60px 0;
    background: white !important;
    position: relative;
    overflow: hidden;
}

.our-process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%231a3c8a" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.process-flow-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.process-step {
    flex: 0 1 300px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(40px);
    text-align: center;
}

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

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

.process-number {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: #1b5e20;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.3rem;
    box-shadow: 0 8px 25px rgba(26, 60, 138, 0.3);
    z-index: 3;
    border: 3px solid #03A6A1;
}

.process-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #1b5e20 0%, #03A6A1 100%);
    border: 2px solid #1b5e20;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 25px auto 20px;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 8px 25px rgba(26, 60, 138, 0.2);
}

.process-step:hover .process-icon {
    background: linear-gradient(135deg, #03A6A1 0%, #00bcd4 100%);
    border-color: #03A6A1;
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(3, 166, 161, 0.3);
}

.process-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #03A6A1, #00bcd4, #03A6A1);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-step:hover .process-icon::before {
    opacity: 1;
}

.process-icon i {
    font-size: 2.5rem;
    color: #fff;
    transition: all 0.3s ease;
}

.process-step:hover .process-icon i {
    transform: scale(1.1);
}

.process-step h3 {
    font-size: 1.7rem;
    color: #1b5e20;
    font-weight: bold;
    margin-bottom: 12px;
}

.process-step p {
    font-size: 1.3rem;
    font-weight: 600;
    color: black;
    line-height: 1.6;
    margin: 0;
}

.process-connector {
    flex: 0 0 40px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s ease;
}

.process-connector.visible {
    opacity: 1;
    transform: scale(1);
}

.connector-line {
    width: 4px;
    height: 60px;
    background: rgba(26, 60, 138, 0.3);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.connector-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #1b5e20 0%, #03A6A1 100%);
    animation: flowAnimation 3s ease-in-out infinite;
    transform: translateY(-100%);
}

.connector-arrow {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 15px solid #1b5e20;
    margin-top: 8px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes flowAnimation {
    0% {
        transform: translateY(-100%);
    }
    50% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(-100%);
    }
}



/* Responsive Design for Process Section */
@media (max-width: 1200px) {
    .process-flow-container {
        gap: 15px;
    }
    
    .process-step {
        flex: 0 1 250px;
        padding: 25px 20px;
    }
    
    .process-connector {
        flex: 0 0 40px;
    }
}

@media (max-width: 900px) {
    .process-flow-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .process-step {
        flex: 0 1 auto;
        width: 100%;
        max-width: 400px;
    }
    
    .process-connector {
        flex: 0 0 40px;
        height: 40px;
        transform: rotate(90deg);
    }
    
    .connector-line {
        height: 30px;
    }
}

@media (max-width: 600px) {
    .our-process-section {
        padding: 60px 0 40px 0;
    }
    
    .process-step {
        padding: 20px 15px;
    }
    
    .process-icon {
        width: 60px;
        height: 60px;
    }
    
    .process-icon i {
        font-size: 1.5rem;
    }
    
    .process-step h3 {
        font-size: 1.3rem;
    }
    
    .process-step p {
        font-size: 1.2rem;
    }
}

/* Animation delays for process steps */
.process-step:nth-child(1) { transition-delay: 0s; }
.process-step:nth-child(3) { transition-delay: 0.1s; }
.process-step:nth-child(5) { transition-delay: 0.2s; }
.process-step:nth-child(7) { transition-delay: 0.3s; }
.process-step:nth-child(9) { transition-delay: 0.4s; }
.process-step:nth-child(11) { transition-delay: 0.5s; }
.process-step:nth-child(13) { transition-delay: 0.6s; }

.process-connector:nth-child(2) { transition-delay: 0.05s; }
.process-connector:nth-child(4) { transition-delay: 0.15s; }
.process-connector:nth-child(6) { transition-delay: 0.25s; }
.process-connector:nth-child(8) { transition-delay: 0.35s; }
.process-connector:nth-child(10) { transition-delay: 0.45s; }
.process-connector:nth-child(12) { transition-delay: 0.55s; }
.process-connector:nth-child(14) { transition-delay: 0.65s; }

a.contact-submit-btn:hover, a.contact-submit-btn:focus {
    background: #1b5e20;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(3,166,161,0.3);
    color: #fff;
    text-decoration: none;
}

/* Sticky Products Button Styles */
.sticky-products-btn {
  position: fixed;
  right: -55px;
  top: 50%;
  left: auto;
  transform: translateY(-50%) rotate(-90deg);
  background-color: #1b5e20;
  color: #fff;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 10px;
  font-size: 1.25rem;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  z-index: 9999;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}
.sticky-products-btn:hover, .sticky-products-btn:focus {
  background-color: #256d2b;
  box-shadow: 0 6px 24px rgba(0,0,0,0.22);
  transform: translateY(-50%) scale(1.05) rotate(-90deg);
}
@media (max-width: 600px) {
  .sticky-products-btn {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    right: -40px;
  }
}

.products-hero {
    text-align: center;
    padding: 120px 0 80px;
    position: relative;
    z-index: 2;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.products-hero-title,
.products-subtitle {
    text-align: center;
}

.products-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

.products-subtitle {
    font-size: 1.2rem;
    color: #e0e0e0;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.products-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.product-showcase {
    margin-bottom: 120px;
}

.product-item {
    display: flex;
    align-items: center;
    margin-bottom: 100px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

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

.product-item:nth-child(even) {
    flex-direction: row-reverse;
}

.product-image-container {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(0deg);
    transition: transform 0.6s ease;
}

.product-image-container:hover {
    transform: perspective(1000px) rotateY(5deg);
}

.product-image {
    width: 100%;
    height: 400px;
    object-fit: contain;
    background: #fff;
    padding: 24px;
    border-radius: 20px;
    transition: transform 0.6s ease;
}

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

.product-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 123, 255, 0.1), rgba(40, 167, 69, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-image-container:hover .product-image-overlay {
    opacity: 1;
}

.product-content {
    flex: 1;
    padding: 0 60px;
}

.product-item:nth-child(even) .product-content {
    padding: 0 60px 0 0;
}

.product-item:nth-child(odd) .product-content {
    padding: 0 0 0 60px;
}

.product-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
}

.product-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #28a745);
    border-radius: 2px;
}

.product-cas {
    font-size: 1.3rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: 25px;
    display: inline-block;
    background: #1b5e20;
    padding: 8px 16px;
    border-radius: 25px;
}

.product-description {
    font-size: 1.3rem;
    font-weight: 550;
    line-height: 1.8;
    color: black;
    margin-bottom: 30px;
}

.product-features {
    list-style: none;
    padding: 0;
}

.product-features li {
    padding: 8px 0;
    color: black;
    position: relative;
    padding-left: 30px;
    font-weight: 500;
    font-size: 1.3rem;
    text-align: left;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 1.3rem;
}

.product-cta {
    margin-top: 30px;
}

.product-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.product-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
    color: white;
    text-decoration: none;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.product-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.product-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #007bff, #28a745);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.product-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.product-card-cas {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.floating-animation {
    animation: float 3s ease-in-out infinite;
}

@media (max-width: 768px) {

    .product-item,
    .product-item:nth-child(even) {
        flex-direction: column;
        text-align: center;
    }

    .product-content {
        padding: 40px 20px 0 !important;
    }

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

    .products-hero-title {
        font-size: 2.5rem;
    }
}

