@import url('https://fonts.googleapis.com/css2?family=Lalezar&family=Lato:wght@300;400&display=swap');

/* parameters */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #131525;
}

@font-face {
    font-family: Mont;
    src: url(Mont.otf);
}

h1,
h2,
h3 {
    font-family: Mont;
    line-height: 1.2;
    color: #fff;
}

h4 {
    font-family: Lalezar;
    line-height: 1.2;
    color: #fff;
    font-weight: 400;
}

p,
li,
.menu a{
    font-family: Lato;
    color: #fff;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(24, 26, 41, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.gap {
    padding: 50px 0;
}

.flex {
    display: flex;
    flex-wrap: wrap;
}

.space-bw {
    justify-content: space-between;
}

.space-bw-center {
    justify-content: center;
}

.align-center {
    align-items: center;
}

span {
    position: relative;
}

span::after {
    content: '';
    position: absolute;
    background: linear-gradient(90deg, #1E88E5 0%, #64B5F6 100%);
    border-radius: 28px;
    opacity: 0.3;
    filter: blur(25px);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.col-90 {
    width: 84%;
}

.col-60 {
    width: 59%;
}

.col-50 {
    width: 32%;
}

.col-61 {
    width: 49%;
}

.col-40 {
    width: 39%;
}

.col-33 {
    width: 32.33%;
}

.col-25 {
    width: 24%;
}

.col-30 {
    width: 29%;
}

.col-20 {
    width: 19%;
}

.col-10 {
    width: 14%;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.same-text {
    margin-bottom: 40px;
    text-align: center;
}

.same-text h2 {
    font-size: 40px;
    margin-bottom: 15px;
}

.mb {
    margin-bottom: 20px;
}

.padTop {
    padding-top: 5%;
}

.pos-relate {
    position: relative;
}

/* parameters */

/* scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #d1e5ff;
}

::-webkit-scrollbar-thumb {
    background: #131524;
    border-radius: 20px;
}


.call button {
    height: 40px;
    width: 130px;
    background: linear-gradient(90deg, #FF8C00 0%, #FFA500 100%);
    color: white;
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.call button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
}

/* scrollbar */

/* parallax scrolling */
.parallax {
    background-image: url("82318-577813568_small-ezgif.com-video-to-gif-converter.gif");
    min-height: 500px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}




.parallax2 {
    background-image: url("img2/downcoverimg.jpg");
    min-height: 500px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* parallax scrolling */

.head-section {
    position: relative;
}

.head-section::after {
    content: '';
    position: absolute;
    background: url(images/clouds.png);
    width: 100%;
    bottom: 0;
    left: 0;
    height: 50%;
    background-repeat: no-repeat;
    z-index: 1;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
}

.logo img {
    width: 140px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 6px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FF8C00 0%, #FFA500 100%);
    transition: width 0.3s ease;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: #FF8C00;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(24, 26, 41, 0.98);
    backdrop-filter: blur(10px);
    min-width: 250px;
    border-radius: 10px;
    padding: 10px 0;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu li a {
    padding: 12px 20px;
    display: block;
    color: #fff;
    font-size: 15px;
    transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
    background: rgba(255, 140, 0, 0.1);
    color: #FF8C00;
    padding-left: 25px;
}

/* Call Button Styles */
.nav-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.call-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    /* background: linear-gradient(90deg, #FF8C00 0%, #FFA500 100%); */
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

.call-btn i {
    font-size: 18px;
}

/* Mobile Toggle Button */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.mobile-toggle.active {
    transform: rotate(90deg);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-links {
        gap: 20px;
    }
    
    .nav-links li a {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(24, 26, 41, 0.95);
        backdrop-filter: blur(10px);
        transition: left 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
        padding: 20px;
    }

    .menu.active {
        left: 0;
    }

    .nav-links {
        flex-direction: column;
        padding: 0;
        gap: 15px;
    }

    .nav-links li {
        margin: 0;
        width: 100%;
    }

    .nav-links li a {
        font-size: 18px;
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .dropdown {
        position: relative;
    }

    .dropdown > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        background: rgba(255, 255, 255, 0.05);
        border: none;
        box-shadow: none;
        padding: 0;
        margin: 0;
        display: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .dropdown.active .dropdown-menu {
        display: block;
        max-height: 500px;
        padding: 10px 0;
    }

    .dropdown-menu li {
        margin: 0;
    }

    .dropdown-menu li a {
        padding: 10px 20px;
        font-size: 16px;
        color: rgba(255, 255, 255, 0.8);
        border-bottom: none;
    }

    .dropdown-menu li a:hover {
        color: #ff6b6b;
        background: rgba(255, 255, 255, 0.05);
    }

    .mobile-toggle {
        display: block;
        background: none;
        border: none;
        color: white;
        font-size: 24px;
        cursor: pointer;
        padding: 10px;
        transition: transform 0.3s ease;
    }

    .mobile-toggle.active {
        transform: rotate(90deg);
        color: #ff6b6b;
    }

    body.menu-open {
        overflow: hidden;
    }
}

@media (max-width: 480px) {
    .menu {
        padding-top: 70px;
    }

    .nav-links {
        padding: 15px;
        gap: 15px;
    }

    .nav-links li a {
        font-size: 16px;
        padding: 12px;
    }

    .dropdown-menu li a {
        font-size: 14px;
        padding: 8px 15px;
    }
}

.menu ul li {
    margin: 0 20px;
    position: relative;
}

.menu ul li i {
    font-size: 12px;
    margin-left: 5px;
    cursor: pointer;
}

.menu ul.coursesDrop {
    position: absolute;
    background: #131525;
    z-index: 999;
    width: 250px;
    height: 250px;
    overflow: auto;
    top: 30px;
    border-radius: 10px;
    display: none;
}

.menu ul.coursesDrop :hover{
    background: #df7030;
    color: #000;
}

.menu ul.coursesDrop li {
    border-bottom: 1px solid #f8f5f5;
    padding: 10px;
    margin: 0;
}

.menu ul.coursesDrop li:last-of-type {
    border-bottom: none;
}

.menu ul.coursesDrop li a {
    color: #fff;
    font-weight: 500;
    font-size: 14px;
}

.menu ul.coursesDrop.active {
    display: block;
}

.chat p {
    padding-right: 5px;
}

.chat ul li {
    margin: 0 5px;
}

.chat ul li a i.fa-whatsapp {
    background: linear-gradient(180deg, #60D668 0%, #1B8C23 100%);
    color: #fff;
    padding: 10px;
    border-radius: 50%;
    font-size: 20px;
}

.chat ul li a i.fa-paper-plane {
    background: linear-gradient(180deg, #2AABEE 0%, #0F6490 100%);
    color: #fff;
    padding: 10px;
    border-radius: 50%;
    font-size: 20px;
}

.chat ul li .fa-instagram{
    background: linear-gradient(180deg, #ee2a65 0%, #e93737 100%);
    color: #fff;
    padding: 10px;
    border-radius: 50%;
    font-size: 20px;
}

.chat ul li .fa-facebook-f{
    background: linear-gradient(180deg, #451cda 0%, #323eeb 100%);
    color: #fff;
    padding: 10px;
    border-radius: 50%;
    font-size: 20px;
}


.call-us a {
    color: #4ccce8;
    font-size: 14px;
    text-decoration: underline;
}
.call-us p{
    font-size: 12px;
}
.hero-text {
    position: relative;
    z-index: 99;
}

.hero-text h1 {
    font-size: 44px;
    margin-bottom: 15px;
    position: relative;
    z-index: 99;
}

.hero-text p {
    margin-bottom: 25px;
}

.hero-text a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: transparent;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: none;
    border-radius: 30px;
    box-shadow: 0 0 15px rgba(255, 140, 0, 0.1);
}

/* Button background effect */
.hero-text a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #FF8C00 0%, #FFA500 100%);
    background-size: 200% 100%;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    border-radius: 30px;
}

/* Button border effect */
.hero-text a::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid #FF8C00;
    border-radius: 30px;
    transition: all 0.4s ease;
}

/* Hover effects */
.hero-text a:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 140, 0, 0.3);
    color: #fff;
}

.hero-text a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.hero-text a:hover::after {
    border-color: transparent;
}

/* Add shimmer effect */
@keyframes shimmer {
    0% {
        background-position: -100% 0;
    }
    100% {
        background-position: 100% 0;
    }
}

.hero-text a::before {
    background: linear-gradient(
        90deg,
        #FF8C00 0%,
        #FFA500 50%,
        #FF8C00 100%
    );
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
}

.call-btn {
    position: relative;
}

.call-btn::after {
    content: '';
    width: 100px;
    height: 75px;
    position: absolute;
    background: url(images/call.png);
    background-repeat: no-repeat;
    bottom: -60px;
    left: 60px;
}

.play-btn img {
    animation: rotate infinite 3s linear;
}

@keyframes rotate {

    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.hero-section {
    padding: 10% 0 10% 6%;
}


.hero-image img {
    display: block;
    width: 100%;
}

.redBackText {
    padding: 10px;
    background: #1E88E5;
    font-size: 18px;
    text-transform: uppercase;
    transform: rotate(-2deg);
    margin-bottom: -5px;
    display: inline-block;
}

.toggle {
    display: none;
}

.toggle i {
    font-size: 20px;
    color: #fff;
}

/* choose us section */

.common-choose {
    width: 100%;
    padding: 30px;
    border-radius: 8px;
    background: #191b2a;
    margin-bottom: 15px;
}

/* .common-text {
    padding-right: 100px;
} */

.common-text h4 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 400;
}

.common-text p {
    line-height: 1.6;
    letter-spacing: .5px;
}

.common-choose img {
    display: block;
    width: 100%;
}

.placement,
.network,
.faculty {
    background: linear-gradient(rgba(19, 21, 36, 0.9), rgba(19, 21, 36, 0.9)), url(images/placement.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.network {
    background: linear-gradient(rgba(19, 21, 36, 0.9), rgba(19, 21, 36, 0.9)), url(images/network.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.faculty {
    background: linear-gradient(rgba(19, 21, 36, 0.9), rgba(19, 21, 36, 0.9)), url(images/faculty.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.placement p {
    margin-bottom: 50px;
}

.placement::after {
    content: '';
    position: absolute;
    background: url(images/hand-shake.png);
    width: 32%;
    height: 75%;
    bottom: -7px;
    right: -30px;
    background-repeat: no-repeat;
    background-size: cover;
}

.industry {
    position: relative;
}

.industry::after {
    content: '';
    /* position: absolute; */
    width: 31%;
    height: 54%;
    right: -30px;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 9;
}

.industry::before {
    content: '';
    position: absolute;
    background: url(images/flower.png);
    width: 37%;
    height: 60%;
    bottom: 0px;
    right: 0px;
    background-repeat: no-repeat;
    background-size: cover;
}

/* courses we offer */
.courses-we-offer {
    width: 100%;
    background: url(images/courses-back.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 60px 0;
}

.courses-we-offer .text-center {
    margin-top: 40px;
    text-align: center;
}

.courses-we-offer .text-center a {
    display: inline-block;
    background: linear-gradient(90deg, #FF8C00 0%, #FFA500 100%);
    font-size: 16px;
    border-radius: 30px;
    padding: 15px 40px;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.2);
    border: 2px solid transparent;
}

.courses-we-offer .text-center a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.4);
    border-color: #FF8C00;
}

.courses-we-offer .text-center a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
}

.courses-we-offer .text-center a:hover::before {
    left: 100%;
}

.courses-video {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}
.courses-video img{
background-size: cover;
height: 250px;
width: 384px;
}
.courses-video:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.courses-video:nth-child(3),
.courses-video:nth-child(4) {
    margin-bottom: 30px;
}

.courses-video video {
    width: 100%;
    height: 250px;
    border-radius: 20px;
    display: block;
    object-fit: cover;
    opacity: 0.7;
    transition: all 0.5s ease;
}

.courses-video:hover video {
    opacity: 1;
    transform: scale(1.05);
}

.video-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px 30px;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    border-radius: 0 0 20px 20px;
}

.video-text h3 {
    text-transform: uppercase;
    font-size: 24px;
    color: #fff;
    margin: 0;
    font-weight: 600;
    letter-spacing: 1px;
}

.video-text i {
    font-size: 24px;
    transform: rotate(45deg);
    color: #fff;
    transition: all 0.3s ease;
}

.courses-video:hover .video-text i {
    transform: rotate(45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
    .courses-video {
        margin-bottom: 20px;
    }
    
    .courses-video video {
        height: 200px;
    }
    
    .video-text {
        padding: 15px 20px;
    }
    
    .video-text h3 {
        font-size: 18px;
    }
    
    .video-text i {
        font-size: 20px;
    }

    .courses-we-offer .text-center a {
        padding: 12px 30px;
        font-size: 14px;
    }
}

/* testimonials section */
.testimonials-slider {
    position: relative;
    padding: 20px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.slides {
    background: rgba(25, 27, 42, 0.95);
    border-radius: 15px;
    padding: 30px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 140, 0, 0.2);
    height: 380px;
    width: 450px;
}

.slides::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #FF8C00 0%, #FFA500 100%);
}

.slides:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 140, 0, 0.5);
}

.slides .flex {
    gap: 0;
    align-items: flex-start;
    flex-direction: column;
    height: 100%;
}

.slides .col-90 {
    background: transparent;
    padding: 0;
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.slides .col-90 p {
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 15px;
    font-style: italic;
    position: relative;
    padding-left: 20px;
    flex-grow: 1;
    overflow-y: auto;
}

.slides .col-90 p::-webkit-scrollbar {
    width: 5px;
}

.slides .col-90 p::-webkit-scrollbar-track {
    background: rgba(255, 140, 0, 0.1);
    border-radius: 10px;
}

.slides .col-90 p::-webkit-scrollbar-thumb {
    background: #FF8C00;
    border-radius: 10px;
}

.slides .col-90 p::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: -5px;
    font-size: 40px;
    color: #FF8C00;
    opacity: 0.5;
    font-family: serif;
}

.slides .col-10 {
    display: none;
}

.slides .text-right {
    display: flex;
    gap: 5px;
    justify-content: flex-end;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.slides .text-right i {
    color: #FF8C00;
    font-size: 18px;
    transition: all 0.3s ease;
}

.slides:hover .text-right i {
    color: #FFA500;
    transform: scale(1.1);
}

/* Testimonial Navigation Dots */
.testimonials-slider ul.slick-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    width: 100%;
}

.testimonials-slider ul.slick-dots li {
    margin: 0;
}

.testimonials-slider ul.slick-dots li button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 140, 0, 0.3);
    border: 2px solid #FF8C00;
    transition: all 0.3s ease;
}

.testimonials-slider ul.slick-dots li.slick-active button {
    background: #FF8C00;
    transform: scale(1.2);
}

/* Testimonial Navigation Arrows */
.testimonials-slider button.slick-prev,
.testimonials-slider button.slick-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    border: none;
    transition: all 0.3s ease;
    z-index: 1;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
}

.testimonials-slider button.slick-prev {
    left: -20px;
}

.testimonials-slider button.slick-next {
    right: -20px;
}

.testimonials-slider button.slick-prev:hover,
.testimonials-slider button.slick-next:hover {
    background: transparent;
    transform: translateY(-50%) scale(1.1);
    box-shadow: none;
}

.testimonials-slider button.slick-prev::before,
.testimonials-slider button.slick-next::before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #FF8C00;
    font-size: 28px;
    transition: all 0.3s ease;
}

.testimonials-slider button.slick-prev::before {
    content: '\f104';
}

.testimonials-slider button.slick-next::before {
    content: '\f105';
}

.testimonials-slider button.slick-prev:hover::before,
.testimonials-slider button.slick-next:hover::before {
    color: #FFA500;
    transform: scale(1.1);
}

/* Responsive Design for Navigation */
@media (max-width: 768px) {
    .slides {
        padding: 20px;
        width: 90%;
        height: auto;
        min-height: 380px;
    }
    
    .slides .col-90 p {
        font-size: 14px;
        padding-left: 15px;
    }
    
    .slides .col-90 p::before {
        font-size: 30px;
    }
    
    .testimonials-slider button.slick-prev,
    .testimonials-slider button.slick-next {
        width: 30px;
        height: 30px;
    }
    
    .testimonials-slider button.slick-prev {
        left: -15px;
    }
    
    .testimonials-slider button.slick-next {
        right: -15px;
    }
    
    .testimonials-slider button.slick-prev::before,
    .testimonials-slider button.slick-next::before {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .slides {
        width: 95%;
    }
}

/* Contact Section Styling */
.contact-section {
    width: 100%;
    background: linear-gradient(rgba(19, 21, 36, 0.9), rgba(19, 21, 36, 0.9)), url(images/contact-back.gif);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(images/pattern.png);
    opacity: 0.05;
    z-index: 1;
}

.contact-section .container {
    position: relative;
    z-index: 2;
}

.contact-section .same-text {
    margin-bottom: 60px;
    text-align: center;
    position: relative;
}

.contact-section .same-text h2 {
    font-size: 42px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.contact-section .same-text h2 span {
    color: #FF8C00;
    position: relative;
}

.contact-section .same-text h2 span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #FF8C00 0%, #FFA500 100%);
    border-radius: 3px;
}

.contact-section .same-text p {
    font-size: 18px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
}

.contact-section .flex {
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-section .col-50 {
    background: rgba(25, 27, 42, 0.7);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 140, 0, 0.2);
    transition: all 0.3s ease;
    width: 48%;
    min-width: 500px;
}

.contact-section .col-50:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 140, 0, 0.5);
}

.contact-section .mb {
    margin-bottom: 25px;
    background: rgba(255, 140, 0, 0.1);
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-section .mb:hover {
    background: rgba(255, 140, 0, 0.2);
    transform: translateX(5px);
}

.contact-section .type_btn {
    margin-right: 25px;
    min-width: 140px;
}

.contact-section .type_btn p {
    background: linear-gradient(90deg, #FF8C00 0%, #FFA500 100%);
    padding: 12px 20px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
    transition: all 0.3s ease;
}

.contact-section .mb:hover .type_btn p {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.4);
}

.contact-section .type_btn i {
    font-size: 18px;
    margin-right: 10px;
    color: #fff;
}

.contact-section .mb div:last-child p {
    font-size: 16px;
    line-height: 1.5;
}

.contact-form {
    background: rgba(25, 27, 42, 0.7);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 140, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 48%;
    min-width: 500px;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #FF8C00 0%, #FFA500 100%);
}

.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 140, 0, 0.5);
}

