/* =========================================================
   AMANSOFT GIMT - SITE STYLES
========================================================= */


/* =========================================================
   GLOBAL
========================================================= */

body {
    font-family: "Open Sans", Arial, sans-serif;
}

.stylish {
    font-family: "Berkshire Swash", cursive;
}

a {
    transition: color .2s ease, background-color .2s ease, transform .2s ease;
}


/* =========================================================
   TOP UTILITY BAR
========================================================= */

.home-utility-bar {
    position: relative;
    z-index: 1000;
    width: 100%;
    padding: 7px 20px;
    background: rgba(0, 0, 0, .82);
    text-align: right;
}

.utility-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 13px;
}

.utility-links a {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .3px;
    text-decoration: none;
}

.utility-links a:hover {
    color: #ddd;
}

.utility-separator {
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, .35);
}


/* =========================================================
   STUDENT LOGIN
========================================================= */

.home-login-box {
    display: none;
    position: absolute;
    top: 34px;
    right: 20px;
    z-index: 2000;
    width: 290px;
    padding: 20px;
    background: rgba(20, 20, 20, .97);
    border: 1px solid rgba(255, 255, 255, .15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
}

.login-row {
    margin-bottom: 12px;
}

.login-row label {
    display: block;
    margin-bottom: 5px;
    color: #fff;
    font-size: 12px;
}

.login-row input {
    width: 100%;
    height: 36px;
    padding: 7px 10px;
    border: 1px solid #ccc;
    background: #fff;
    color: #333;
}

.login-submit {
    margin-top: 15px;
    text-align: center;
}

.loginbut {
    padding: 8px 25px;
    border: 0;
    background: #fff;
    color: #222;
    cursor: pointer;
    font-weight: 600;
}

.loginbut:hover {
    background: #eee;
}


/* =========================================================
   HERO
========================================================= */

.home-hero {
    position: relative;
    overflow: hidden;
}

.home-slide {
    position: relative;
    height: 620px;
    overflow: hidden;
}

.home-slide > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, .75),
            rgba(0, 0, 0, .35),
            rgba(0, 0, 0, .15)
        );
}

.home-slide .carousel-content {
    z-index: 2;
}

.home-slide-content {
    text-align: left;
}

.home-slide-content h1 {
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .4);
}

.home-slide-content p {
    max-width: 700px;
}

.home-slide-content .button {
    min-width: 190px;
}


/* =========================================================
   CAREER SHAPERS
========================================================= */

.career-shapers {
    background: #f7f7f7;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.career-shapers-text {
    padding: 20px 30px;
}

.career-shapers-text h3 {
    line-height: 1.2;
}

.career-shapers-title {
    padding: 25px 20px;
    border-right: 1px solid #ddd;
    border-left: 1px solid #ddd;
}

.career-shapers-title h2 {
    margin-bottom: 0;
    font-size: 22px;
}

.career-shapers-title h1 {
    margin: 5px 0 15px;
    font-size: 44px;
    line-height: .95;
    font-weight: 700;
}

.career-shapers-title p {
    margin: 0;
    font-size: 12px;
    letter-spacing: 1px;
}

.career-shapers-label {
    display: block;
    margin-bottom: 5px;
    font-family: "Berkshire Swash", cursive;
    font-size: 20px;
}


/* =========================================================
   KEY SERVICES
========================================================= */

.home-services .line {
    display: flex;
    align-items: stretch;
    gap: 20px;
}

.home-services .line > div {
    display: flex;
    flex: 1;
    width: auto;
}

.home-service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, .25);
    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.home-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
}

.home-service-card h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 55px;
    margin-bottom: 15px;
}

.home-service-card p {
    min-height: 125px;
    margin-bottom: 30px;
    line-height: 1.7;
}

.home-service-card .button {
    margin-top: auto;
}


/* =========================================================
   STATS
========================================================= */

.home-stats {
    padding: 25px 0 45px;
}

.home-stats-grid {
    display: flex;
    align-items: stretch;
}

.home-stats-grid > div {
    display: flex;
}

.home-stat {
    position: relative;
    width: 100%;
    margin: 10px;
    padding: 35px 15px;
    overflow: hidden;
    background: #f7f7f7;
    border: 1px solid #e5e5e5;
    opacity: 0;
    transform: translateY(35px);
    transition:
        transform .3s ease,
        box-shadow .3s ease;
    animation: statsReveal .8s ease forwards;
}

.home-stats-grid > div:nth-child(1) .home-stat {
    animation-delay: .1s;
}

.home-stats-grid > div:nth-child(2) .home-stat {
    animation-delay: .25s;
}

.home-stats-grid > div:nth-child(3) .home-stat {
    animation-delay: .4s;
}

