:root {
    --primary: #4a47ff;
    --primary-light: #eef0ff;
    --accent: #d92525;
    --text: #333;
    --text-light: #666;
    --bg: #f8f9fa;
    --card-bg: #f9f9fb;
    --primary-color: #2a2a2a;
    --secondary-color: #6c757d;
    --accent-color: #ff6b6b;
       --primary: #feb100;
            --primary-light: #ffc107;
            --dark: #1e293b;
            --light: #f8fafc;
            --gray: #64748b;
}

.premium-header {
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 6px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo a img {
    width: 100%;
    height: 100%;
    max-height: 65px;
}

.navbar .nav-links {
    display: flex;
    list-style: none;
    gap: 66px;
    margin: 0;
}

.nav-links li a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-links li a:hover {
    color: #6c63ff;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #333;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .navbar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 55%;
        height: 49vh;
        background: #fff;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        z-index: 999;
    }

    .navbar.active {
        left: 0;
    }

    .nav-links {
        flex-direction: column;
        padding: 30px;
    }

    .menu-toggle {
        display: block;
    }

    .search-box {
        display: none;
    }

    .logo a img {
        width: 100%;
        height: 100%;
        max-height: 44px;
    }
}

/* hero section code start */
#module {
    height: 80vh;
}

#module .swiper {
    width: 100%;
    height: 100%;
}

#module .swiper .swiper-slide {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

#module .swiper .swiper-slide .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 4rem;
    color: var(--swiper-theme-color);
    position: relative;
    z-index: 2;
    max-width: 100%;
}

@media (width > 700px) {
    #module .swiper .swiper-slide .content {
        gap: 2rem;
    }
}

#module .swiper .swiper-slide .content .title {
    font-size: 38px;
    text-transform: none;
    text-shadow: rgb(0, 0, 0) 0 0 3px;
    width: 625px;
    max-width: 100%;
}

@media (width > 700px) {
    #module .swiper .swiper-slide .content .title {
        font-size: 58px;
    }
}

#module .swiper .swiper-slide .content .description {
    font-size: 18px;
    line-height: 1.4;
    text-shadow: rgb(0, 0, 0) 0 0 3px;
}

#module .swiper .swiper-slide .content a {
    background-color: var(--swiper-theme-color);
    padding: 11px 20px;
    font-size: 12px;
    background: #fff;
    color: #05141f;
    min-width: 80px;
    font-weight: 600;
    text-decoration: none;
}

@media (width > 700px) {
    #module .swiper .swiper-slide .content a {
        padding: 21px 40px;
        font-size: 14px;
    }
}

#module .swiper .swiper-slide .content a:hover {
    text-decoration: underline;
}

#module .swiper .swiper-slide .img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#module .swiper .swiper-slide .img .pixel-transition {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(4, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}

#module .swiper .swiper-slide .img .pixel-transition div {
    background-color: rgb(255, 255, 255);
}

#module .swiper .swiper-slide .img .pixel-transition div:nth-child(1) {
    animation: fade 350ms forwards;
}

#module .swiper .swiper-slide .img .pixel-transition div:nth-child(6) {
    animation: fade 350ms 100ms forwards;
}

#module .swiper .swiper-slide .img .pixel-transition div:nth-child(11) {
    animation: fade 350ms 150ms forwards;
}

#module .swiper .swiper-slide .img .pixel-transition div:nth-child(16) {
    animation: fade 350ms forwards;
}

#module .swiper .swiper-slide .img .pixel-transition div:nth-child(2) {
    animation: fade 350ms 250ms forwards;
}

#module .swiper .swiper-slide .img .pixel-transition div:nth-child(7) {
    animation: fade 350ms 200ms forwards;
}

#module .swiper .swiper-slide .img .pixel-transition div:nth-child(12) {
    animation: fade 350ms 280ms forwards;
}

#module .swiper .swiper-slide .img .pixel-transition div:nth-child(17) {
    animation: fade 350ms 200ms forwards;
}

#module .swiper .swiper-slide .img .pixel-transition div:nth-child(3) {
    animation: fade 350ms 300ms forwards;
}

#module .swiper .swiper-slide .img .pixel-transition div:nth-child(8) {
    animation: fade 350ms 400ms forwards;
}

#module .swiper .swiper-slide .img .pixel-transition div:nth-child(13) {
    animation: fade 350ms 450ms forwards;
}

#module .swiper .swiper-slide .img .pixel-transition div:nth-child(18) {
    animation: fade 350ms 300ms forwards;
}

#module .swiper .swiper-slide .img .pixel-transition div:nth-child(4) {
    animation: fade 350ms 550ms forwards;
}

