/*=========================
      GWI STORY SECTION
=========================*/

.gwiux-story-section {
    width: 100%;
    padding: 80px 20px;
    /* background: #fff; */
    background: linear-gradient(135deg, #1a619b, #fff, #5086b3);

    overflow: hidden;
}

.gwiux-story-wrap {
    max-width: 1400px;
    margin: auto;
}

/* GRID */

.gwiux-story-grid {
    display: grid;
    grid-template-columns: 1fr 520px;
    gap: 70px;
    align-items: center;
}

/*=========================
      LEFT CONTENT
=========================*/

.gwiux-story-content {
    animation: gwiuxLeftMove 1s ease;
}

.gwiux-story-tag {
    color: #000;
    font-size: 26px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 25px;
    display: block;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    border-radius: 60px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.gwiux-story-title {
    font-size: 78px;
    line-height: 1.08;
    color: #000;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    margin-bottom: 45px;
    max-width: 850px;
}

.gwiux-story-text {
    max-width: 720px;
}

.gwiux-story-text p {
    color: #000;
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 35px;
    font-weight: 300;
}

/*=========================
       IMAGE SIDE
=========================*/

.gwiux-story-image {
    position: relative;
    animation: gwiuxRightMove 1s ease;
}

.gwiux-story-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    z-index: 1;
}

.gwiux-story-image img {
    width: 100%;
    height: 760px;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 2;
    transition: 0.6s;
}

.gwiux-story-image:hover img {
    transform: scale(1.02);
}

/*=========================
       ANIMATION
=========================*/

@keyframes gwiuxLeftMove {

    from {
        opacity: 0;
        transform: translateX(-80px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}

@keyframes gwiuxRightMove {

    from {
        opacity: 0;
        transform: translateX(80px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}

/*=========================
       RESPONSIVE
=========================*/

@media(max-width:1200px) {

    .gwiux-story-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .gwiux-story-image {
        max-width: 700px;
        width: 100%;
    }

}

@media(max-width:768px) {

    .gwiux-story-section {
        padding: 60px 15px;
    }

    .gwiux-story-tag {
        font-size: 22px;
    }

    .gwiux-story-title {
        font-size: 46px;
        margin-bottom: 30px;
    }

    .gwiux-story-text p {
        font-size: 16px;
        line-height: 1.8;
    }

    .gwiux-story-image img {
        height: 500px;
    }

}

@media(max-width:480px) {

    .gwiux-story-title {
        font-size: 36px;
    }

    .gwiux-story-text p {
        font-size: 15px;
    }

    .gwiux-story-image img {
        height: 420px;
    }

}

/*=========================
    MINI PREMIUM MISSION VISION
=========================*/

.gwiux-mini-mv-section {
    width: 100%;
    padding: 90px 20px;
    background: #f4f9fd;
    /* background: linear-gradient(135deg, #1a619b, #fff, #5086b3); */

    position: relative;
    overflow: hidden;
}

.gwiux-mini-mv-wrap {
    max-width: 1200px;
    margin: auto;
}

/*=========================
        HEADING
=========================*/

.gwiux-mini-mv-head {
    text-align: center;
    margin-bottom: 55px;
}

.gwiux-mini-mv-head span {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: #1a629c12;
    color: #1a629c;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.gwiux-mini-mv-head h2 {
    font-size: 46px;
    color: #0f172a;
    font-weight: 700;
}

/*=========================
            GRID
=========================*/

.gwiux-mini-mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

/*=========================
            CARD
=========================*/

.gwiux-mini-mv-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 22px;
    padding: 35px;
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    transition: 0.5s;
    border: 1px solid rgba(26, 98, 156, 0.08);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.04),
        0 5px 15px rgba(26, 98, 156, 0.04);
}

.gwiux-mini-mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #1a629c, #4aa3e8);
    transition: 0.5s;
}

.gwiux-mini-mv-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.08),
        0 10px 25px rgba(26, 98, 156, 0.10);
}

.gwiux-mini-mv-card:hover::before {
    width: 100%;
    opacity: 0.04;
}

/*=========================
            ICON
=========================*/

.gwiux-mini-mv-icon {
    min-width: 75px;
    height: 75px;
    border-radius: 22px;
    background: linear-gradient(135deg, #1a629c, #4aa3e8);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    color: #fff;
    box-shadow:
        0 15px 30px rgba(26, 98, 156, 0.20);
    transition: 0.5s;
    position: relative;
    z-index: 2;
}

.gwiux-mini-mv-card:hover .gwiux-mini-mv-icon {
    transform: rotate(-8deg) scale(1.05);
}

/*=========================
          CONTENT
=========================*/

.gwiux-mini-mv-content {
    position: relative;
    z-index: 2;
}

.gwiux-mini-mv-content h3 {
    font-size: 28px;
    color: #0f172a;
    margin-bottom: 14px;
    font-weight: 700;
}

.gwiux-mini-mv-content p {
    color: #64748b;
    line-height: 1.9;
    font-size: 15px;
}

/*=========================
         RESPONSIVE
=========================*/

@media(max-width:992px) {

    .gwiux-mini-mv-grid {
        grid-template-columns: 1fr;
    }

}

@media(max-width:768px) {

    .gwiux-mini-mv-section {
        padding: 70px 15px;
    }

    .gwiux-mini-mv-head h2 {
        font-size: 34px;
    }

    .gwiux-mini-mv-card {
        padding: 28px;
        gap: 18px;
    }

    .gwiux-mini-mv-content h3 {
        font-size: 24px;
    }

    .gwiux-mini-mv-content p {
        font-size: 14px;
        line-height: 1.8;
    }

    .gwiux-mini-mv-icon {
        min-width: 65px;
        height: 65px;
        font-size: 26px;
    }

}

@media(max-width:480px) {

    .gwiux-mini-mv-card {
        flex-direction: column;
    }

    .gwiux-mini-mv-head h2 {
        font-size: 28px;
    }

}

/* start mail */

/*========================================
        GWIUX CONTACT SECTION
========================================*/

.gwiux-contact-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a619b, #fff, #5086b3);
}

.gwiux-contact-wrap {
    max-width: 1200px;
    margin: auto;
}

.gwiux-contact-box {
    background: #ffffff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
}

.gwiux-contact-head {
    text-align: center;
    margin-bottom: 40px;
}

