/* --- ROOT THEME --- */
:root {
    --iat-navy: #070480;
    --iat-orange: #ff5f00;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden;
}

.iat-orange {
    color: var(--iat-orange);
}

.iat-navy {
    color: var(--iat-navy);
}

.fw-800 {
    font-weight: 800;
}

/* --- LARGE BRANDING --- */
.brand-logo {
    width: 90px;
    height: auto;
    transition: var(--transition);
}

.brand-name {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--iat-orange);
    letter-spacing: -1px;
    line-height: 1;
    display: block;
}

.brand-tagline {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* -----------------------SECTION-1 UTILITY AND NAVIGATION------------------------------ */

/* --- NAVIGATION --- */
.nav-link {
    color: var(--iat-navy) !important;
    font-size: 0.95rem;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--iat-orange) !important;
}

@media (min-width: 992px) {
    .iat-mega:hover .mega-menu {
        display: block;
        opacity: 1;
        visibility: visible;
    }

    .mega-menu {
        width: 600px;
        left: -250px;
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        border-top: 5px solid var(--iat-navy);
    }
}

.course-link {
    display: block;
    padding: 10px;
    color: #444;
    text-decoration: none;
    border-radius: 6px;
    transition: var(--transition);
}

.course-link:hover {
    background: #f8f9fa;
    color: var(--iat-orange);
    padding-left: 20px;
}

/* --- BUTTONS --- */
.btn-iat-main {
    background: var(--iat-navy);
    color: white;
    border: none;
    transition: var(--transition);
}

.btn-iat-main:hover {
    background: var(--iat-orange);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 95, 0, 0.3);
}

/* --- MOBILE PARITY --- */
@media (max-width: 768px) {
    .brand-logo {
        width: 60px;
    }

    .brand-name {
        font-size: 1.4rem;
    }

    .mega-menu {
        width: 100% !important;
        left: 0 !important;
        border: 0 !important;
    }
}


/* ENROLL BUTTON */
/* Add a custom class to your button: blink-glow */
.blink-glow {
    animation: glowing 1.5s infinite;
}

@keyframes glowing {
    0% {
        box-shadow: 0 0 5px #030a72;
    }

    50% {
        box-shadow: 0 0 20px #030a72;
    }

    100% {
        box-shadow: 0 0 5px #030a72;
    }
}

/* -----------------------------------COURSES DROP DOWN---------------------------- */
/* --- [MEGA MENU CUSTOM STYLES] --- */
.iat-mega {
    position: static !important;
    /* Required for full-width menu */
}

.mega-menu {
    width: 95vw;
    left: 2.5vw !important;
    right: 2.5vw !important;
    border-top: 4px solid var(--iat-orange) !important;
    border-radius: 0 0 15px 15px !important;
}

.iat-category-title {
    color: var(--iat-orange);
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 8px;
    margin-bottom: 12px;
}

.course-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.course-link {
    color: #444;
    text-decoration: none;
    font-size: 0.95rem;
    padding: 4px 0;
    transition: all 0.2s ease;
    display: block;
}

.course-link:hover {
    color: var(--iat-navy);
    padding-left: 8px;
    font-weight: 600;
}

/* Mobile Adjustments (Desktop UI visibility on Mobile) */
@media (max-width: 991px) {
    .mega-menu {
        width: 100%;
        left: 0 !important;
        position: relative !important;
        box-shadow: none !important;
        max-height: 400px;
        overflow-y: auto;
    }

    .iat-category-title {
        margin-top: 20px;
        font-size: 0.8rem;
    }
}



/* -----------------------SECTION-2 HERO------------------------------ */

/* --- [HERO SPECIFIC] --- */
#hero-section {
    background: #ffffff;
}

#particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    /* Ensure this is above the background but below the text container */
}

#hero-section .container {
    position: relative;
    z-index: 2;
    /* Content must be higher than particles */
}