#module .swiper .swiper-slide .img .pixel-transition div:nth-child(9) {
    animation: fade 350ms 530ms forwards;
}

#module .swiper .swiper-slide .img .pixel-transition div:nth-child(14) {
    animation: fade 350ms 600ms forwards;
}

#module .swiper .swiper-slide .img .pixel-transition div:nth-child(19) {
    animation: fade 350ms 560ms forwards;
}

#module .swiper .swiper-slide .img .pixel-transition div:nth-child(5) {
    animation: fade 350ms 700ms forwards;
}

#module .swiper .swiper-slide .img .pixel-transition div:nth-child(10) {
    animation: fade 350ms 800ms forwards;
}

#module .swiper .swiper-slide .img .pixel-transition div:nth-child(15) {
    animation: fade 350ms 850ms forwards;
}

#module .swiper .swiper-slide .img .pixel-transition div:nth-child(20) {
    animation: fade 350ms 700ms forwards;
}

#module .swiper .swiper-slide .img img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.lgo-filter {
    background-color: black;
    padding: 6px;
}


/* @media (width > 700px) {
  #module .swiper .swiper-button-next,
  #module .swiper .swiper-button-prev {
    border-radius: 84px;
    width: 84px;
    height: 84px;
  }
} */

/* #module .swiper .swiper-button-next svg,
#module .swiper .swiper-button-prev svg {
  position: relative;
  display: block;
  width: 20px;
} */
/* @media (width > 700px) {
  #module .swiper .swiper-button-next svg,
  #module .swiper .swiper-button-prev svg {
    width: 30px;
  }
} */
/* #module .swiper .swiper-button-next:hover,
#module .swiper .swiper-button-prev:hover {
  opacity: 1;
}
#module .swiper .swiper-button-next::after,
#module .swiper .swiper-button-prev::after {
  display: none;
} */
#module .swiper .swiper-button-next {
    right: 2rem;
}

#module .swiper .swiper-button-prev {
    left: 2rem;
}

#module .swiper .swiper-pagination {
    bottom: 1.5rem;
}

#module .swiper .swiper-pagination .swiper-pagination-bullet {
    border-radius: 0;
    width: 35px;
    height: 4px;
    margin: 0 5px;
    background-color: #fff;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    display: none;
}

.swiper-button-next svg,
.swiper-button-prev svg {
    display: none;
}

@media (width > 700px) {
    #module .swiper .swiper-pagination .swiper-pagination-bullet {
        width: 45px;
    }
}

#module .swiper .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #fff;
}

@keyframes fade {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

/* hero section code end  */
.section-wrapper {
    margin: 3rem auto;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    padding: 3rem 2.5rem;
    overflow: hidden;
    position: relative;
}
.footer-imglogo{
    width: 170px;
    /* height: 100px; */
    margin-top: 7px;
    filter: invert(1);
}

.section-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, #fe6e00 0%, #feb100 100%);
}

.icon-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 14px;
    /* background-color: var(--primary-light); */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.icon-wrapper:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(74, 71, 255, 0.2);
}

.icon-wrapper img {
    width: 100%;
    height: 100%;
    max-width: 100px;
}