.gwiux-contact-head span {
    color: #1a619b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gwiux-contact-head h2 {
    font-size: 40px;
    margin: 10px 0;
    color: #111;
}

.gwiux-contact-head p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

.gwiux-contact-form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.gwiux-input-group {
    width: 48%;
}

.gwiux-full-width {
    width: 100%;
}

.gwiux-contact-form input,
.gwiux-contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    outline: none;
    font-size: 15px;
    transition: 0.3s;
    background: #f9f9f9;
}

.gwiux-contact-form input:focus,
.gwiux-contact-form textarea:focus {
    border-color: #1a619b;
    background: #fff;
}

.gwiux-contact-form button {
    background: linear-gradient(90deg, #1a619b, #1a619b);
    color: #fff;
    border: none;
    padding: 15px 35px;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.gwiux-contact-form button:hover {
    transform: translateY(-3px);
}

@media(max-width:768px) {

    .gwiux-contact-box {
        padding: 30px 20px;
    }

    .gwiux-input-group {
        width: 100%;
    }

    .gwiux-contact-head h2 {
        font-size: 30px;
    }

}

/* end mail */

#botn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 16px 38px;
    border: none;
    outline: none;
    border-radius: 60px;

    background: linear-gradient(135deg, #7dff4d, #38d200);
    color: #000;

    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;

    cursor: pointer;
    overflow: hidden;
    z-index: 1;

    transition: all 0.45s ease;

    box-shadow:
        0 12px 30px rgba(56, 210, 0, 0.30),
        0 5px 15px rgba(0, 0, 0, 0.08);
}

/* SHINE EFFECT */

#botn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 70%;
    height: 100%;

    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.45),
            transparent);

    transform: skewX(-25deg);
    transition: 0.8s;
}

/* GLOW EFFECT */

#botn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;

    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.18),
            rgba(255, 255, 255, 0));

    opacity: 0;
    transition: 0.4s ease;
    z-index: -1;
}

/* HOVER */

#botn:hover {
    transform: translateY(-6px) scale(1.03);

    box-shadow:
        0 22px 45px rgba(56, 210, 0, 0.40),
        0 10px 25px rgba(0, 0, 0, 0.12);
}

#botn:hover::before {
    left: 140%;
}

#botn:hover::after {
    opacity: 1;
}

/* CLICK */

#botn:active {
    transform: scale(0.96);
}

/* MOBILE */

@media(max-width:768px) {

    #botn {
        width: 100%;
        padding: 15px 25px;
        font-size: 15px;
    }

}

/* start blogs */
/*========================================
        ULTRA PREMIUM BLOG SECTION
========================================*/

.gwiux-ultra-blog-sec {
    position: relative;
    width: 100%;
    padding: 120px 20px;
    background:
        linear-gradient(135deg, #1a619b, #fff, #5086b3);

    /* linear-gradient(to bottom, #f5f9ff, #ffffff); */
    overflow: hidden;
}

/*========================================
            BACKGROUND SHAPES
========================================*/

.gwiux-ultra-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    z-index: 1;
}

.gwiux-ultra-shape1 {
    width: 350px;
    height: 350px;
    background: #1a619b;
    top: -100px;
    left: -100px;
}

.gwiux-ultra-shape2 {
    width: 300px;
    height: 300px;
    background: #4aa3e8;
    bottom: -100px;
    right: -100px;
}

/*========================================
                WRAPPER
========================================*/

.gwiux-ultra-blog-wrap {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: auto;
}

/*========================================
                HEADING
========================================*/

.gwiux-ultra-blog-head {
    text-align: center;
    max-width: 900px;
    margin: auto auto 90px;
}

.gwiux-ultra-label {
    display: inline-block;

    padding: 12px 28px;
    border-radius: 50px;

    background: rgba(26, 97, 155, 0.08);
    color: #000;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;

    margin-bottom: 25px;
}

.gwiux-ultra-blog-head h2 {
    font-size: 60px;
    line-height: 1.2;
    color: #0f172a;
    margin-bottom: 25px;
}

.gwiux-ultra-blog-head p {
    font-size: 17px;
    line-height: 1.9;
    /* color: #64748b; */
    color: #000;
}

/*========================================
                  GRID
========================================*/

.gwiux-ultra-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/*========================================
                  CARD
========================================*/

.gwiux-ultra-blog-card {
    position: relative;

    background: rgba(255, 255, 255, 0.85);

    border-radius: 32px;

    overflow: hidden;

    backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 255, 255, 0.4);

    box-shadow:
        0 15px 50px rgba(0, 0, 0, 0.06);

    transition: 0.5s ease;

    animation: gwiuxUltraFade 1s ease;
}

.gwiux-ultra-blog-card:hover {
    transform: translateY(-14px);

    box-shadow:
        0 30px 80px rgba(26, 97, 155, 0.16);
}

/*========================================
                  IMAGE
========================================*/

.gwiux-ultra-blog-img {
    position: relative;
    overflow: hidden;
}

.gwiux-ultra-blog-img img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    display: block;

    transition: 0.8s ease;
}

.gwiux-ultra-blog-card:hover img {
    transform: scale(1.08);
}

/* OVERLAY */

.gwiux-ultra-blog-img::after {
    content: '';
    position: absolute;
    inset: 0;

    background:
        linear-gradient(to top,
            rgba(0, 0, 0, 0.45),
            transparent);

    opacity: 0;
    transition: 0.5s;
}

.gwiux-ultra-blog-card:hover .gwiux-ultra-blog-img::after {
    opacity: 1;
}

/*========================================
                CONTENT
========================================*/

.gwiux-ultra-blog-content {
    padding: 35px;
}

/*========================================
                  META
========================================*/

.gwiux-ultra-meta {
    margin-bottom: 18px;
}

.gwiux-ultra-meta span {
    display: inline-block;

    padding: 9px 18px;
    border-radius: 50px;

    background: rgba(26, 97, 155, 0.08);
    color: #1a619b;

    font-size: 13px;
    font-weight: 700;
}

/*========================================
                  TITLE
========================================*/

.gwiux-ultra-blog-content h3 {
    font-size: 28px;
    line-height: 1.5;
    color: #0f172a;

    margin-bottom: 18px;

    transition: 0.4s;
}