.badge-custom {
    background: #fff8e6;
    color: #856404;
    border: 1px solid #ffeeba;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* --- [PARTNER CARD] --- */
.partner-card {
    border: 1px solid rgba(7, 4, 128, 0.05);
}

.partner-box:hover {
    border-color: var(--iat-navy);
    background: #f8f9ff;
    transform: scale(1.02);
}

.border-dashed {
    border-style: dashed !important;
    border-color: #dee2e6 !important;
}

/* --- [BUTTONS] --- */
.btn-iat-navy {
    background: var(--iat-navy);
    color: #fff;
    border: none;
}

.btn-iat-navy:hover {
    background: var(--iat-orange);
    color: #fff;
    transform: translateY(-3px);
}

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

.btn-iat-outline:hover {
    background: var(--iat-navy);
    color: #fff;
}

/* --- [MOBILE PARITY] --- */
@media (max-width: 991px) {
    .display-3 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    #hero-section {
        padding-top: 100px;
        text-align: center;
    }

    .partner-card {
        margin-top: 2rem;
    }
}



/* -----------------------SECTION-3 Our Students Placed At------------------------------ */
/* --- [SECTION: TICKER] --- */
.ticker-container {
    padding: 20px 0;
    background: transparent;
    user-select: none;
}

/* Gradient Fade Effects on Sides */
.ticker-container::before,
.ticker-container::after {
    content: "";
    height: 100%;
    width: 150px;
    position: absolute;
    z-index: 2;
    pointer-events: none;
}

.ticker-container::before {
    top: 0;
    left: 0;
    background: linear-gradient(to right, white 0%, transparent 100%);
}

.ticker-container::after {
    top: 0;
    right: 0;
    background: linear-gradient(to left, white 0%, transparent 100%);
}

.ticker-track {
    animation: ticker-scroll 40s linear infinite;
    flex-shrink: 0;
}

/* Pause on Hover for better UX */
.ticker-wrapper:hover .ticker-track {
    animation-play-state: paused;
}

.ticker-item {
    margin: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(0);
    /* Uniform professional look */
    opacity: 1;
    transition: all 0.3s ease;
}

.ticker-item:hover {
    filter: grayscale(0);
    /* Highlight logo on hover */
    opacity: 1;
    transform: scale(1.1);
}

.ticker-item img {
    height: 50px;
    /* Uniform height for all logos */
    width: auto;
    object-fit: contain;
}

/* --- [ANIMATION] --- */
@keyframes ticker-scroll {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

/* --- [MOBILE ADAPTATION] --- */
@media (max-width: 768px) {
    .ticker-item {
        margin: 0 20px;
    }

    .ticker-item img {
        height: 35px;
    }

    .ticker-container::before,
    .ticker-container::after {
        width: 50px;
    }

    .ticker-track {
        animation-duration: 25s;
    }

    /* Faster scroll for small screens */
}



/* -----------------------SECTION-4 Join the Future of Tech------------------------------ */
/* --- [SECTION: STATS] --- */
.iat-navy-text {
    color: var(--iat-navy) !important;
}

.iat-star-color {
    color: #ffc107;
}

.letter-spacing-1 {
    letter-spacing: 1.5px;
}

/* Icon Box Styling */
.stat-icon-box {
    width: 50px;
    height: 50px;
    background: rgba(7, 4, 128, 0.05);
    color: var(--iat-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.5rem;
    transition: var(--transition-smooth);
}

/* Card Hover Effects */
.stat-card {
    border: 1px solid transparent !important;
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: var(--iat-navy) !important;
    box-shadow: 0 1rem 3rem rgba(7, 4, 128, 0.1) !important;
}

.stat-card:hover .stat-icon-box {
    background: var(--iat-navy);
    color: white;
}

/* Mobile Adjustments */
@media (max-width: 767px) {
    #stats-section .display-4 {
        font-size: 2.8rem;
    }

    .stat-card {
        padding: 1.5rem !important;
    }
}


/* -----------------------SECTION-5 WHY IAT TECHNOLOGIES?------------------------------  */
/* --- [WHY CHOOSE US STYLES] --- */
.bg-navy-subtle {
    background-color: var(--navy-light);
}

.feature-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(7, 4, 128, 0.08);
    border-color: var(--iat-navy);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--navy-light);
    color: var(--iat-navy);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    /* Slightly smaller for 12-card grid */
    margin-bottom: 1.2rem;
    flex-shrink: 0;
}