.form-top {
    padding: 15px;
    background: linear-gradient(90deg, #FF8C00 0%, #FFA500 100%);
    font-size: 20px;
    text-transform: uppercase;
    transform: rotate(-2deg);
    margin-bottom: 30px;
    width: 90%;
    text-align: center;
    margin: 0 auto 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: 1px solid rgba(255, 140, 0, 0.3);
    outline: none;
    background: rgba(19, 21, 36, 0.7);
    border-radius: 10px;
    padding: 18px;
    font-size: 16px;
    font-family: Lato;
    color: #fff;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #FF8C00;
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group.submit-btn {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.form-group input[type="submit"] {
    background: linear-gradient(90deg, #FF8C00 0%, #FFA500 100%);
    border-radius: 40px;
    cursor: pointer;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    padding: 18px 40px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
    width: 100%;
    max-width: 400px;
}

.form-group input[type="submit"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
}

.form-group input[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.4);
}

.form-group input[type="submit"]:hover::before {
    left: 100%;
}

@media (max-width: 1200px) {
    .contact-section .col-50,
    .contact-form {
        min-width: 450px;
    }
}

@media (max-width: 992px) {
    .contact-section .col-50,
    .contact-form {
        min-width: 400px;
    }
}

@media (max-width: 768px) {
    .contact-section .same-text h2 {
        font-size: 32px;
    }
    
    .contact-section .same-text p {
        font-size: 16px;
    }
    
    .contact-section .flex {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-section .col-50,
    .contact-form {
        width: 100%;
        min-width: auto;
        max-width: 600px;
    }
    
    .contact-section .type_btn {
        min-width: 120px;
    }
    
    .contact-section .type_btn p {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .form-top {
        width: 100%;
        font-size: 18px;
        padding: 12px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 15px;
        font-size: 14px;
    }
    
    .form-group input[type="submit"] {
        padding: 15px 30px;
        font-size: 16px;
    }
}

/* partners slider */
.inner-slide {
    border-radius: 5px;
    background: #191B2A;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    padding: 15px;
    margin-right: 20px;
}

.inner-slide img {
    width: 100%;
}

/* footer */
footer {
    background: linear-gradient(to right, #181A29, #1a1c2e);
    color: #fff;
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #FF8C00 0%, #FFA500 100%);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo img {
    width: 180px;
    margin-bottom: 20px;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-contact-info h3,
.footer-links h3,
.footer-social h3 {
    color: #FF8C00;
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-contact-info h3::after,
.footer-links h3::after,
.footer-social h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #FF8C00 0%, #FFA500 100%);
    border-radius: 3px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-item i {
    color: #FF8C00;
    font-size: 20px;
    margin-right: 15px;
    margin-top: 3px;
    transition: all 0.3s ease;
}

.contact-item:hover i {
    color: #FFA500;
    transform: scale(1.1);
}

.contact-item a, 
.contact-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: #FFA500;
}

.fa-location-dot{
    margin-left: 12px;
}

.phone-numbers {
    display: flex;
    flex-direction: column;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-links ul li a::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #FF8C00;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: #FFA500;
    padding-left: 20px;
}

.footer-links ul li a:hover::before {
    left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 140, 0, 0.1);
    border-radius: 50%;
    color: #FF8C00;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #FF8C00;
    color: #fff;
    transform: translateY(-5px);
}

.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: 5px 0 0 5px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    background: linear-gradient(90deg, #FF8C00 0%, #FFA500 100%);
    border: none;
    color: #fff;
    padding: 0 20px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: linear-gradient(90deg, #FFA500 0%, #FF8C00 100%);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-links-bottom {
    display: flex;
    gap: 20px;
}

.footer-links-bottom a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-links-bottom a:hover {
    color: #FF8C00;
}

@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-social {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-social {
        grid-column: span 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-links-bottom {
        justify-content: center;
    }
}

/* courses page css*/
.hero {
    width: 500px;
    display: flex;
    flex-wrap: wrap;
    border: 1px solid #e4e4e4;
    border-radius: 30px;
    margin: 20px auto 30px;
}

.hero input[type="text"] {
    width: calc(100% - 60px);
    border: none;
    outline: none;
    padding: 10px;
    line-height: 1.5;
    font-size: 16px;
    border-radius: 30px;
    background: transparent;
    color: #fff;
}

.search {
    width: 60px;
    position: relative;
    border-left: 1px solid #e4e4e4;
}

.search i {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    color: #fff;
}

.search input[type="submit"] {
    font-size: 0;
    border: none;
    outline: none;
    background: transparent;
    cursor: pointer;
    width: 100%;
    height: 100%;
    z-index: 1;
    position: relative;
}

.courses-section {
    padding-left: 6%;
}

.course-main-sec {
    width: 100%;
    background: url(images/course-main-sec.png);
    min-height: 500px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.course-slider-top {
    width: 100%;
    background: linear-gradient(rgba(19, 21, 36, 0.9), rgba(19, 21, 36, 0.9)), url(images/course-slider-bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.course-slider-head {
    margin: 15px 0px;
}

.course-slider-inner {
    border: 1px solid #fff;
    border-radius: 16px;
    margin-right: 10px;
}

.course-slider-img img {
    width: 100%;
    border-top-right-radius: 16px;
    border-top-left-radius: 16px;
}

.course-slider-text h3,
.course-slider-text p,
.course-slider-text div {
    margin: 12px 0px;
}

.course-slider-text {
    padding: 0px 20px;
}

.course-slider-price a {
    background: linear-gradient(90deg, #FF8C00 0%, #FFA500 100%);
    padding: 12px 21px;
    border-radius: 22px;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.course-slider-price a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
}

.course-slider-head button.slick-prev {
    font-size: 0px;
    border: 2px solid #FF8C00;
    outline: none;
    background: transparent;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    position: absolute;
    z-index: 99;
    top: 50%;
    left: -50px;
    color: #fff;
    cursor: pointer;
}

.course-slider-head button.slick-next {
    font-size: 0px;
    border: 2px solid #FF8C00;
    outline: none;
    background: transparent;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    position: absolute;
    z-index: 99;
    top: 50%;
    right: -50px;
    cursor: pointer;
}

.course-slider-head button.slick-prev::after {
    content: '\f053';
    font-family: fontawesome;
    position: absolute;
    top: 7px;
    left: 10px;
    font-size: 16px;
    color: #fff;
}

.course-slider-head button.slick-next::after {
    content: '\f054';
    font-family: fontawesome;
    position: absolute;
    top: 7px;
    right: 10px;
    font-size: 16px;
    color: #fff;
}

.course-slider-head button.slick-prev:hover::before,
.course-slider-head button.slick-next:hover::before {
    color: #fff;
    transform: scale(1.1);
}

.animated-section-bg {
    width: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(images/animated\ section\ bg.gif);
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

.course-animated-head {
    padding-bottom: 2rem;
    margin: 0 auto;
    max-width: 80rem;
}

.animated-section {
    text-align: center;
    padding: 3rem 0;
    max-width: 10rem;
    margin: 0 auto;
}

.timeline {
    position: relative;
    width: 50%;
    margin: 0 auto;
}

.line {
    background-color: #FF8C00;
    position: absolute;
    left: calc(50% - 1px);
    width: 2px;
    top: -5rem;
    bottom: -5rem;
    display: none;
}

.line::before,
.line::after {
    background-color: #FF8C00;
    position: absolute;
    display: block;
    content: "";
    height: 2rem;
    width: 2rem;
    border-radius: 50%;
    left: 50%;
    transform: translateX(-50%);
}

.line::after {
    bottom: 0;
}

.course-section {
    opacity: 0;
    transform: translateX(-100%);
    transition: 600ms ease;
    position: relative;
    z-index: 1;

    h4 {
        color: #fff;
        font-weight: 400;
        font-size: 30px;
    }

    &:nth-child(odd) {
        flex-direction: row-reverse;
        transform: translateX(100%);

    }

    &:nth-child(even) {
        text-align: right;
    }
}

.bead {
    position: absolute;
    display: block;
    height: 3rem;
    width: 3rem;
    border-radius: 50%;
    background-color: #FF8C00;
    left: 50%;
    top: 30%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 2rem;
    color: #fff;
    font-weight: 800;
    padding-top: 5px;
    box-shadow: 1px 5px 20px 0px #FF8C00;
}

.content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
}

.show-me:nth-child(n) {
    transform: none;
    opacity: 1;
}

.ani_image img {
    width: 120px;
}

.expert-animation h4 {
    text-shadow: 2px 2px 10px #FF8C00;
}

@media(max-width:767px) {
    .hero {
        width: 100%;
        margin: 10px auto 20px;
    }

    .course-slider-head ul.slick-dots {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 10px 0;
    }

    .course-slider-head ul.slick-dots li {
        margin-right: 5px;
    }

    .course-slider-head ul.slick-dots li button {
        background: #e4e4e4;
        border: none;
        outline: none;
        font-size: 0;
        width: 10px;
        height: 10px;
        border-radius: 50%;
    }

    .course-slider-head ul.slick-dots li.slick-active button {
        background: linear-gradient(90deg, #FF8C00 0%, #FFA500 100%);
    }

    .timeline {
        width: 100%;
    }

    .expert-animation h4 {
        font-size: 18px;
    }

    .ani_image img {
        width: 80px;
    }

    .course-slider-inner {
        margin-right: 0px;
    }

    .bead {
        height: 2rem;
        width: 2rem;
        font-size: 1rem;
        padding-top: 7px;
    }

    .line::before,
    .line::after {
        height: 1.5rem;
        width: 1.5rem;
    }

    .courses-section {
        padding-left: 5%;
    }
}

/* admission page css */
.admission-main-sec {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(13,17,38,0.95), rgba(13,17,38,0.85)), url(images/admission-main-banner.png);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    padding: 100px 0;
}

/* Container adjustments */
.admission-main-sec .container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

/* New flex layout */
.admission-main-sec .flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* Content section styling */
.admission-main-sec .hero-text {
    flex: 1;
    max-width: 600px;
    position: relative;
}

/* Modern heading with new style */
.admission-main-sec .hero-text h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #ffffff;
    position: relative;
    padding-bottom: 20px;
}

.admission-main-sec .hero-text h1 span {
    display: block;
    background: linear-gradient(to right, #00F5A0, #00D9F5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 64px;
    margin-top: 10px;
}

/* Decorative line */
.admission-main-sec .hero-text h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #00F5A0, #00D9F5);
}

/* Paragraph styling */
.admission-main-sec .hero-text p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
    padding-left: 20px;
    border-left: 3px solid rgba(0, 245, 160, 0.3);
}

/* New creative button style */
.hero-text .call-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 30px;
}

.hero-text a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: transparent;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: none;
    border-radius: 30px;
    box-shadow: 0 0 15px rgba(255, 140, 0, 0.1);
}

/* Button background effect */
.hero-text a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #FF8C00 0%, #FFA500 100%);
    background-size: 200% 100%;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    border-radius: 30px;
}

/* Button border effect */
.hero-text a::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid #FF8C00;
    border-radius: 30px;
    transition: all 0.4s ease;
}

/* Hover effects */
.hero-text a:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 140, 0, 0.3);
    color: #fff;
}

.hero-text a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.hero-text a:hover::after {
    border-color: transparent;
}

/* Add shimmer effect */
@keyframes shimmer {
    0% {
        background-position: -100% 0;
    }
    100% {
        background-position: 100% 0;
    }
}

.hero-text a::before {
    background: linear-gradient(
        90deg,
        #FF8C00 0%,
        #FFA500 50%,
        #FF8C00 100%
    );
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
}

/* Image section */
.admission-main-sec .hero-image {
    flex: 1;
    position: relative;
    padding: 20px;
}

.admission-main-sec .hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.admission-main-sec .hero-image:hover img {
    transform: perspective(1000px) rotateY(0deg);
}

/* Decorative elements */
.hero-text::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #00F5A0, transparent);
    border-radius: 50%;
    opacity: 0.2;
    filter: blur(20px);
}

/* Add floating animation */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
    .admission-main-sec .flex {
        flex-direction: column;
        gap: 40px;
    }

    .admission-main-sec .hero-text h1 {
        font-size: 48px;
    }

    .admission-main-sec .hero-text h1 span {
        font-size: 54px;
    }
}

@media (max-width: 768px) {
    .admission-main-sec {
        padding: 80px 0;
    }

    .admission-main-sec .hero-text h1 {
        font-size: 40px;
    }

    .admission-main-sec .hero-text h1 span {
        font-size: 46px;
    }

    .admission-main-sec .hero-text p {
        font-size: 16px;
    }

    .hero-text a {
        padding: 14px 28px;
    }
}

/* blog page css */
.blog-main-sec {
    width: 100%;
    background: url(images/blog-main-sec.png);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* .card-back {
    width: 100%;
    background: url(images/blog-main-sec.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
} */

.post-card {
    background-image: url(images/course-slider-2.png);
    border-radius: 20px;
    margin-bottom: 30px;
    background-repeat: no-repeat;
    padding: 160px 0px 0px 0px;
    background-size: cover;
    box-shadow: 0px 0px 0.864px 0px #8E2EAB, 0px 0px 1.728px 0px #8E2EAB, 0px 0px 6.048px 0px #8E2EAB, 0px 0px 12.096px 0px #8E2EAB, 0px 0px 20.736px 0px #8E2EAB, 0px 0px 36.288px 0px #8E2EAB;
}

.image-preview {
    border-radius: 20px;
    background: #ffff;
    padding: 15px;
}

.image-preview h3 {
    color: #181b20;
    margin-bottom: 20px;
}

.image-preview a {
    color: #181b20;
    font-weight: 600;
    text-decoration: underline;
}


/* course animation vfx prime page */
.anivfx-prime {
    width: 100%;
    background: url(images/animation-back.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.anivfx {
    width: 100%;
    background: url(images/animation-back-2.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.course-card {
    border-radius: 5px;
    background: #191B2A;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    padding: 15px;
}

.course-card img {
    margin-bottom: 15px;
    border-radius: 5px;
    width: 50px;
}

.course-card h3 {
    margin-bottom: 15px;
}

/* ui ux page css */

.coursehighlights {
    background-color: #E3F2FD;
    border-radius: 20px;
    margin-top: 40px;
    padding: 40px;
    width: 100%;
}

.coursehighlights ul li {
    color: #000;
    margin-bottom: 15px;
    font-size: 18px;
}

.coursehighlights ul {
    list-style: none;
}

.coursehighlights ul li:last-of-type {
    margin-bottom: 0;
}

/* backimages of all pages */
.vfxPrime {
    width: 100%;
    background: url(images/prime-back.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.vfxMaking {
    width: 100%;
    background: url(images/vfx-back.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.vfxCompositing {
    width: 100%;
    background: url(images/compositing-back.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.uiUx {
    width: 100%;
    background: url(images/uiux-back.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.motionGraphic {
    width: 100%;
    background: url(images/motiongraphicnewcover.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.vfx-prime {
    width: 100%;
    background: url(images/animation-back.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.trinityProg {
    width: 100%;
    background: url(images/trinity-back.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.graphicWeb {
    width: 100%;
    background: url(images/graphic-back.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.graphicPrime {
    width: 100%;
    background: url(images/graphicprime-back.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.digitalAd {
    width: 100%;
    background: url(images/digital-back.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.realtime3d {
    width: 100%;
    background: url(images/realtime-back.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.advanceProg {
    width: 100%;
    background: url(images/advance-back.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.unrealGame {
    width: 100%;
    background: url(images/unreal-back.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.blender3d {
    width: 100%;
    background: url(images/blender-back.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.animationPrime {
    width: 100%;
    background: url(images/animationprime-back.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.gamePrime {
    width: 100%;
    background: url(images/gameprime-back.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.arVr {
    width: 100%;
    background: url(images/arvr-back.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.mobileGame {
    width: 100%;
    background: url(images/mobilegame-back.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.videoGame {
    width: 100%;
    background: url(images/videogame-back.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Footer Contact Information Styles */
.footer-contact {
    margin-top: 20px;
    text-align: left;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-item i {
    color: #FF8C00;
    font-size: 18px;
    margin-right: 15px;
    margin-top: 3px;
    transition: all 0.3s ease;
}

.contact-item:hover i {
    color: #FFA500;
    transform: scale(1.1);
}

.contact-item a, 
.contact-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: #FFA500;
}

/* Enhanced styling for the hero text section */
.admission-main-sec .hero-text {
    position: relative;
    z-index: 99;
    padding: 20px;
}

.admission-main-sec .hero-text h1 {
    font-size: 52px; /* Increased font size */
    margin-bottom: 25px;
    line-height: 1.2;
    text-transform: capitalize;
    position: relative;
    background: linear-gradient(90deg, #ffffff, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 2s infinite;
}

.admission-main-sec .hero-text h1 span {
    display: block;
    font-size: 58px; /* Larger size for span */
    background: linear-gradient(90deg, #FFA500, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 10px;
}

.admission-main-sec .hero-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 90%;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Add shimmer animation */
@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* Add a decorative element */
.admission-main-sec .hero-text h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #FF8C00, #FFA500);
    border-radius: 2px;
}

/* Style the container */
.admission-main-sec .container {
    position: relative;
    z-index: 2;
    padding: 40px 0;
}

/* Add a subtle glow effect to the text container */
.admission-main-sec .hero-text::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    z-index: -1;
}

/* Enhance the call-to-action button area */
.admission-main-sec .call-btn {
    margin-top: 30px;
    position: relative;
    display: inline-flex;
    gap: 20px;
}

/* Add responsive adjustments */
@media (max-width: 768px) {
    .admission-main-sec .hero-text h1 {
        font-size: 42px;
    }
    
    .admission-main-sec .hero-text h1 span {
        font-size: 48px;
    }
    
    .admission-main-sec .hero-text p {
        font-size: 16px;
        max-width: 100%;
    }
}

/* New Admission Features Section */
.admission-features-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(19, 21, 37, 0.95), rgba(19, 21, 37, 0.98));
    position: relative;
    overflow: hidden;
}

.admission-features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/pattern-bg.png');
    opacity: 0.03;
    pointer-events: none;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    color: #fff;
    margin-bottom: 20px;
}

.section-header h2 span {
    color: #FF8C00;
}

.section-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 140, 0, 0.05);
    border-color: rgba(255, 140, 0, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #FF8C00, #FFA500);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 24px;
    color: #fff;
}

.feature-content h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 15px;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.6;
}

.feature-stats {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    margin-top: 15px;
}

.stat {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.counter {
    font-size: 28px;
    font-weight: 700;
    color: #FF8C00;
}

.label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Success Path */
.success-path {
    margin-top: 80px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.success-path h3 {
    color: #fff;
    font-size: 28px;
    text-align: center;
    margin-bottom: 40px;
}

.path-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
}

.path-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #FF8C00, #FFA500);
    opacity: 0.3;
    z-index: 0;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #FF8C00, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.step-content h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 8px;
}

.step-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 32px;
    }

    .feature-card {
        padding: 20px;
    }

    .success-path {
        padding: 20px;
    }

    .path-steps::before {
        display: none;
    }

    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* Admission Features Section */
.admission-features {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(19, 21, 37, 0.98), rgba(19, 21, 37, 0.95));
    position: relative;
}

/* Section Title Styles */
.section-title {
    margin-bottom: 60px;
    text-align: center;
}

.main-heading {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 15px;
}

.main-heading span {
    color: #FF8C00;
}

.sub-heading {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
}

/* Features Container */
.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* Feature Box Styles */
.feature-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 140, 0, 0.1);
    border-color: #FF8C00;
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(45deg, #FF8C00, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 28px;
    color: #ffffff;
}

.feature-box h3 {
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 15px;
}

.feature-box p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.6;
}

.feature-highlight {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

.highlight-number {
    display: block;
    font-size: 28px;
    font-weight: bold;
    color: #FF8C00;
    margin-bottom: 5px;
}

.highlight-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* Admission Steps Styles */
.admission-steps {
    margin-top: 60px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
}

.steps-title {
    text-align: center;
    color: #ffffff;
    font-size: 28px;
    margin-bottom: 40px;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    position: relative;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #FF8C00, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    flex-shrink: 0;
}

.step-content {
    flex-grow: 1;
}

.step-content h4 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 10px;
}

.step-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.5;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .admission-features {
        padding: 60px 0;
    }

    .main-heading {
        font-size: 28px;
    }

    .feature-box {
        padding: 20px;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }

    .step-item {
        text-align: left;
    }
}

/* Add animation for feature boxes */
.feature-box {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.feature-box:nth-child(1) { animation-delay: 0.1s; }
.feature-box:nth-child(2) { animation-delay: 0.2s; }
.feature-box:nth-child(3) { animation-delay: 0.3s; }
.feature-box:nth-child(4) { animation-delay: 0.4s; }

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

/* Add hover effect for step items */
.step-item:hover .step-number {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Add connecting lines between steps */
.steps-container::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: linear-gradient(90deg, #FF8C00, #FFA500);
    opacity: 0.3;
    z-index: 0;
}

@media (max-width: 768px) {
    .steps-container::before {
        display: none;
    }
}

/* Join Us Section Styles */
.join-us-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1c2e, #2a2c3e);
    position: relative;
    overflow: hidden;
}

.join-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/pattern-bg.png');
    opacity: 0.03;
}

.join-us-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
}

/* Left Content Styles */
.join-us-content {
    color: #fff;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-title span {
    background: linear-gradient(45deg, #FF8C00, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.title-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FF8C00, #FFA500);
    margin-bottom: 30px;
    border-radius: 2px;
}

.section-description {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

/* Features List */
.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 140, 0, 0.1);
    transform: translateY(-2px);
}

.feature-item i {
    font-size: 24px;
    color: #FF8C00;
}

.feature-item span {
    color: #fff;
    font-weight: 500;
}

/* Quick Contact */
.quick-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-item i {
    width: 40px;
    height: 40px;
    /* background: linear-gradient(45deg, #FF8C00, #FFA500); */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF8C00;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-info .label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.contact-info .value {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info .value:hover {
    color: #FF8C00;
}

/* Form Styles */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 10px;
}

.form-header p {
    color: rgba(255, 255, 255, 0.6);
}

.form-group {
    margin-bottom: 20px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    color: rgba(255, 140, 0, 0.8);
    font-size: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px 15px 15px 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #FF8C00;
    outline: none;
    background: rgba(255, 140, 0, 0.05);
}

.contact-form input::placeholder,
.contact-form select::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(45deg, #FF8C00, #FFA500);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .join-us-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-title h2 {
        font-size: 36px;
    }

    .features-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .join-us-section {
        padding: 60px 0;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .section-title h2 {
        font-size: 32px;
    }
}

/* Popup Form Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.popup-overlay.active {
    display: flex;
    opacity: 1;
}

.popup-form-container {
    background: linear-gradient(135deg, #1a1c2e, #2a2c3e);
    border-radius: 20px;
    padding: 30px;
    width: 90%;
    max-width: 600px;
    position: relative;
    border: 1px solid rgba(255, 140, 0, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.popup-overlay.active .popup-form-container {
    transform: translateY(0);
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.popup-header h3 {
    color: #fff;
    font-size: 24px;
    margin: 0;
}

.close-popup {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.close-popup:hover {
    color: #FF8C00;
}

.popup-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.popup-form .form-group {
    margin-bottom: 20px;
}

.popup-form label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    font-size: 14px;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 140, 0, 0.8);
    font-size: 16px;
}

.popup-form input,
.popup-form select,
.popup-form textarea {
    width: 100%;
    padding: 12px 15px 12px 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.popup-form textarea {
    padding-top: 15px;
    resize: none;
}

.popup-form input:focus,
.popup-form select:focus,
.popup-form textarea:focus {
    border-color: #FF8C00;
    outline: none;
    background: rgba(255, 140, 0, 0.05);
}

.popup-form .submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, #FF8C00, #FFA500);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.popup-form .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
}

.popup-form .submit-btn i {
    transition: transform 0.3s ease;
}

.popup-form .submit-btn:hover i {
    transform: translateX(5px);
}

/* Success Message */
.success-message {
    display: none;
    text-align: center;
    color: #4CAF50;
    padding: 20px;
    border-radius: 10px;
    background: rgba(76, 175, 80, 0.1);
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .popup-form-container {
        padding: 20px;
    }

    .popup-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* Contact Page Styles */

/* Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #FF8C00, #FFA500);
    padding: 120px 0 0;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/pattern.png');
    opacity: 0.1;
}

.hero-content {
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 1;
    padding-bottom: 100px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: #1a1c2e;
}

.hero-content p {
    font-size: 20px;
    opacity: 0.9;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

/* Contact Info Cards */
.contact-info-section {
    background: #1a1c2e;
    padding: 80px 0;
    position: relative;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: -100px;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

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

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #FF8C00, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.card-icon i {
    font-size: 32px;
    color: #fff;
}

.info-card h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 15px;
}

.info-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.6;
}

.direction-btn,
.phone-link,
.email-link {
    color: #FF8C00;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.direction-btn:hover,
.phone-link:hover,
.email-link:hover {
    color: #FFA500;
}

/* Contact Form Section */
.contact-form-section {
    background: #1a1c2e;
    padding: 80px 0;
}

.form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-header {
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 15px;
}

.form-header h2 span {
    color: #FF8C00;
}

.form-header p {
    color: rgba(255, 255, 255, 0.7);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 140, 0, 0.8);
}

.input-with-icon input,
.input-with-icon textarea {
    width: 100%;
    padding: 12px 15px 12px 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.input-with-icon textarea {
    padding-top: 15px;
    resize: none;
}

.input-with-icon input:focus,
.input-with-icon textarea:focus {
    border-color: #FF8C00;
    outline: none;
    background: rgba(255, 140, 0, 0.05);
}

.submit-btn {
    background: linear-gradient(45deg, #FF8C00, #FFA500);
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}

/* Social Connect Section */
.social-connect-section {
    background: #1a1c2e;
    padding: 80px 0;
    text-align: center;
}

.social-content h2 {
    color: #fff;
    font-size: 36px;
    margin-bottom: 15px;
}

.social-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    transition: all 0.3s ease;
}

.social-link.facebook { background: #1877f2; }
.social-link.instagram { background: #e4405f; }
.social-link.twitter { background: #1da1f2; }
.social-link.linkedin { background: #0077b5; }
.social-link.youtube { background: #ff0000; }

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
    .form-wrapper {
        grid-template-columns: 1fr;
    }

    .map-container {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 80px 0 0;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .info-cards {
        margin-top: -50px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .social-links {
        flex-wrap: wrap;
    }
}

/* Form Group Select Styles */
.form-group select {
    width: 100%;
    padding: 12px 15px 12px 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.form-group select:focus {
    border-color: #FF8C00;
    outline: none;
    background: rgba(255, 140, 0, 0.05);
}

.form-group select option {
    background: #1a1c2e;
    color: #fff;
    padding: 10px;
    font-size: 16px;
}

.form-group select option:hover {
    background: #FF8C00;
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 140, 0, 0.8);
    font-size: 16px;
    pointer-events: none;
}

/* Add dropdown arrow */
.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23FF8C00' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}