.home-stats-grid > div:nth-child(4) .home-stat {
    animation-delay: .55s;
}

.home-stat:before {
    content: "";
    position: absolute;
    bottom: -70px;
    left: 50%;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .04);
    transform: translateX(-50%) scale(0);
    transition: transform .5s ease;
}

.home-stat:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, .10);
}

.home-stat:hover:before {
    transform: translateX(-50%) scale(2);
}

.home-stat strong {
    position: relative;
    display: block;
    font-family: "Berkshire Swash", cursive;
    font-size: 40px;
    line-height: 1.1;
}

.home-stat span {
    position: relative;
    display: block;
    margin-top: 10px;
    font-size: 15px;
}

@keyframes statsReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================================
   UNIVERSITIES
========================================================= */

.our-affiliations {
    padding: 10px 0 20px;
}

.our-affiliations .owl-carousel {
    background: transparent;
}

.university-card {
    min-height: 430px;
    margin: 10px 15px;
    padding: 35px 30px;
    background: #fff;
    border: 1px solid #e5e5e5;
    text-align: center;
    box-shadow: 0 5px 18px rgba(0, 0, 0, .06);
    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.university-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
}

.university-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 130px;
    margin: 0 auto 22px;
    overflow: hidden;
    border-radius: 50%;
    background: #f5f5f5;
}

.university-logo img {
    width: auto;
    height: auto;
    max-width: 105px;
    max-height: 105px;
}

.university-logo-text {
    color: #333;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
}

.university-location {
    display: block;
    margin-bottom: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
}

.university-info h2 {
    min-height: 55px;
    margin-bottom: 15px;
    font-family: "Berkshire Swash", cursive;
    font-size: 27px;
    line-height: 1.2;
    font-weight: 400;
}

.university-info p {
    min-height: 75px;
    margin-bottom: 12px;
    color: #555;
    font-size: 14px;
    line-height: 1.65;
}


/* =========================================================
   WHY CHOOSE GIMT
========================================================= */

.why-gimt {
    background: #fff;
}

.why-gimt > .line {
    display: flex;
    align-items: stretch;
}

.why-gimt > .line > div {
    display: flex;
}

.why-gimt-image {
    width: 100%;
    min-height: 500px;
    overflow: hidden;
}

.why-gimt-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
}

.why-gimt-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 45px 50px;
}

.why-gimt-title {
    margin: 0 0 22px;
    font-family: "Berkshire Swash", cursive;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 400;
}

.why-gimt-intro {
    max-width: 650px;
    margin: 0 0 30px;
    color: #555;
    font-size: 15px;
    line-height: 1.75;
}

.why-gimt-item {
    display: flex;
    align-items: flex-start;
    width: 100%;
    max-width: 650px;
    margin-bottom: 24px;
}

.why-gimt-item:last-child {
    margin-bottom: 0;
}

.why-gimt-item > i {
    flex: 0 0 48px;
    width: 48px;
    margin-top: 3px;
    text-align: left;
}

.why-gimt-item > div {
    flex: 1;
}

.why-gimt-item h3 {
    margin: 0 0 7px;
    font-size: 23px;
    line-height: 1.25;
    font-weight: 400;
}

.why-gimt-item p {
    margin: 0;
    color: #555;
    font-size: 14px;
    line-height: 1.65;
}


/* =========================================================
   TESTIMONIALS
========================================================= */

.home-testimonials {
    padding: 25px 0 40px;
    background: #fff;
}

.testimonials-intro {
    max-width: 750px;
    margin: 0 auto 35px;
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}

.home-testimonials .owl-carousel {
    background: transparent;
}

.testimonial-card {
    max-width: 850px;
    min-height: 410px;
    margin: 10px auto 25px;
    padding: 35px 45px 30px;
    background: #f8f8f8;
    border: 1px solid #e5e5e5;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .06);
    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .10);
}

.testimonial-profile {
    width: 95px;
    height: 95px;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 4px solid #fff;
    border-radius: 50%;
    box-shadow: 0 3px 12px rgba(0, 0, 0, .15);
}

.testimonial-profile img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-quote {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
}

.testimonial-mark {
    display: block;
    height: 25px;
    font-family: Georgia, serif;
    font-size: 65px;
    line-height: 55px;
    opacity: .18;
}

.testimonial-quote p {
    margin: 0;
    color: #444;
    font-size: 16px;
    line-height: 1.8;
}

.testimonial-person {
    margin-top: 25px;
    padding-top: 18px;
    border-top: 1px solid #ddd;
}

.testimonial-person h3 {
    margin: 0 0 5px;
    font-size: 20px;
    font-weight: 600;
}