/* DASHED BORDER FOR THE DEMO CARD */
.border-orange-dashed {
    border: 2px dashed var(--iat-orange) !important;
    background-color: rgba(255, 95, 0, 0.02) !important;
}

.feature-card:hover .feature-icon {
    background: var(--iat-navy);
    color: #ffffff;
}

/* Specific styling for the Demo/Highlight card */
.border-orange-dashed {
    border: 2px dashed var(--iat-orange) !important;
}

.bg-orange {
    background: var(--iat-orange) !important;
}

.badge-pill-outline {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 10px;
    border: 1px solid var(--iat-navy);
    color: var(--iat-navy);
    border-radius: 50px;
}

.btn-iat-orange {
    background: var(--iat-orange);
    color: #fff;
    border: none;
    transition: 0.3s ease;
}

.btn-iat-orange:hover {
    background: #e65600;
    color: #fff;
    box-shadow: 0 5px 15px rgba(255, 95, 0, 0.3);
}

/* Reveal Animation Initial State */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* MOBILE RESPONSIVE GRID */
@media (max-width: 576px) {
    .feature-card {
        padding: 1.25rem;
        text-align: center;
        align-items: center;
    }

    .feature-icon {
        margin-inline: auto;
    }
}


/* -----------------------SECTION-6 Explore Our Courses------------------------------ */
/* --- [COURSE SECTION STYLES] --- */
.text-orange {
    color: var(--iat-orange);
}

.btn-iat-navy {
    background-color: var(--iat-navy);
    color: white;
    border: none;
}

.btn-outline-navy {
    border: 2px solid var(--iat-navy);
    color: var(--iat-navy);
}

.btn-outline-navy:hover {
    background-color: var(--iat-navy);
    color: white;
}

.course-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid #edf0f5;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    box-shadow: 0 15px 35px rgba(7, 4, 128, 0.1);
    transform: translateY(-5px);
}