.gwiux-ultra-blog-card:hover h3 {
    color: #1a619b;
}

/*========================================
                  TEXT
========================================*/

.gwiux-ultra-blog-content p {
    font-size: 15px;
    line-height: 1.9;
    color: #64748b;

    margin-bottom: 30px;
}

/*========================================
                 BUTTON
========================================*/

.gwiux-ultra-btn {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 15px 32px;
    border-radius: 60px;

    background:
        linear-gradient(135deg, #1a619b, #4aa3e8);

    color: #fff;
    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    overflow: hidden;

    transition: 0.5s ease;

    box-shadow:
        0 12px 30px rgba(26, 97, 155, 0.20);
}

.gwiux-ultra-btn:hover {
    transform: translateY(-5px);

    box-shadow:
        0 20px 45px rgba(26, 97, 155, 0.30);
}

/* SHINE EFFECT */

.gwiux-ultra-btn::before {
    content: '';
    position: absolute;

    top: 0;
    left: -120%;

    width: 70%;
    height: 100%;

    background:
        linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.5),
            transparent);

    transform: skewX(-25deg);

    transition: 0.8s;
}

.gwiux-ultra-btn:hover::before {
    left: 140%;
}

/*========================================
                ANIMATION
========================================*/

@keyframes gwiuxUltraFade {

    from {
        opacity: 0;
        transform: translateY(60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

/*========================================
                RESPONSIVE
========================================*/

@media(max-width:1200px) {

    .gwiux-ultra-blog-grid {
        gap: 28px;
    }

    .gwiux-ultra-blog-content {
        padding: 28px;
    }

}

@media(max-width:992px) {

    .gwiux-ultra-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gwiux-ultra-blog-head h2 {
        font-size: 46px;
    }

}

@media(max-width:768px) {

    .gwiux-ultra-blog-sec {
        padding: 90px 15px;
    }

    .gwiux-ultra-blog-grid {
        grid-template-columns: 1fr;
    }

    .gwiux-ultra-blog-head {
        margin-bottom: 60px;
    }

    .gwiux-ultra-blog-head h2 {
        font-size: 34px;
    }

    .gwiux-ultra-blog-content h3 {
        font-size: 24px;
    }

}

@media(max-width:480px) {

    .gwiux-ultra-blog-head h2 {
        font-size: 28px;
    }

    .gwiux-ultra-blog-img img {
        height: 230px;
    }

    .gwiux-ultra-blog-content {
        padding: 24px;
    }

}

/* end blogs */

/* start certifications */
/*===================================
   GWI CERTIFICATION SECTION
===================================*/

.gwi-cert-sec {
    width: 100%;
    padding: 90px 20px;
    background: #f4f8fc;
    overflow: hidden;
}

.gwi-cert-wrap {
    max-width: 1350px;
    margin: auto;
}

/*===================================
          HEADING
===================================*/

.gwi-cert-head {
    text-align: center;
    margin-bottom: 60px;
}

.gwi-cert-head span {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(26, 97, 155, 0.08);
    color: #1a619b;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.gwi-cert-head h2 {
    font-size: 48px;
    line-height: 1.2;
    color: #0f172a;
    font-weight: 800;
    margin-bottom: 18px;
}

.gwi-cert-head p {
    max-width: 760px;
    margin: auto;
    color: #64748b;
    line-height: 1.8;
    font-size: 16px;
}

/*===================================
          GRID
===================================*/

.gwi-cert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/*===================================
      CARD
===================================*/

.gwi-cert-card {
    position: relative;
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    transition: 0.5s;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.gwi-cert-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

/*===================================
        IMAGE FIX
===================================*/

.gwi-cert-img {
    width: 100%;
    background: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.gwi-cert-img img {
    width: 100%;
    height: auto;
    max-height: 320px;
    object-fit: contain;
    display: block;
    transition: 0.5s;
}

.gwi-cert-card:hover .gwi-cert-img img {
    transform: scale(1.03);
}

/*===================================
        CONTENT
===================================*/

.gwi-cert-content {
    padding: 30px;
    background: linear-gradient(to bottom, #ffffff, #f7fbff);
}

.gwi-cert-icon {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    background: linear-gradient(135deg, #1a619b, #4aa3e8);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 22px;
    font-size: 28px;
    color: #fff;
    box-shadow: 0 10px 25px rgba(26, 97, 155, 0.25);
}

.gwi-cert-content h3 {
    font-size: 24px;
    line-height: 1.4;
    color: #0f172a;
    margin-bottom: 16px;
    font-weight: 700;
}

.gwi-cert-content p {
    font-size: 15px;
    line-height: 1.9;
    color: #64748b;
    margin-bottom: 25px;
}

/*===================================
        BUTTON
===================================*/

.gwi-cert-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 24px;
    background: linear-gradient(135deg, #1a619b, #4aa3e8);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    transition: 0.4s;
}

.gwi-cert-btn i {
    transition: 0.4s;
}

.gwi-cert-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(26, 97, 155, 0.25);
}

.gwi-cert-btn:hover i {
    transform: translateX(5px);
}

/*===================================
   LAST 2 CARDS CENTER ALIGN
===================================*/

.gwi-cert-card:nth-child(4) {
    grid-column: 1 / 2;
}

.gwi-cert-card:nth-child(5) {
    grid-column: 2 / 3;
}

/*===================================
        RESPONSIVE
===================================*/

@media(max-width:1200px) {

    .gwi-cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gwi-cert-card:nth-child(4),
    .gwi-cert-card:nth-child(5) {
        grid-column: auto;
    }

}

@media(max-width:768px) {

    .gwi-cert-sec {
        padding: 70px 15px;
    }

    .gwi-cert-head h2 {
        font-size: 34px;
    }

    .gwi-cert-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .gwi-cert-content {
        padding: 24px;
    }

    .gwi-cert-content h3 {
        font-size: 21px;
    }

    .gwi-cert-img {
        padding: 12px;
    }

    .gwi-cert-img img {
        max-height: 260px;
    }

}

@media(max-width:480px) {

    .gwi-cert-head h2 {
        font-size: 28px;
    }

    .gwi-cert-head p {
        font-size: 14px;
    }

    .gwi-cert-content h3 {
        font-size: 20px;
    }

    .gwi-cert-content p {
        font-size: 14px;
        line-height: 1.8;
    }

    .gwi-cert-img img {
        max-height: 220px;
    }

}

/* end certifications */

/* start products design  */
/*========================================
      MODERN RESPONSIVE WEBSITE SECTION
========================================*/

.gwi-modern-responsive-sec {
    width: 100%;
    padding: 110px 20px;
    background:
        linear-gradient(135deg, #1a619b, #fff, #5086b3);

    /* linear-gradient(135deg, #f5f9ff, #ffffff); */
    overflow: hidden;
}

.gwi-modern-responsive-wrap {
    max-width: 1400px;
    margin: auto;
}

/*========================================
                GRID
========================================*/

.gwi-modern-responsive-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/*========================================
              IMAGE SIDE
========================================*/

.gwi-modern-image-box {
    position: relative;
    border-radius: 35px;
    overflow: hidden;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.12);

    transition: 0.5s;
}

.gwi-modern-image-box:hover {
    transform: translateY(-8px);
}

.gwi-modern-image-box img {
    width: 100%;
    display: block;
    object-fit: cover;
    transition: 0.8s;
}

.gwi-modern-image-box:hover img {
    transform: scale(1.05);
}

/*========================================
            FLOATING CARD
========================================*/

.gwi-modern-floating-card {
    position: absolute;

    left: 30px;
    bottom: 30px;

    display: flex;
    align-items: center;
    gap: 15px;

    padding: 18px 22px;

    background: rgba(255, 255, 255, 0.92);

    border-radius: 22px;

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.12);

    animation: gwiFloatCard 4s infinite ease-in-out;
}

.gwi-modern-floating-icon {
    width: 60px;
    height: 60px;

    border-radius: 18px;

    background: linear-gradient(135deg, #1a619b, #4aa3e8);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    font-size: 24px;
}

.gwi-modern-floating-text h4 {
    font-size: 20px;
    color: #0f172a;
    margin-bottom: 4px;
}

.gwi-modern-floating-text p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

/*========================================
              CONTENT SIDE
========================================*/

.gwi-modern-tag {
    display: inline-block;

    padding: 12px 24px;

    border-radius: 50px;

    background: #e8f2fb;

    color: #1a619b;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;

    margin-bottom: 25px;
}

.gwi-modern-content-side h2 {
    font-size: 60px;
    line-height: 1.15;
    color: #0f172a;
    margin-bottom: 28px;
}

.gwi-modern-content-side p {
    color: #64748b;
    font-size: 17px;
    line-height: 1.95;
    margin-bottom: 22px;
}

/*========================================
            FEATURE GRID
========================================*/

.gwi-modern-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;

    margin-top: 40px;
}

.gwi-modern-feature-box {
    display: flex;
    align-items: flex-start;
    gap: 18px;

    padding: 28px;

    background: #fff;

    border-radius: 24px;

    transition: 0.5s;

    border: 1px solid rgba(0, 0, 0, 0.05);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.04);
}

.gwi-modern-feature-box:hover {
    transform: translateY(-8px);

    box-shadow:
        0 22px 45px rgba(26, 97, 155, 0.10);
}

.gwi-modern-feature-icon {
    min-width: 62px;
    height: 62px;

    border-radius: 18px;

    background: linear-gradient(135deg, #1a619b, #4aa3e8);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    font-size: 24px;
}

.gwi-modern-feature-box h4 {
    font-size: 22px;
    color: #0f172a;
    margin-bottom: 10px;
}

.gwi-modern-feature-box p {
    font-size: 15px;
    line-height: 1.8;
    color: #64748b;
    margin: 0;
}

/*========================================
                BUTTON
========================================*/

.gwi-modern-btn-area {
    margin-top: 45px;
}

.gwi-modern-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 16px 36px;

    background: linear-gradient(135deg, #1a619b, #4aa3e8);

    color: #fff;
    text-decoration: none;

    border-radius: 60px;

    font-size: 15px;
    font-weight: 700;

    transition: 0.5s;

    box-shadow:
        0 18px 35px rgba(26, 97, 155, 0.18);
}

.gwi-modern-btn:hover {
    transform: translateY(-5px);

    box-shadow:
        0 25px 50px rgba(26, 97, 155, 0.28);
}

/*========================================
              ANIMATION
========================================*/

@keyframes gwiFloatCard {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }

}

/*========================================
              RESPONSIVE
========================================*/

@media(max-width:1200px) {

    .gwi-modern-content-side h2 {
        font-size: 50px;
    }

}

@media(max-width:992px) {

    .gwi-modern-responsive-grid {
        grid-template-columns: 1fr;
        gap: 70px;
    }

}

@media(max-width:768px) {

    .gwi-modern-responsive-sec {
        padding: 90px 15px;
    }

    .gwi-modern-content-side h2 {
        font-size: 38px;
    }

    .gwi-modern-feature-grid {
        grid-template-columns: 1fr;
    }

    .gwi-modern-floating-card {
        left: 15px;
        right: 15px;
        bottom: 15px;
    }

}

@media(max-width:480px) {

    .gwi-modern-content-side h2 {
        font-size: 30px;
    }

    .gwi-modern-content-side p {
        font-size: 15px;
    }

    .gwi-modern-feature-box {
        padding: 22px;
    }

    .gwi-modern-feature-box h4 {
        font-size: 19px;
    }

    .gwi-modern-floating-icon {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    .gwi-modern-floating-text h4 {
        font-size: 16px;
    }

    .gwi-modern-floating-text p {
        font-size: 12px;
    }

}

/* end products design  */

/* start gwi reviews  */
/*=========================================
    GET WEB INDIA REVIEW SECTION CSS
=========================================*/

.gwi-review-section-unique {
    width: 100%;
    padding: 80px 20px;
    background:
        linear-gradient(135deg, #1a619b, #fff, #5086b3);
    /* #0d0d0d; */
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

/* Animated Background Glow */

.gwi-review-section-unique::before {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    background: rgba(255, 132, 0, 0.25);
    border-radius: 50%;
    top: 20px;
    left: 40px;
    filter: blur(15px);
    animation: gwiGlowMove 7s ease-in-out infinite;
}

.gwi-review-container-unique {
    max-width: 1250px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    position: relative;
    z-index: 2;
}

/*=========================================
    REVIEW BOX DESIGN
=========================================*/

.gwi-review-box {
    background: #ffffff;
    /* color: #111111; */
    color: #1a619b;
    padding: 15px 24px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
    animation: gwiFadeAnimation 0.8s ease forwards;
    opacity: 0;
    text-align: center;
    box-sizing: border-box;
}

/* Hover Effect */

.gwi-review-box:hover {
    transform: translateY(-6px) scale(1.03);
    background: linear-gradient(135deg, #7dff4d, #38d200);
    /* linear-gradient(135deg, #ff7a00, #ff4800); */
    color: #000;
    box-shadow: 0 10px 24px rgba(255, 122, 0, 0.4);
}

/* Shine Animation */

.gwi-review-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    transform: skewX(-25deg);
    transition: 0.7s;
}

.gwi-review-box:hover::before {
    left: 130%;
}

/*=========================================
    BOX ANIMATION DELAY
=========================================*/

.gwi-review-box:nth-child(1) {
    animation-delay: 0.1s;
}

.gwi-review-box:nth-child(2) {
    animation-delay: 0.2s;
}

.gwi-review-box:nth-child(3) {
    animation-delay: 0.3s;
}

.gwi-review-box:nth-child(4) {
    animation-delay: 0.4s;
}

.gwi-review-box:nth-child(5) {
    animation-delay: 0.5s;
}

.gwi-review-box:nth-child(6) {
    animation-delay: 0.6s;
}

.gwi-review-box:nth-child(7) {
    animation-delay: 0.7s;
}

.gwi-review-box:nth-child(8) {
    animation-delay: 0.8s;
}

.gwi-review-box:nth-child(9) {
    animation-delay: 0.9s;
}

.gwi-review-box:nth-child(10) {
    animation-delay: 1s;
}

.gwi-review-box:nth-child(11) {
    animation-delay: 1.1s;
}

.gwi-review-box:nth-child(12) {
    animation-delay: 1.2s;
}

.gwi-review-box:nth-child(13) {
    animation-delay: 1.3s;
}

.gwi-review-box:nth-child(14) {
    animation-delay: 1.4s;
}

/*=========================================
    KEYFRAMES
=========================================*/

@keyframes gwiFadeAnimation {

    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gwiGlowMove {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/*=========================================
    LARGE LAPTOP RESPONSIVE
=========================================*/

@media screen and (max-width: 1200px) {

    .gwi-review-container-unique {
        gap: 12px;
    }

    .gwi-review-box {
        font-size: 16px;
        padding: 14px 20px;
    }

}

/*=========================================
    TABLET RESPONSIVE
=========================================*/

@media screen and (max-width: 768px) {

    .gwi-review-section-unique {
        padding: 60px 15px;
    }

    .gwi-review-container-unique {
        gap: 12px;
    }

    .gwi-review-box {
        width: calc(50% - 10px);
        font-size: 15px;
        padding: 14px 16px;
    }

}

/*=========================================
    MOBILE RESPONSIVE
=========================================*/

@media screen and (max-width: 480px) {

    .gwi-review-section-unique {
        padding: 50px 12px;
    }

    .gwi-review-box {
        width: 100%;
        font-size: 14px;
        padding: 13px 14px;
        border-radius: 6px;
    }

    .gwi-review-section-unique::before {
        width: 140px;
        height: 140px;
        left: 0;
        top: 0;
    }

}

/* end gwi reviews  */

/* start privacy policy */
/*=========================================
        PRIVACY POLICY SECTION CSS
=========================================*/

.gwi-privacy-policy-section {
    width: 100%;
    padding: 90px 20px;
    /* background:#fff; */
    /* background:#0f0f0f; */
    background:
        linear-gradient(135deg, #1a619b, #fff, #5086b3);
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

/* Background Glow */

.gwi-privacy-policy-section::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    background: rgba(255, 120, 0, 0.18);
    border-radius: 50%;
    top: 40px;
    left: 40px;
    filter: blur(18px);
    animation: gwiPrivacyGlow 8s ease-in-out infinite;
}

.gwi-privacy-policy-container {
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 2;
}

/*=========================================
        HEADING
=========================================*/

.gwi-privacy-policy-heading {
    text-align: center;
    margin-bottom: 50px;
}

.gwi-privacy-policy-heading h2 {
    font-size: 42px;
    color: #000;
    margin-bottom: 15px;
    font-weight: 700;
}

.gwi-privacy-policy-heading p {
    max-width: 850px;
    margin: auto;
    color: #000;
    font-size: 17px;
    line-height: 1.8;
}

/*=========================================
        POLICY BOX
=========================================*/

.gwi-privacy-policy-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/*=========================================
        POLICY ITEM
=========================================*/

.gwi-privacy-policy-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 14px;
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.18);
    animation: gwiPrivacyFade 1s ease forwards;
    opacity: 0;
}

/* Hover */

.gwi-privacy-policy-item:hover {
    transform: translateY(-8px);
    /* background:linear-gradient(135deg,#ff7a00,#ff4d00); */
    background:
        linear-gradient(135deg, #1a619b, #fff, #5086b3);
}

.gwi-privacy-policy-item:hover h3,
.gwi-privacy-policy-item:hover p {
    color: #000;
}

/* Top Border Animation */

.gwi-privacy-policy-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 4px;
    /* background:#ff7a00; */
    background: linear-gradient(135deg, #7dff4d, #38d200);
    transition: 0.5s ease;
}

.gwi-privacy-policy-item:hover::before {
    width: 100%;
}

/* Text */

.gwi-privacy-policy-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #111111;
    transition: 0.4s;
}

.gwi-privacy-policy-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
    transition: 0.4s;
}

/*=========================================
        ANIMATION DELAY
=========================================*/

.gwi-privacy-policy-item:nth-child(1) {
    animation-delay: 0.1s;
}

.gwi-privacy-policy-item:nth-child(2) {
    animation-delay: 0.2s;
}

.gwi-privacy-policy-item:nth-child(3) {
    animation-delay: 0.3s;
}

.gwi-privacy-policy-item:nth-child(4) {
    animation-delay: 0.4s;
}

.gwi-privacy-policy-item:nth-child(5) {
    animation-delay: 0.5s;
}

.gwi-privacy-policy-item:nth-child(6) {
    animation-delay: 0.6s;
}

.gwi-privacy-policy-item:nth-child(7) {
    animation-delay: 0.7s;
}

/*=========================================
        KEYFRAMES
=========================================*/

@keyframes gwiPrivacyFade {

    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gwiPrivacyGlow {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(25px);
    }

    100% {
        transform: translateY(0px);
    }
}

/*=========================================
        LAPTOP RESPONSIVE
=========================================*/

@media(max-width:1024px) {

    .gwi-privacy-policy-heading h2 {
        font-size: 36px;
    }

    .gwi-privacy-policy-item {
        padding: 25px;
    }

}

/*=========================================
        TABLET RESPONSIVE
=========================================*/

@media(max-width:768px) {

    .gwi-privacy-policy-section {
        padding: 70px 15px;
    }

    .gwi-privacy-policy-box {
        grid-template-columns: 1fr;
    }

    .gwi-privacy-policy-heading h2 {
        font-size: 32px;
    }

    .gwi-privacy-policy-heading p {
        font-size: 16px;
    }

}

/*=========================================
        MOBILE RESPONSIVE
=========================================*/

@media(max-width:480px) {

    .gwi-privacy-policy-section {
        padding: 60px 12px;
    }

    .gwi-privacy-policy-heading h2 {
        font-size: 28px;
    }

    .gwi-privacy-policy-heading p {
        font-size: 14px;
        line-height: 1.7;
    }

    .gwi-privacy-policy-item {
        padding: 22px 18px;
        border-radius: 10px;
    }

    .gwi-privacy-policy-item h3 {
        font-size: 19px;
    }

    .gwi-privacy-policy-item p {
        font-size: 14px;
    }

    .gwi-privacy-policy-section::before {
        width: 160px;
        height: 160px;
        left: 0;
        top: 0;
    }

}

/* end privacy policy */

/* start refund  */
/*=========================================
    REFUND & CANCELLATION POLICY CSS
=========================================*/

.gwi-refund-section {
    width: 100%;
    padding: 90px 20px;
    /* background:#0d0d0d; */
    background:
        linear-gradient(135deg, #1a619b, #fff, #5086b3);
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

/* Background Glow */

.gwi-refund-section::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    background: rgba(255, 120, 0, 0.20);
    border-radius: 50%;
    top: 30px;
    left: 30px;
    filter: blur(18px);
    animation: gwiRefundGlow 8s ease-in-out infinite;
}

.gwi-refund-container {
    max-width: 1250px;
    margin: auto;
    position: relative;
    z-index: 2;
}

/*=========================================
    HEADING
=========================================*/

.gwi-refund-heading {
    text-align: center;
    margin-bottom: 55px;
}

.gwi-refund-heading h2 {
    font-size: 42px;
    color: #000;
    margin-bottom: 15px;
    font-weight: 700;
}

.gwi-refund-heading p {
    max-width: 850px;
    margin: auto;
    color: #000;
    font-size: 17px;
    line-height: 1.8;
}

/*=========================================
    GRID DESIGN
=========================================*/

.gwi-refund-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/*=========================================
    BOX DESIGN
=========================================*/

.gwi-refund-box {
    background: #ffffff;
    padding: 28px 24px;
    border-radius: 14px;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.18);
    animation: gwiRefundFade 1s ease forwards;
    opacity: 0;
}

/* Hover Effect */

.gwi-refund-box:hover {
    transform: translateY(-8px);
    /* background:linear-gradient(135deg,#ff7a00,#ff4d00); */
    background: linear-gradient(135deg, #7dff4d, #38d200);

}

.gwi-refund-box:hover h3,
.gwi-refund-box:hover p {
    color: #000;
}

/* Top Border */

.gwi-refund-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: #1a619b;
    /* background:#ff7a00; */
    transition: 0.5s ease;
}

.gwi-refund-box:hover::before {
    width: 100%;
}

/* Text */

.gwi-refund-box h3 {
    font-size: 22px;
    color: #111111;
    margin-bottom: 15px;
    transition: 0.4s;
}

.gwi-refund-box p {
    font-size: 15px;
    line-height: 1.8;
    color: #555555;
    transition: 0.4s;
}

/*=========================================
    ANIMATION DELAY
=========================================*/

.gwi-refund-box:nth-child(1) {
    animation-delay: 0.1s;
}

.gwi-refund-box:nth-child(2) {
    animation-delay: 0.2s;
}

.gwi-refund-box:nth-child(3) {
    animation-delay: 0.3s;
}

.gwi-refund-box:nth-child(4) {
    animation-delay: 0.4s;
}

.gwi-refund-box:nth-child(5) {
    animation-delay: 0.5s;
}

.gwi-refund-box:nth-child(6) {
    animation-delay: 0.6s;
}

.gwi-refund-box:nth-child(7) {
    animation-delay: 0.7s;
}

.gwi-refund-box:nth-child(8) {
    animation-delay: 0.8s;
}

/*=========================================
    KEYFRAMES
=========================================*/

@keyframes gwiRefundFade {

    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes gwiRefundGlow {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(25px);
    }

    100% {
        transform: translateY(0px);
    }

}

/*=========================================
    LAPTOP RESPONSIVE
=========================================*/

@media(max-width:1100px) {

    .gwi-refund-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

/*=========================================
    TABLET RESPONSIVE
=========================================*/

@media(max-width:768px) {

    .gwi-refund-section {
        padding: 70px 15px;
    }

    .gwi-refund-heading h2 {
        font-size: 34px;
    }

    .gwi-refund-heading p {
        font-size: 15px;
    }

    .gwi-refund-grid {
        gap: 20px;
    }

}

/*=========================================
    MOBILE RESPONSIVE
=========================================*/

@media(max-width:480px) {

    .gwi-refund-section {
        padding: 60px 12px;
    }

    .gwi-refund-heading h2 {
        font-size: 28px;
    }

    .gwi-refund-heading p {
        font-size: 14px;
        line-height: 1.7;
    }

    .gwi-refund-grid {
        grid-template-columns: 1fr;
    }

    .gwi-refund-box {
        padding: 22px 18px;
        border-radius: 10px;
    }

    .gwi-refund-box h3 {
        font-size: 19px;
    }

    .gwi-refund-box p {
        font-size: 14px;
    }

    .gwi-refund-section::before {
        width: 150px;
        height: 150px;
        left: 0;
        top: 0;
    }

}

/* end refund  */

/* start terms */
/*=========================================
        TERMS & CONDITIONS CSS
=========================================*/

.gwi-terms-section {
    width: 100%;
    padding: 90px 20px;
    /* background: #0d0d0d; */
    background:
        linear-gradient(135deg, #1a619b, #fff, #5086b3);
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

/* Background Glow */

.gwi-terms-section::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    background: rgba(255, 120, 0, 0.20);
    border-radius: 50%;
    top: 30px;
    left: 30px;
    filter: blur(18px);
    animation: gwiTermsGlow 8s ease-in-out infinite;
}

.gwi-terms-container {
    max-width: 1250px;
    margin: auto;
    position: relative;
    z-index: 2;
}

/*=========================================
        HEADING
=========================================*/

.gwi-terms-heading {
    text-align: center;
    margin-bottom: 55px;
}

.gwi-terms-heading h2 {
    font-size: 42px;
    color: #000;
    margin-bottom: 15px;
    font-weight: 700;
}

.gwi-terms-heading p {
    max-width: 850px;
    margin: auto;
    color: #000;
    font-size: 17px;
    line-height: 1.8;
}

/*=========================================
        GRID
=========================================*/

.gwi-terms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/*=========================================
        BOX DESIGN
=========================================*/

.gwi-terms-box {
    background: #000;
    padding: 28px 24px;
    border-radius: 14px;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.18);
    animation: gwiTermsFade 1s ease forwards;
    opacity: 0;
}

/* Hover Effect */

.gwi-terms-box:hover {
    transform: translateY(-8px);
    /* background: linear-gradient(135deg, #ff7a00, #ff4d00); */
    background: linear-gradient(135deg, #7dff4d, #38d200);
}

.gwi-terms-box:hover h3,
.gwi-terms-box:hover p {
    color: #000;
}

/* Top Border Animation */

.gwi-terms-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    /* background: #ff7a00; */
    background: #1a619b;
    transition: 0.5s ease;
}

.gwi-terms-box:hover::before {
    width: 100%;
}

/* Text */

.gwi-terms-box h3 {
    font-size: 22px;
    color: #111111;
    margin-bottom: 15px;
    transition: 0.4s;
}

.gwi-terms-box p {
    font-size: 15px;
    line-height: 1.8;
    color: #555555;
    transition: 0.4s;
}

/*=========================================
        ANIMATION DELAY
=========================================*/

.gwi-terms-box:nth-child(1) {
    animation-delay: 0.1s;
}

.gwi-terms-box:nth-child(2) {
    animation-delay: 0.2s;
}

.gwi-terms-box:nth-child(3) {
    animation-delay: 0.3s;
}

.gwi-terms-box:nth-child(4) {
    animation-delay: 0.4s;
}

.gwi-terms-box:nth-child(5) {
    animation-delay: 0.5s;
}

.gwi-terms-box:nth-child(6) {
    animation-delay: 0.6s;
}

.gwi-terms-box:nth-child(7) {
    animation-delay: 0.7s;
}

.gwi-terms-box:nth-child(8) {
    animation-delay: 0.8s;
}

/*=========================================
        KEYFRAMES
=========================================*/

@keyframes gwiTermsFade {

    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes gwiTermsGlow {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(25px);
    }

    100% {
        transform: translateY(0px);
    }

}

/*=========================================
        LAPTOP RESPONSIVE
=========================================*/

@media(max-width:1100px) {

    .gwi-terms-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

/*=========================================
        TABLET RESPONSIVE
=========================================*/

@media(max-width:768px) {

    .gwi-terms-section {
        padding: 70px 15px;
    }

    .gwi-terms-heading h2 {
        font-size: 34px;
    }

    .gwi-terms-heading p {
        font-size: 15px;
    }

    .gwi-terms-grid {
        gap: 20px;
    }

}

/*=========================================
        MOBILE RESPONSIVE
=========================================*/

@media(max-width:480px) {

    .gwi-terms-section {
        padding: 60px 12px;
    }

    .gwi-terms-heading h2 {
        font-size: 28px;
    }

    .gwi-terms-heading p {
        font-size: 14px;
        line-height: 1.7;
    }

    .gwi-terms-grid {
        grid-template-columns: 1fr;
    }

    .gwi-terms-box {
        padding: 22px 18px;
        border-radius: 10px;
    }

    .gwi-terms-box h3 {
        font-size: 19px;
    }

    .gwi-terms-box p {
        font-size: 14px;
    }

    .gwi-terms-section::before {
        width: 150px;
        height: 150px;
        left: 0;
        top: 0;
    }

}

/* end terms */

/* start team  */
.gwi-premium-team-section {
    position: relative;
    width: 100%;
    padding: 120px 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a619b, #ffffff, #5086b3);
}

/* ===================================
   BACKGROUND GLOW CIRCLES
=================================== */

.gwi-premium-bg-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.20;
    animation: gwiFloatMove 10s infinite linear;
}

.gwi-circle-1 {
    width: 320px;
    height: 320px;
    background: linear-gradient(135deg, #7dff4d, #38d200);
    top: -80px;
    left: -80px;
}

.gwi-circle-2 {
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, #1a619b, #5086b3);
    bottom: -100px;
    right: -60px;
    animation-delay: 3s;
}

.gwi-circle-3 {
    width: 220px;
    height: 220px;
    background: linear-gradient(135deg, #7dff4d, #38d200);
    top: 40%;
    left: 45%;
    animation-delay: 6s;
}

@keyframes gwiFloatMove {

    0% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-40px) scale(1.1);
    }

    100% {
        transform: translateY(0px) scale(1);
    }

}

/* ===================================
   CONTAINER
=================================== */

.gwi-premium-team-container {
    max-width: 1350px;
    margin: auto;
    position: relative;
    z-index: 2;
}

/* ===================================
   HEADING
=================================== */

.gwi-premium-heading {
    text-align: center;
    margin-bottom: 90px;
}

.gwi-premium-tagline {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 50px;
    background: linear-gradient(135deg, #7dff4d, #38d200);
    color: #000;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 25px;
    box-shadow: 0 10px 25px rgba(56, 210, 0, 0.3);
}

.gwi-premium-heading h2 {
    font-size: 40px;
    color: #0f2233;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.gwi-premium-heading h2 span {
    background: linear-gradient(135deg, #7dff4d, #38d200);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gwi-premium-heading p {
    max-width: 780px;
    margin: auto;
    color: #000;
    font-size: 17px;
    line-height: 1.9;
}

/* ===================================
   GRID
=================================== */

.gwi-premium-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* ===================================
   CARD
=================================== */

.gwi-premium-team-card {
    position: relative;
    background: rgba(255, 255, 255, 0.65);
    border-radius: 35px;
    overflow: hidden;
    backdrop-filter: blur(18px);
    transition: 0.6s ease;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.gwi-premium-team-card:hover {
    transform: translateY(-18px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
}

/* ===================================
   ANIMATED BORDER
=================================== */

.gwi-premium-border {
    position: absolute;
    inset: 0;
    border-radius: 35px;
    padding: 2px;
    background: linear-gradient(
        130deg,
        #7dff4d,
        #38d200,
        #1a619b,
        #5086b3,
        #7dff4d
    );
    background-size: 300% 300%;
    animation: gwiBorderAnim 6s linear infinite;

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;
    mask-composite: exclude;

    pointer-events: none;
}

@keyframes gwiBorderAnim {

    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }

}

/* ===================================
   IMAGE AREA
=================================== */

.gwi-premium-image-area {
    position: relative;
    height: 360px;
    overflow: hidden;
    border-radius: 28px;
    background: #fff;
}

/* WATERMARK */

.gwi-premium-image-area::after {
    content: "GET WEB INDIA";
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 11px;
    letter-spacing: 2px;
    padding: 6px 12px;
    border-radius: 20px;
    z-index: 5;
}

.gwi-premium-image-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 28px;
    transition: 0.8s ease;
    transform-origin: center center;
    will-change: transform;
    -webkit-user-drag: none;
    user-drag: none;
}

.gwi-premium-team-card:hover .gwi-premium-image-area img {
    transform: scale(1.08);
}

/* ===================================
   OVERLAY
=================================== */

.gwi-premium-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(26, 97, 155, 0.92),
        transparent
    );

    display: flex;
    align-items: flex-end;
    justify-content: center;

    padding-bottom: 25px;

    opacity: 0;
    transition: 0.6s ease;

    border-radius: 28px;
}

.gwi-premium-team-card:hover .gwi-premium-overlay {
    opacity: 1;
}

/* ===================================
   SOCIAL ICONS
=================================== */

.gwi-premium-social {
    display: flex;
    gap: 14px;
    transform: translateY(40px);
    transition: 0.5s ease;
}

.gwi-premium-team-card:hover .gwi-premium-social {
    transform: translateY(0);
}

.gwi-premium-social a {
    width: 48px;
    height: 48px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.15);

    color: #fff;
    text-decoration: none;

    font-size: 16px;

    backdrop-filter: blur(10px);

    transition: 0.4s ease;
}

.gwi-premium-social a:hover {
    background: linear-gradient(135deg, #7dff4d, #38d200);
    transform: translateY(-6px) scale(1.08);
}

/* ===================================
   CONTENT
=================================== */

.gwi-premium-content {
    text-align: center;
    padding: 25px 15px 20px;
}

.gwi-premium-role {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 40px;

    background: linear-gradient(135deg, #7dff4d, #38d200);

    color: #000;

    font-size: 13px;
    letter-spacing: 1px;

    margin-bottom: 18px;

    font-weight: 600;
}

.gwi-premium-content h3 {
    font-size: 26px;
    color: #10395b;
    margin-bottom: 15px;
    font-weight: 700;
}

.gwi-premium-content p {
    color: #35526d;
    line-height: 1.8;
    font-size: 15px;
}

/* ===================================
   CARD ANIMATION
=================================== */

.gwi-premium-team-card {
    animation: gwiFadeUp 1s ease;
}

.gwi-premium-team-card:nth-child(2) {
    animation-delay: 0.2s;
}

.gwi-premium-team-card:nth-child(3) {
    animation-delay: 0.4s;
}

.gwi-premium-team-card:nth-child(4) {
    animation-delay: 0.6s;
}

@keyframes gwiFadeUp {

    from {
        opacity: 0;
        transform: translateY(80px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

/* ===================================
   LAPTOP RESPONSIVE
=================================== */

@media(max-width:1200px) {

    .gwi-premium-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* ===================================
   TABLET RESPONSIVE
=================================== */

@media(max-width:768px) {

    .gwi-premium-team-section {
        padding: 90px 15px;
    }

    .gwi-premium-heading {
        margin-bottom: 60px;
    }

    .gwi-premium-heading h2 {
        font-size: 34px;
    }

    .gwi-premium-heading p {
        font-size: 15px;
        line-height: 1.7;
    }

    .gwi-premium-team-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    /* IMAGE FIX */

    .gwi-premium-image-area {
        height: auto;
        aspect-ratio: 3/4;
        border-radius: 24px;
    }

    .gwi-premium-image-area img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 24px;
        background: #fff;
    }

}

/* ===================================
   MOBILE RESPONSIVE
=================================== */

@media(max-width:480px) {

    .gwi-premium-team-section {
        padding: 70px 12px;
    }

    .gwi-premium-heading h2 {
        font-size: 28px;
    }

    .gwi-premium-tagline {
        font-size: 12px;
        padding: 8px 18px;
    }

    .gwi-premium-heading p {
        font-size: 14px;
    }

    .gwi-premium-team-card {
        border-radius: 28px;
        padding: 10px;
    }

    .gwi-premium-border {
        border-radius: 28px;
    }

    .gwi-premium-image-area {
        aspect-ratio: 3/4;
        border-radius: 20px;
    }

    .gwi-premium-image-area img {
        object-fit: contain;
        border-radius: 20px;
    }

    .gwi-premium-content {
        padding: 22px 15px 18px;
    }

    .gwi-premium-content h3 {
        font-size: 22px;
    }

    .gwi-premium-content p {
        font-size: 14px;
    }

    .gwi-premium-role {
        font-size: 12px;
        padding: 7px 16px;
    }

    .gwi-premium-social a {
        width: 42px;
        height: 42px;
        font-size: 14px;
    }

}

/* end team  */