.testimonial-person span {
    color: #777;
    font-size: 12px;
    letter-spacing: .5px;
}


/* =========================================================
   FOOTER
========================================================= */

.footer-contact-bar {
    padding: 18px 15px;
}

.footer-contact-bar p {
    margin: 0;
    font-size: 19px;
    font-weight: 600;
}

.footer-contact-bar a {
    color: inherit;
    text-decoration: none;
}

.footer-main {
    padding: 45px 0;
}

.footer-map {
    overflow: hidden;
}

.footer-map iframe {
    display: block;
    width: 100%;
    border: 0;
}

.footer-information {
    padding-left: 20px;
}

.footer-block {
    margin-bottom: 30px;
}

.footer-block:last-child {
    margin-bottom: 0;
}

.footer-block h2 {
    margin: 0 0 12px;
    font-size: 24px;
    font-weight: 400;
}

.footer-block h2 i {
    margin-right: 8px;
}

.footer-block p {
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
}

.footer-block a {
    text-decoration: none;
}

.footer-social p {
    display: flex;
    align-items: center;
    gap: 22px;
}

.footer-social a {
    display: inline-block;
}

.footer-social a:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.footer-bottom p {
    margin: 0;
}


/* =========================================================
   MOBILE
========================================================= */

@media screen and (max-width: 768px) {

    /* Utility bar */

    .home-utility-bar {
        padding: 7px 10px;
        text-align: center;
    }

    .utility-links {
        justify-content: center;
        gap: 9px;
    }

    .utility-links a {
        font-size: 11px;
    }


    /* Login */

    .home-login-box {
        top: 34px;
        right: 10px;
        left: 10px;
        width: auto;
    }


    /* Hero */

    .home-slide {
        height: 520px;
    }

    .home-slide-content {
        text-align: center;
    }

    .home-slide-content h1 {
        font-size: 32px !important;
    }

    .home-slide-content p {
        padding: 0 15px;
        font-size: 14px;
    }


    /* Career Shapers */

    .career-shapers-text {
        padding: 15px 10px;
    }

    .career-shapers-title {
        margin: 10px 0;
        border-top: 1px solid #ddd;
        border-right: 0;
        border-bottom: 1px solid #ddd;
        border-left: 0;
    }

    .career-shapers-title h1 {
        font-size: 38px;
    }


    /* Services */

    .home-services .line {
        display: block;
    }

    .home-services .line > div {
        display: block;
        width: 100%;
        margin-bottom: 20px;
    }

    .home-services .line > div:last-child {
        margin-bottom: 0;
    }

    .home-service-card h2,
    .home-service-card p {
        min-height: auto;
    }


    /* Stats */

    .home-stats-grid {
        display: block;
    }

    .home-stats-grid > div {
        display: block;
    }

    .home-stat {
        margin: 10px 5px;
    }


    /* Universities */

    .university-card {
        min-height: auto;
        margin: 10px 5px;
        padding: 30px 20px;
    }

    .university-info h2 {
        min-height: auto;
        font-size: 25px;
    }

    .university-info p {
        min-height: auto;
    }

    .university-logo {
        width: 110px;
        height: 110px;
    }

    .university-logo img {
        max-width: 90px;
        max-height: 90px;
    }

    .university-logo-text {
        font-size: 24px;
    }


    /* Why Choose */

    .why-gimt > .line {
        display: block;
    }

    .why-gimt > .line > div {
        display: block;
    }

    .why-gimt-image,
    .why-gimt-image img {
        min-height: 300px;
        height: 300px;
    }

    .why-gimt-content {
        padding: 35px 20px;
    }

    .why-gimt-title {
        font-size: 34px;
    }

    .why-gimt-intro {
        font-size: 14px;
    }

    .why-gimt-item h3 {
        font-size: 21px;
    }


    /* Testimonials */

    .testimonial-card {
        min-height: auto;
        margin: 10px 5px 25px;
        padding: 30px 20px 25px;
    }

    .testimonial-profile {
        width: 80px;
        height: 80px;
    }

    .testimonial-quote p {
        font-size: 14px;
        line-height: 1.7;
    }

    .testimonial-person h3 {
        font-size: 18px;
    }

    .testimonial-person span {
        font-size: 11px;
    }


    /* Footer */

    .footer-contact-bar p {
        font-size: 15px;
        line-height: 1.7;
    }

    .footer-main {
        padding: 30px 15px;
    }

    .footer-map iframe {
        height: 300px;
    }

    .footer-information {
        padding: 30px 10px 0;
    }

    .footer-block h2 {
        font-size: 21px;
    }

    .footer-social p {
        gap: 18px;
    }

}