.course-badge {
    display: inline-block;
    background: rgba(7, 4, 128, 0.1);
    color: var(--iat-navy);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.course-meta-box {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid #f1f1f1;
}

.meta-item {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.meta-item i {
    color: var(--iat-orange);
}

/* Custom Carousel Adjustments */
#courseCarousel .carousel-item {
    transition: transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* Mobile Styling */
@media (max-width: 991px) {
    .course-card {
        padding: 1.5rem;
    }
}


/* -----------------------SECTION-7 Our Alumni Success Stories------------------------------ */
/* --- [SUCCESS STORIES CSS] --- */

.review-slider-wrapper {
    width: 100%;
    padding: 20px 0;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.review-track {
    display: flex;
    width: max-content;
    gap: 25px;
}

/* The Animation */
.track-ltr {
    animation: scroll-ltr 40s linear infinite;
}

.track-ltr:hover {
    animation-play-state: paused;
}

@keyframes scroll-ltr {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

.review-item {
    width: 350px;
    background: #f8f9fa;
    padding: 25px;
    border-radius: 20px;
    border: 1px solid #eee;
    flex-shrink: 0;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
    font-style: italic;
    min-height: 80px;
}

.stars {
    color: #ffc107;
    font-size: 0.8rem;
}

.placement-badge {
    background: var(--iat-navy);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 4px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .review-item {
        width: 280px;
        padding: 15px;
    }

    .review-text {
        font-size: 0.85rem;
    }

    .track-ltr {
        animation-duration: 25s;
    }

    /* Slightly faster for small screens */
}


/* -----------------------SECTION-8 Our Learning Hubs----------------------------- */
/* --- [BRANCHES SECTION STYLES] --- */
.branch-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid #eef0f3;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.branch-card:hover {
    border-color: var(--iat-navy);
    box-shadow: 0 10px 30px rgba(7, 4, 128, 0.08);
}

.branch-card.upcoming {
    background: #fdfdfd;
    border: 1px dashed #ccc;
    text-align: center;
}

.badge-upcoming {
    display: inline-block;
    background: #6c757d;
    color: white;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 50px;
}

.contact-link {
    display: flex;
    gap: 12px;
    color: #555;
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-link i {
    color: var(--iat-navy);
    width: 20px;
    font-size: 1rem;
}

.contact-link:hover span {
    color: var(--iat-orange);
}

/* Responsive Overrides */
@media (max-width: 768px) {
    .branch-card {
        padding: 1.5rem;
    }

    .branch-header h5 {
        font-size: 1.1rem;
    }
}

/* -----------------------SECTION-9 FOOTER ----------------------------- */
.bg-navy {
    background-color: var(--iat-navy) !important;
}

.btn-iat-navy {
    background: var(--iat-navy);
    color: white;
    transition: 0.3s;
}

.btn-iat-navy:hover {
    background: #050360;
    color: white;
    transform: translateY(-2px);
}

.text-orange {
    color: var(--iat-orange) !important;
}

/* Footer Links Animation */
.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--iat-orange);
    padding-left: 5px;
}

/* Social Icons */
.social-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.social-icon:hover {
    background: var(--iat-orange);
    color: white;
}

/* Form Elements */
.form-control:focus,
.form-select:focus {
    border-color: var(--iat-navy);
    box-shadow: 0 0 0 0.25rem rgba(7, 4, 128, 0.1);
}




/* ----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- */
/* --------------------------------- ABOUT US PAGE CSS HERE..... -------------------------------------- */
/* ----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- */

/* --- ABOUT PAGE SPECIFIC --- */
.bg-navy {
    background-color: var(--iat-navy) !important;
}

.bg-orange {
    background-color: var(--iat-orange) !important;
}

/* Founder Cards */
.founder-img-wrapper {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 50%;
    border: 3px solid #f0f0f0;
    transition: var(--transition);
}

.founder-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 4, 128, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.founder-card:hover .social-overlay {
    opacity: 1;
}

.founder-card:hover .founder-img-wrapper {
    border-color: var(--iat-orange);
    transform: scale(1.05);
}

.social-overlay a {
    color: white;
    font-size: 1.5rem;
}

/* Timeline */
.timeline-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 30px;
    border-left: 2px dashed var(--iat-orange);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-dot {
    position: absolute;
    left: -41px;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--iat-orange);
    border-radius: 50%;
    border: 4px solid white;
}

/* Icon Circles */
.icon-circle {
    width: 60px;
    height: 60px;
    background: #fff5ef;
    color: var(--iat-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
}

.value-card:hover .icon-circle {
    background: var(--iat-orange);
    color: white;
}

/* Stats Float */
.stats-float {
    position: absolute;
    bottom: -20px;
    right: -20px;
    min-width: 150px;
}


/* ----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- */
/* --------------------------------- PLACEMENT PAGE CSS HERE..... -------------------------------------- */
/* ----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- */

/* -----------------------------------
   SECTION-2: PLACEMENT HERO STYLES
-------------------------------------- */
:root {
    --iat-yellow: #ff5f00;  
    /* Gold/Yellow from your image */
}

.iat-yellow {
    color: var(--iat-yellow);
}

.hero-bg {
    background: linear-gradient(rgba(7, 4, 128, 0.9), rgba(7, 4, 128, 0.85)),
        url('../images/placement-bg.jpg') center/cover no-repeat;
    min-height: 500px;
    padding-bottom: 150px !important;
    /* Space for the overlapping card */
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    opacity: 0.9;
}

/* Stats Overlap Logic */
.stats-overlap-wrapper {
    margin-top: -100px;
    /* Pulls the card up */
    position: relative;
    z-index: 10;
}

.stats-card {
    border-bottom: 4px solid var(--iat-orange) !important;
    transition: transform 0.3s ease;
}

.stat-number {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.stat-label {
    letter-spacing: 1px;
}

/* Animations */
.animate-fadeInUp {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.delay-2 {
    animation-delay: 0.3s;
}

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

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

/* Responsive Fixes */
@media (max-width: 767px) {
    .hero-bg {
        padding-bottom: 120px !important;
    }

    .stats-overlap-wrapper {
        margin-top: -80px;
    }

    .border-end-md {
        border-right: none !important;
    }

    .stat-content {
        padding: 10px 0;
    }
}

@media (min-width: 768px) {
    .border-end-md {
        border-right: 1px solid #eee;
    }
}

.btn-iat-yellow {
    background: var(--iat-yellow);
    color: #000;
    border: none;
    transition: 0.3s;
}

.btn-iat-yellow:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* -----------------------------------
   SECTION-3: HIRING PROCESS STYLES
-------------------------------------- */

.process-step-card {
    background: #f8f9fa;
    border-radius: 20px;
    border: 1px solid transparent;
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.process-step-card:hover {
    background: #ffffff;
    border-color: rgba(7, 4, 128, 0.1);
    box-shadow: 0 15px 30px rgba(7, 4, 128, 0.08);
    transform: translateY(-10px);
}

.step-icon-wrapper {
    width: 80px;
    height: 80px;
    background: #ffffff;
    border: 2px dashed var(--iat-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 2rem;
    color: var(--iat-navy);
    transition: var(--transition);
}

.process-step-card:hover .step-icon-wrapper {
    background: var(--iat-navy);
    color: #fff;
    border-style: solid;
}

.step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--iat-orange);
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

/* Connecting Line for Desktop */
@media (min-width: 992px) {
    .process-timeline-wrapper::before {
        content: "";
        position: absolute;
        top: 80px;
        left: 10%;
        right: 10%;
        height: 2px;
        background: repeating-linear-gradient(to right, #ddd 0, #ddd 10px, transparent 10px, transparent 20px);
        z-index: 1;
    }
}

/* Animation Delays */
.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

.delay-5 {
    animation-delay: 0.6s;
}

/* Mobile Parity */
@media (max-width: 991px) {
    .process-step-card {
        padding: 30px 20px !important;
    }
}


/* ----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- */
/* --------------------------------- CONTACT US PAGE CSS HERE..... -------------------------------------- */
/* ----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- */

/* CONTACT PAGE CUSTOMS */
.bg-navy {
    background-color: var(--iat-navy) !important;
}

.text-orange {
    color: var(--iat-orange) !important;
}

.c-card {
    background: #fff;
    border-radius: 15px;
    transition: var(--transition);
    border: 1px solid #eee;
}

.c-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(7, 4, 128, 0.1) !important;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(7, 4, 128, 0.05);
    color: var(--iat-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto;
}

.cta-box {
    background: #fff;
    border: 2px dashed var(--iat-navy);
}

.min-h-300 {
    min-height: 300px;
}

/* Transitions */
.transition-hover {
    transition: 0.3s ease;
}

.transition-hover:hover {
    transform: scale(1.2);
}

@media (max-width: 991px) {
    .location-split .row {
        flex-direction: column-reverse;
    }
}


/* 
--------------------------------------------------------------------------
---------------------------------------------------------------------------
ICONS CSS STYLES 
---------------------------------------------------------------------------
--------------------------------------------------------------------------
*/

/* --- Root Variables --- */
:root {
    --primary-color: #070480;
    --whatsapp-green: #25d366;
    --call-blue: #007bff;
    --white: #ffffff;
}

/* --- Floating Buttons Layout --- */
.floating-contact {
    pointer-events: none;
    position: fixed;
    bottom: 30px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.floating-contact a,
.btn-enquiry {
    pointer-events: auto;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    border: none;
    transition: transform 0.3s ease;
}

.btn-call {
    background-color: var(--call-blue);
    animation: whatsapp-blink 1.5s infinite;
}

.btn-enquiry {
    background-color: var(--primary-color);
    cursor: pointer;
}

/* --- WhatsApp Blinking Animation --- */
.btn-whatsapp {
    background-color: var(--whatsapp-green);
    animation: whatsapp-blink 1.5s infinite;
}

@keyframes whatsapp-blink {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}


/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .floating-contact {
        bottom: 20px;
        right: 15px;
    }

    .floating-contact a,
    .btn-enquiry {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}


/* --- Floating Icons --- */
.floating-contact {
    position: fixed; bottom: 25px; left: 20px;
    display: flex; flex-direction: column; gap: 15px; z-index: 1050;
}

.btn-call, .btn-whatsapp {
    width: 55px; height: 55px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 26px; text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3); transition: 0.3s ease;
}

.btn-call { background-color: #007bff; }

/* Blinking WhatsApp Animation */
.btn-whatsapp { 
    background-color: var(--whatsapp-green);
    animation: blink-effect 1.5s infinite;
}

@keyframes blink-effect {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); }
}



/* -------------- form ----------------------*/

/* --- Global & Theme --- */
:root {
    --primary-blue: #fd1010;
    --whatsapp-green: #25d366;
}

body {overflow-x: hidden; }

/* --- Side Tab Sliding Form --- */
.side-enquiry-wrapper {
    position: fixed; top: 21%; right: -360px; /* Hidden by default */
    width: 360px; height: auto; z-index: 2000;
    display: flex; transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.side-enquiry-wrapper.active { 
    right: 0; 
}

/* The Tab handle */
.get-offers-tab {
    position: absolute; left: -45px; top: 50px;
    width: 45px; height: 160px;
    background: var(--primary-blue); color: white;
    cursor: pointer; border-radius: 10px 0 0 10px;
    display: flex; align-items: center; justify-content: center;
    animation: whatsapp-blink 1.5s infinite;
}

.vertical-txt { 
    writing-mode: vertical-rl; transform: rotate(180deg); font-weight: 800; letter-spacing: 1px; 
}

.side-form-container { 
    background: rgb(238, 5, 5); width: 100%; border-radius: 0 0 0 15px; 
    box-shadow: -5px 0 25px rgba(0,0,0,0.2); border: 1px solid #eee;
}

.scrollable-form { 
    max-height: 75vh; overflow-y: auto; 
}

/* --- Responsive Layout --- */
@media (max-width: 768px) {
    .side-enquiry-wrapper { width: 310px; right: -310px; }
    .btn-call, .btn-whatsapp { width: 48px; height: 48px; font-size: 22px; }
}




/* 
---------------------------------------------------------------
-----------------------------------------------------------------
BLOG CSS CODE  
-----------------------------------------------------------------
--------------------------------------------------------------
*/

/* --- BLOG PAGE CUSTOMS --- */
.text-orange {
    color: var(--iat-orange) !important;
}

.bg-iat-navy {
    background-color: var(--iat-navy) !important;
}

.btn-iat-orange {
    background-color: var(--iat-orange);
    border: none;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: white;
    opacity: 0.5;
}

.object-fit-cover {
    object-fit: cover;
}

.card {
    transition: transform 0.3s ease;
}

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

/* Blog Card Custom Styling */
.blog-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(7, 4, 128, 0.1) !important;
}

.blog-card img {
    height: 200px;
    object-fit: cover;
}

.blog-card .card-title {
    color: var(--iat-navy);
    line-height: 1.4;
}

/* Pagination / Button tweak */
.btn-iat-main {
    font-size: 0.85rem;
    font-weight: 600;
}