h2 {
    font-weight: 800;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--text), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.highlight-dot {
    color: var(--accent);
    font-weight: 900;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.description {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 24rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

.partners-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.partner-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 1.5rem;
    height: 100%;
    min-height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.partner-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #fe6e00 0%, #feb100 100%);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(74, 74, 255, 0.1);
    background-color: var(--primary-light);
}

.partner-card:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.partner-logo {
    max-height: 138px;
    max-width: 100%;
    object-fit: contain;
    opacity: 0.8;
    transition: all 0.4s ease;
}

.partner-card:hover .partner-logo {
    filter: grayscale(0%) contrast(1);
    opacity: 1;
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .section-wrapper {
        padding: 2rem 1.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .partners-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .section-wrapper {
        padding: 1.5rem 1rem;
    }

    .partners-container {
        grid-template-columns: 1fr;
    }

    .partner-card {
        min-height: 80px;
    }
}

/* product section css  end*/





.footer {
    background: linear-gradient(105deg, #515151, #000000);
    padding-top: 34px;
    padding-bottom: 0px;

    .single_footer {}

    @media only screen and (max-width:768px) {
        .single_footer {
            margin-bottom: 30px;
        }
    }

    .single_footer h4 {
        color: #fff;
        margin-top: 0;
        margin-bottom: 25px;
        font-weight: 700;
        text-transform: uppercase;
        font-size: 20px;
    }

    .single_footer h4::after {
        content: "";
        display: block;
        height: 2px;
        width: 40px;
        background: #fff;
        margin-top: 20px;
    }

    .single_footer p {
        color: #fff;
        padding-top: 32px;
    }

    .single_footer ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .single_footer ul li {}

    .single_footer ul li a {
        color: #fff;
        -webkit-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s;
        line-height: 36px;
        font-size: 15px;
        text-transform: capitalize;
    }

    .single_footer ul li a:hover {
        color: #ff3666;
    }

    .single_footer_address {}

    .single_footer_address ul {}

    .single_footer_address ul li {
        color: #fff;
    }

    .single_footer_address ul li span {
        font-weight: 400;
        color: #fff;
        line-height: 28px;
    }

    .contact_social ul {
        list-style: outside none none;
        margin: 0;
        padding: 0;
    }

    /*START NEWSLETTER CSS*/
    .subscribe {
        display: block;
        position: relative;
        margin-top: 15px;
        width: 100%;
    }

    .subscribe__input {
        background-color: #fff;
        border: medium none;
        border-radius: 5px;
        color: #333;
        display: block;
        font-size: 15px;
        font-weight: 500;
        height: 60px;
        letter-spacing: 0.4px;
        margin: 0;
        padding: 0 150px 0 20px;
        text-align: center;
        text-transform: capitalize;
        width: 100%;
    }

    @media only screen and (max-width:768px) {
        .subscribe__input {
            padding: 0 50px 0 20px;
        }
    }

    .subscribe__btn {
        background-color: transparent;
        border-radius: 0 25px 25px 0;
        color: #01c7e9;
        cursor: pointer;
        display: block;
        font-size: 20px;
        height: 60px;
        position: absolute;
        right: 0;
        top: 0;
        width: 60px;
    }

    .subscribe__btn i {
        transition: all 0.3s ease 0s;
    }

    @media only screen and (max-width:768px) {
        .subscribe__btn {
            right: 0px;
        }
    }

    .subscribe__btn:hover i {
        color: #ff3666;
    }

    button {
        padding: 0;
        border: none;
        background-color: transparent;
        -webkit-border-radius: 0;
        border-radius: 0;
    }

    /*END NEWSLETTER CSS*/

    /*START SOCIAL PROFILE CSS*/
    .social_profile {
        margin-top: 40px;
    }

    .social_profile ul {
        list-style: outside none none;
        margin: 0;
        padding: 0;
    }

    .social_profile ul li {
        float: left;
    }

    .social_profile ul li a {
        text-align: center;
        border: 0px;
        text-transform: uppercase;
        transition: all 0.3s ease 0s;
        margin: 0px 5px;
        font-size: 18px;
        color: #fff;
        border-radius: 30px;
        width: 50px;
        height: 50px;
        line-height: 50px;
        display: block;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    @media only screen and (max-width:768px) {
        .social_profile ul li a {
            margin-right: 10px;
            margin-bottom: 10px;
        }
    }

    @media only screen and (max-width:480px) {
        .social_profile ul li a {
            width: 40px;
            height: 40px;
            line-height: 40px;
        }
    }

    .social_profile ul li a:hover {
        background: #ff3666;
        border: 1px solid #ff3666;
        color: #fff;
        border: 0px;
    }

    /*END SOCIAL PROFILE CSS*/
    .copyright {
        margin-top: 40px;
        padding-top: 20px;
        color: #fff;
        font-size: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.4);
        text-align: center;
    }

    .copyright a {
        color: #01c7e9;
        transition: all 0.2s ease 0s;
    }

    .copyright a:hover {
        color: #ff3666;
    }
}

.barand-names {
    background-image: linear-gradient(135deg, #ffffff 0%, #fef5e0 100%);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.content-wrapper {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: 50px auto;
    max-width: 1200px;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.content-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: -1;
    animation: pulse 8s infinite alternate;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.content-left {
    padding: 45px;
    position: relative;
}

.image-right {
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #e0e0e0, #f5f5f5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
}

.image-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 50%);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) skew(-20deg);
    }

    100% {
        transform: translateX(100%) skew(-20deg);
    }
}

.brand-title {
    font-weight: 700;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.brand-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 70px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.highlight {
    color: var(--secondary-color);
    font-size: 1.2rem;
    line-height: normal;
    margin-bottom: 18px;
    font-weight: 500;
}

.country-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 30px 0;
}

.country-item {
    background: rgba(42, 42, 42, 0.08);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.country-item:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.testimonial {
    font-style: italic;
    color: #555;
    border-left: 3px solid var(--accent-color);
    padding-left: 20px;
    margin: 20px 0;
    font-size: 1rem;
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 10px;
    font-size: 4rem;
    color: rgba(255, 107, 107, 0.1);
    font-family: serif;
    line-height: 1;
}

.cta-button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 15px 35px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 30px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.cta-button:focus:not(:active)::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }

    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}




@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    100% {
        transform: translateY(-1000px) rotate(720deg);
    }
}

@media (max-width: 992px) {
    .content-left {
        padding: 34px;
    }

    .brand-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .content-left {
        padding: 26px;
    }

    .image-right {
        height: 350px;
    }

    .brand-title {
        font-size: 2rem;
    }

    .highlight {
        font-size: 1rem;
    }
}
 .contact-hero {
            position: relative;
            padding: 5rem 0;
            background-color: var(--light);
            overflow: hidden;
        }
        
        /* Animated Background Elements */
        .animated-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            overflow: hidden;
        }
        
        .animated-bg .shape {
            position: absolute;
            opacity: 0.1;
            animation: float 15s infinite ease-in-out;
        }
        
        .circle {
            border-radius: 50%;
            background: var(--primary);
        }
        
        .circle-1 {
            width: 300px;
            height: 300px;
            top: -50px;
            left: -50px;
            animation-delay: 0s;
        }
        
        .circle-2 {
            width: 200px;
            height: 200px;
            bottom: -30px;
            right: 50px;
            animation-delay: 2s;
        }
        
        .triangle {
            width: 0;
            height: 0;
            border-style: solid;
            border-color: transparent;
            border-bottom-color: var(--primary);
        }
        
        .triangle-1 {
            border-width: 0 50px 100px 50px;
            top: 20%;
            right: 10%;
            animation-delay: 1s;
            transform: rotate(15deg);
        }
        
        .square {
            background: var(--primary);
            transform: rotate(15deg);
        }
        
        .square-1 {
            width: 100px;
            height: 100px;
            bottom: 20%;
            left: 10%;
            animation-delay: 3s;
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0) translateX(0) rotate(0deg);
            }
            25% {
                transform: translateY(-20px) translateX(10px) rotate(5deg);
            }
            50% {
                transform: translateY(10px) translateX(-15px) rotate(-5deg);
            }
            75% {
                transform: translateY(-10px) translateX(-5px) rotate(3deg);
            }
        }
        
        /* Content Styling */
        .contact-content {
            position: relative;
            z-index: 2;
        }
        
        .contact-heading {
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        .contact-subheading {
            color: var(--gray);
            font-weight: 400;
            margin-bottom: 2rem;
            font-size: 1.1rem;
        }
        
        .contact-card {
            background: white;
            border-radius: 12px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
        }
        
        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            background: rgba(254, 177, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }
        
        .contact-method {
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 0.5rem;
        }
        
        .contact-detail {
            color: var(--gray);
            margin-bottom: 0;
        }
        
        /* Contact Form Styling */
        .contact-form {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
                z-index: 999;
    position: relative;
        }
        
        .form-control {
            padding: 12px 15px;
            border-radius: 8px;
            border: 1px solid #e2e8f0;
            margin-bottom: 1.5rem;
        }
        
        .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 0.25rem rgba(254, 177, 0, 0.25);
        }
        
        .submit-btn {
            background: var(--primary);
            border: none;
            padding: 12px 30px;
            font-weight: 500;
            border-radius: 8px;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: white;
            width: 100%;
        }
        
        .submit-btn:hover {
            background: var(--primary-light);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(254, 177, 0, 0.3);
        }
        
        .submit-btn i {
            margin-right: 0.5rem;
        }
        
        .contact-image {
            border-radius: 12px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.5s ease;
        }
        
        .contact-image:hover {
            transform: scale(1.02);
        }
        
        @media (max-width: 992px) {
            .contact-hero {
                padding: 4rem 0;
            }
            
            .contact-heading {
                font-size: 2.2rem;
            }
        }
        
        @media (max-width: 768px) {
            .contact-hero {
                padding: 3rem 0;
            }
            
            .contact-heading {
                font-size: 1.8rem;
            }
            
            .contact-subheading {
                font-size: 1rem;
            }
            
            .animated-bg .shape {
                opacity: 0.08;
            }
            
            .contact-form {
                padding: 1.5rem;
            }
            #module .swiper .swiper-slide .img img{
                height: 240px;
            }
            #module {
        height: 240px;            }
            img {
    width: 100%;
}
        }

        .cta-button a{
            color: white;
            text-decoration: none;
        }