/* ==============================
   GOOGLE FONT
==============================*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {

    background: #071321;

}

/* ==============================
   HEADER
==============================*/

header {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 90px;

    background: #08131f;

    border-bottom: 1px solid rgba(255, 255, 255, .08);

    z-index: 1000;

}

/* ==============================
   CONTAINER
==============================*/

.container {

    width: 90%;

    max-width: 1400px;

    margin: auto;

    height: 90px;

    display: flex;

    justify-content: space-between;

    align-items: center;

}

/* ==============================
   LOGO
==============================*/

.logo img {

    width: 65px;

    display: block;

}

/* ==============================
   NAVBAR
==============================*/

nav {

    flex: 1;

    display: flex;

    justify-content: center;

}



nav ul li {

    list-style: none;

}

nav ul li a {

    text-decoration: none;

    font-size: 18px;

    font-weight: 500;

    color: #ffffff;

    transition: .3s;

    position: relative;

}

nav ul li a:hover {

    color: #18b8ff;

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

.nav-links > li > a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    background: #18b8ff;
    box-shadow: 0 0 10px #18b8ff;
}


/* ==============================
   BUTTON
==============================*/

.btn {

    padding: 16px 35px;

    background: linear-gradient(90deg, #17c2ff, #0079ff);

    color: #fff;

    border-radius: 50px;

    text-decoration: none;

    font-size: 17px;

    font-weight: 600;

    transition: .35s;

}

.btn:hover {

    transform: translateY(-2px);

    box-shadow: 0 10px 25px rgba(0, 174, 255, .35);

}

/* ==============================
   RESPONSIVE
==============================*/

@media(max-width:1100px) {

    nav ul {

        gap: 25px;

    }

    nav ul li a {

        font-size: 16px;

    }

    .btn {

        padding: 14px 25px;

    }

}

@media(max-width:900px) {

    .container {

        flex-direction: column;

        height: auto;

        padding: 20px 0;

    }

    header {

        height: auto;

    }

    nav {

        margin: 20px 0;

    }

    nav ul {

        flex-wrap: wrap;

        justify-content: center;

    }

}




/* ===========================
      HERO SECTION
=========================== */

.hero-section {

    width: 100%;

    min-height: 100vh;

    background: #071321;

    display: flex;

    align-items: center;

    padding-top: 110px;

}

.hero-wrapper {

    width: 90%;

    max-width: 1350px;

    margin: auto;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 80px;

}

/* LEFT SIDE */

.hero-content {

    flex: 1;

}

.hero-content h1 {

    font-size: 78px;

    line-height: 1.08;

    color: #fff;

    font-weight: 800;

    margin-bottom: 30px;

}

.hero-content p {

    font-size: 24px;

    color: #c0c8d2;

    line-height: 1.8;

    max-width: 720px;

    margin-bottom: 45px;

}

/* BUTTONS */

.hero-buttons {

    display: flex;

    gap: 25px;

}

.primary-btn {

    padding: 18px 42px;

    border-radius: 50px;

    background: linear-gradient(90deg, #16c2ff, #0078ff);

    color: #fff;

    text-decoration: none;

    font-weight: 600;

    transition: .3s;

}

.primary-btn:hover {

    transform: translateY(-4px);

    box-shadow: 0 12px 25px rgba(0, 162, 255, .35);

}

.secondary-btn {

    padding: 18px 42px;

    border-radius: 50px;

    border: 2px solid #14b8ff;

    color: #14b8ff;

    text-decoration: none;

    font-weight: 600;

    transition: .3s;

}

.secondary-btn:hover {

    background: #14b8ff;

    color: #fff;

}

/* RIGHT SIDE */

.hero-image {

    flex: 1;

    display: flex;

    justify-content: flex-end;

}

.hero-image img {

    width: 100%;

    max-width: 560px;

    animation: float 4s ease-in-out infinite;

}

/* FLOAT */

@keyframes float {

    0%,
    100% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-12px);

    }

}

/* RESPONSIVE */

@media(max-width:992px) {

    .hero-wrapper {

        flex-direction: column;

        text-align: center;

    }

    .hero-content h1 {

        font-size: 52px;

    }

    .hero-content p {

        font-size: 18px;

    }

    .hero-buttons {

        justify-content: center;

        flex-wrap: wrap;

    }

    .hero-image {

        justify-content: center;

        margin-top: 50px;

    }

    .hero-image img {

        max-width: 380px;

    }

}




/*==============================
            FOOTER
==============================*/

.footer {
    width: 100%;
    background: #071321;
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 25px 0;
    margin-top: 100px;
}

.footer footer {
    width: 90%;
    margin: auto;
}

.footer .container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.footer p {
    color: #b8c7d1;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: .5px;
    transition: .3s ease;
}

.footer p:hover {
    color: #00e5ff;
}

.footer p span {
    color: #00e5ff;
    font-weight: 600;
}

@media (max-width:768px) {

    .footer {
        padding: 20px 15px;
    }

    .footer p {
        font-size: 14px;
        line-height: 1.8;
    }

}





/* about page of css */

/* about page of css */


/* about page */
.active {

    color: #18b7ff !important;

}

.active::after {

    width: 100% !important;

}

.btn {

    background: linear-gradient(135deg, #18b7ff, #006eff);

    padding: 16px 38px;

    border-radius: 50px;

    color: white;

    text-decoration: none;

    font-weight: 600;

    transition: .35s;

}

.btn:hover {

    transform: translateY(-4px);

    box-shadow: 0 15px 35px rgba(0, 162, 255, .35);

}

/* Active */

.nav-menu .active {

    color: #14b8ff;

}

.nav-menu .active::after {

    width: 100%;

}

/* Button */

.nav-btn {

    padding: 14px 34px;

    background: linear-gradient(135deg, #14b8ff, #007bff);

    color: #fff;

    text-decoration: none;

    font-weight: 600;

    border-radius: 50px;

    transition: .4s;

}

.nav-btn:hover {

    transform: translateY(-4px);

    box-shadow: 0 10px 25px rgba(20, 184, 255, .45);

}

/* Responsive */

@media(max-width:991px) {

    .navbar {

        padding: 18px 25px;

        flex-direction: column;

        gap: 20px;

    }

    .nav-menu {

        flex-wrap: wrap;

        justify-content: center;

        gap: 20px;

    }

    .logo span {

        font-size: 20px;

    }

    .nav-btn {

        padding: 12px 25px;

    }

}



.about {
    padding: 100px 4%;
    background: #081524;
    color: #fff;
}

.about-container {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 70px;

    flex-wrap: wrap;

}

.about-image {

    flex: 1;

    text-align: center;

}

.about-image img {

    width: 100%;

    max-width: 520px;

    filter: drop-shadow(0 0 40px rgba(0, 153, 255, .3));

    transition: .5s;

}

.about-image img:hover {

    transform: scale(1.05);

}

.about-content {

    flex: 1;

}

.section-tag {

    color: #14b8ff;

    font-weight: 700;

    letter-spacing: 2px;

}

.about-content h2 {

    font-size: 52px;

    margin: 18px 0;

    line-height: 1.2;

}

.about-content p {

    color: #bfc7d4;

    line-height: 1.8;

    margin-bottom: 35px;

}

.about-list {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;

    margin-bottom: 40px;

}

.about-list div {

    background: #0d2033;

    padding: 15px;

    border-radius: 12px;

    transition: .4s;

}

.about-list div:hover {

    background: #1296ff;

    transform: translateY(-5px);

}

.about-btn {

    display: inline-block;

    padding: 15px 35px;

    background: #1296ff;

    color: #fff;

    border-radius: 40px;

    text-decoration: none;

    font-weight: 600;

    transition: .4s;

}

.about-btn:hover {

    transform: translateY(-4px);

    box-shadow: 0 0 25px #1296ff;

}

.about-stats {

    margin-top: 70px;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;

}

.stat-card {

    background: #0d2033;

    padding: 35px;

    border-radius: 20px;

    text-align: center;

    transition: .4s;

}

.stat-card:hover {

    transform: translateY(-10px);

    background: #1296ff;

}

.stat-card h2 {

    font-size: 42px;

    color: #f8c13a;

    margin-bottom: 10px;

}

.stat-card p {

    color: #ddd;

}

@media(max-width:992px) {

    .about-container {

        flex-direction: column;

    }

    .about-stats {

        grid-template-columns: repeat(2, 1fr);

    }

    .about-content h2 {

        font-size: 38px;

    }

}

@media(max-width:600px) {

    .about-stats {

        grid-template-columns: 1fr;

    }

    .about-list {

        grid-template-columns: 1fr;

    }

}


/* about page */
.active {

    color: #18b7ff !important;

}

.active::after {

    width: 100% !important;

}

.btn {

    background: linear-gradient(135deg, #18b7ff, #006eff);

    padding: 16px 38px;

    border-radius: 50px;

    color: white;

    text-decoration: none;

    font-weight: 600;

    transition: .35s;

}

.btn:hover {

    transform: translateY(-4px);

    box-shadow: 0 15px 35px rgba(0, 162, 255, .35);

}

/* Active */

.nav-menu .active {

    color: #14b8ff;

}

.nav-menu .active::after {

    width: 100%;

}

/* Button */

.nav-btn {

    padding: 14px 34px;

    background: linear-gradient(135deg, #14b8ff, #007bff);

    color: #fff;

    text-decoration: none;

    font-weight: 600;

    border-radius: 50px;

    transition: .4s;

}

.nav-btn:hover {

    transform: translateY(-4px);

    box-shadow: 0 10px 25px rgba(20, 184, 255, .45);

}

/* Responsive */

@media(max-width:991px) {

    .navbar {

        padding: 18px 25px;

        flex-direction: column;

        gap: 20px;

    }

    .nav-menu {

        flex-wrap: wrap;

        justify-content: center;

        gap: 20px;

    }

    .logo span {

        font-size: 20px;

    }

    .nav-btn {

        padding: 12px 25px;

    }

}







/* therd page of website services */


.active {

    color: #18b7ff !important;

}

.active::after {

    width: 100% !important;

}

.btn {

    background: linear-gradient(135deg, #18b7ff, #006eff);

    padding: 16px 38px;

    border-radius: 50px;

    color: white;

    text-decoration: none;

    font-weight: 600;

    transition: .35s;

}

.btn:hover {

    transform: translateY(-4px);

    box-shadow: 0 15px 35px rgba(0, 162, 255, .35);

}

/* Active */

.nav-menu .active {

    color: #14b8ff;

}

.nav-menu .active::after {

    width: 100%;

}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
    align-items: center;
}

.explore-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 38px;
    background: transparent;
    color: #0EA5FF;
    border: 2px solid #0EA5FF;
    border-radius: 50px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: all .4s ease;
}

.explore-btn:hover {
    background: #0EA5FF;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(14, 165, 255, .35);
}

.explore-btn span {
    transition: .3s;
}

.explore-btn:hover span {
    transform: translateX(5px);
}

/* Button */

.nav-btn {

    padding: 14px 34px;

    background: linear-gradient(135deg, #14b8ff, #007bff);

    color: #fff;

    text-decoration: none;

    font-weight: 600;

    border-radius: 50px;

    transition: .4s;

}

.nav-btn:hover {

    transform: translateY(-4px);

    box-shadow: 0 10px 25px rgba(20, 184, 255, .45);

}

/* Responsive */

@media(max-width:991px) {

    .navbar {

        padding: 18px 25px;

        flex-direction: column;

        gap: 20px;

    }

    .nav-menu {

        flex-wrap: wrap;

        justify-content: center;

        gap: 20px;

    }

    .logo span {

        font-size: 20px;

    }

    .nav-btn {

        padding: 12px 25px;

    }

}

/* script on about page */


/* =========================================
   BASE STYLES (Desktop / Large Screens)
   ========================================= */
.about-company {
    width: 90%;
    max-width: 1300px;
    margin: 100px auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: center;
}

.sub-title {
    color: #2EA8FF;
    letter-spacing: 3px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
}

.about-left h2 {
    font-size: 48px;
    color: #ffffff;
    line-height: 1.25;
    margin: 15px 0 25px;
}

.about-left p {
    color: #c7d2e2;
    line-height: 1.8;
    font-size: 17px;
    text-align: left; /* Mobile aur web par justify se unnatural gaps bante hain */
}

.about-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 36px;
    background: #1DA1FF;
    color: #ffffff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.35s ease;
}

.about-btn:hover {
    background: #0a84ff;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 150, 255, 0.35);
}

.quote-box {
    background: #13263d;
    padding: 50px 35px;
    border-radius: 20px;
    border: 1px solid rgba(0, 170, 255, 0.25);
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.quote-box h3 {
    font-size: 32px;
    line-height: 1.4;
    color: #ffffff;
}

.quote-box span {
    display: block;
    margin-top: 25px;
    color: #1DA1FF;
    font-size: 20px;
    font-weight: 700;
}

.quote-box p {
    margin-top: 8px;
    color: #b6c4d6;
    font-size: 15px;
}

/* =========================================
   TABLETS & MEDIUM SCREENS (max-width: 1024px)
   ========================================= */
@media (max-width: 1024px) {
    .about-company {
        grid-template-columns: 1fr; /* Single column stack */
        gap: 50px;
        margin: 70px auto;
    }

    .about-left h2 {
        font-size: 40px;
    }

    .quote-box {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }
}

/* =========================================
   MOBILE SCREENS (max-width: 768px)
   ========================================= */
@media (max-width: 768px) {
    .about-company {
        width: 92%;
        margin: 50px auto;
        gap: 40px;
    }

    .sub-title {
        font-size: 13px;
        letter-spacing: 2px;
    }

    .about-left h2 {
        font-size: 30px;
        line-height: 1.3;
        margin: 12px 0 18px;
    }

    .about-left p {
        font-size: 15px;
        line-height: 1.7;
    }

    .about-btn {
        width: 100%; /* Mobile par full-width touch button */
        text-align: center;
        padding: 14px 25px;
        margin-top: 25px;
    }

    .quote-box {
        padding: 35px 20px;
        border-radius: 16px;
    }

    .quote-box h3 {
        font-size: 24px;
        line-height: 1.35;
    }

    .quote-box span {
        font-size: 18px;
        margin-top: 20px;
    }

    .quote-box p {
        font-size: 14px;
    }
}

/* =========================================
   EXTRA SMALL SCREENS (max-width: 480px)
   ========================================= */
@media (max-width: 480px) {
    .about-left h2 {
        font-size: 26px;
    }

    .quote-box h3 {
        font-size: 20px;
    }
}

/* service page of css */


/* ==============================
   RESPONSIVE
==============================*/

@media(max-width:1100px) {

    nav ul {

        gap: 25px;

    }

    nav ul li a {

        font-size: 16px;

    }

    .btn {

        padding: 14px 25px;

    }

}

@media(max-width:900px) {

    .container {

        flex-direction: column;

        height: auto;

        padding: 20px 0;

    }

    header {

        height: auto;

    }

    nav {

        margin: 20px 0;

    }

    nav ul {

        flex-wrap: wrap;

        justify-content: center;

    }

}




/* ===========================
      HERO SECTION
=========================== */

.hero-section {

    width: 100%;

    min-height: 100vh;

    background: #071321;

    display: flex;

    align-items: center;

    padding-top: 110px;

}

.hero-wrapper {

    width: 90%;

    max-width: 1350px;

    margin: auto;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 80px;

}

/* LEFT SIDE */

.hero-content {

    flex: 1;

}

.hero-content h1 {

    font-size: 78px;

    line-height: 1.08;

    color: #fff;

    font-weight: 800;

    margin-bottom: 30px;

}

.hero-content p {

    font-size: 24px;

    color: #c0c8d2;

    line-height: 1.8;

    max-width: 720px;

    margin-bottom: 45px;

}

/* BUTTONS */

.hero-buttons {

    display: flex;

    gap: 25px;

}

.primary-btn {

    padding: 18px 42px;

    border-radius: 50px;

    background: linear-gradient(90deg, #16c2ff, #0078ff);

    color: #fff;

    text-decoration: none;

    font-weight: 600;

    transition: .3s;

}

.primary-btn:hover {

    transform: translateY(-4px);

    box-shadow: 0 12px 25px rgba(0, 162, 255, .35);

}

.secondary-btn {

    padding: 18px 42px;

    border-radius: 50px;

    border: 2px solid #14b8ff;

    color: #14b8ff;

    text-decoration: none;

    font-weight: 600;

    transition: .3s;

}

.secondary-btn:hover {

    background: #14b8ff;

    color: #fff;

}

/* RIGHT SIDE */

.hero-image {

    flex: 1;

    display: flex;

    justify-content: flex-end;

}

.hero-image img {

    width: 100%;

    max-width: 560px;

    animation: float 4s ease-in-out infinite;

}

/* FLOAT */

@keyframes float {

    0%,
    100% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-12px);

    }

}

/* RESPONSIVE */

@media(max-width:992px) {

    .hero-wrapper {

        flex-direction: column;

        text-align: center;

    }

    .hero-content h1 {

        font-size: 52px;

    }

    .hero-content p {

        font-size: 18px;

    }

    .hero-buttons {

        justify-content: center;

        flex-wrap: wrap;

    }

    .hero-image {

        justify-content: center;

        margin-top: 50px;

    }

    .hero-image img {

        max-width: 380px;

    }

}



/* other srvices */

/*==============================
        SERVICES
==============================*/

.services {

    padding: 100px 8%;
    background: #08111F;

}

.section-title {

    text-align: center;
    margin-bottom: 60px;

}

.section-title h2 {

    font-size: 60px;
    color: #fff;
    margin-bottom: 15px;

}

.section-title p {

    color: #b8c5d6;
    font-size: 18px;

}

/*==============================
      SERVICES GRID
==============================*/

.services-grid {

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;

}

/*==============================
      SERVICE CARD
==============================*/

.service-card {

    background: #13253B;
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 22px;

    padding: 45px 30px;

    text-align: center;

    transition: .35s;

}

.service-card:hover {

    transform: translateY(-10px);

    border-color: #0EA5FF;

    box-shadow: 0 18px 40px rgba(14, 165, 255, .18);

}

.service-card i {

    font-size: 48px;

    color: #1DA1F2;

    margin-bottom: 25px;

}

.service-card h3 {

    color: #fff;

    font-size: 30px;

    margin-bottom: 18px;

}

.service-card p {

    color: #b7c5d6;

    line-height: 1.8;

    font-size: 17px;

}

/*==============================
      RESPONSIVE
==============================*/

@media(max-width:1100px) {

    .services-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:768px) {

    .services-grid {

        grid-template-columns: 1fr;

    }

    .section-title h2 {

        font-size: 42px;

    }

    .service-card {

        padding: 35px 25px;

    }

}










.active {

    color: #18b7ff !important;

}

.active::after {

    width: 100% !important;

}

.btn {

    background: linear-gradient(135deg, #18b7ff, #006eff);

    padding: 16px 38px;

    border-radius: 50px;

    color: white;

    text-decoration: none;

    font-weight: 600;

    transition: .35s;

}

.btn:hover {

    transform: translateY(-4px);

    box-shadow: 0 15px 35px rgba(0, 162, 255, .35);

}

/* Active */

.nav-menu .active {

    color: #14b8ff;

}

.nav-menu .active::after {

    width: 100%;

}

/* Button */

.nav-btn {

    padding: 14px 34px;

    background: linear-gradient(135deg, #14b8ff, #007bff);

    color: #fff;

    text-decoration: none;

    font-weight: 600;

    border-radius: 50px;

    transition: .4s;

}

.nav-btn:hover {

    transform: translateY(-4px);

    box-shadow: 0 10px 25px rgba(20, 184, 255, .45);

}

/* Responsive */

@media(max-width:991px) {

    .navbar {

        padding: 18px 25px;

        flex-direction: column;

        gap: 20px;

    }

    .nav-menu {

        flex-wrap: wrap;

        justify-content: center;

        gap: 20px;

    }

    .logo span {

        font-size: 20px;

    }

    .nav-btn {

        padding: 12px 25px;

    }

}


/* ================= HERO ================= */

.services-hero {

    padding: 140px 10% 90px;

    background: linear-gradient(135deg, #071321, #0c2847);

    text-align: center;

    color: #fff;

}

.services-hero h1 {

    font-size: 60px;

    margin-bottom: 20px;

}

.services-hero p {

    font-size: 20px;

    color: #c7d3df;

    max-width: 700px;

    margin: auto;

    line-height: 1.8;

}

/* ================= SERVICES ================= */

.services-section {

    padding: 100px 8%;

    background: #081524;

}

.services-section h2 {

    text-align: center;

    color: #fff;

    font-size: 45px;

    margin-bottom: 60px;

}

.services-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

    gap: 30px;

}

.service-card {

    background: #11263d;

    padding: 40px 30px;

    border-radius: 20px;

    text-align: center;

    transition: .4s;

    border: 1px solid rgba(255, 255, 255, .08);

}

.service-card:hover {

    transform: translateY(-12px);

    box-shadow: 0 20px 40px rgba(0, 0, 0, .35);

    border-color: #14b8ff;

}

.service-card i {

    font-size: 50px;

    color: #14b8ff;

    margin-bottom: 20px;

}

.service-card h3 {

    color: #fff;

    margin-bottom: 15px;

}

.service-card p {

    color: #bfc7d4;

    line-height: 1.8;

}

/* ================= CTA ================= */

.cta {

    padding: 100px 10%;

    background: #0d2035;

    text-align: center;

}

.cta h2 {

    color: #fff;

    font-size: 45px;

    margin-bottom: 20px;

}

.cta p {

    color: #bfc7d4;

    font-size: 18px;

    margin-bottom: 35px;

}




/* portfolio */



/* ==============================
   RESPONSIVE
==============================*/

@media(max-width:1100px) {

    nav ul {

        gap: 25px;

    }

    nav ul li a {

        font-size: 16px;

    }

    .btn {

        padding: 14px 25px;

    }

}

@media(max-width:900px) {

    .container {

        flex-direction: column;

        height: auto;

        padding: 20px 0;

    }

    header {

        height: auto;

    }

    nav {

        margin: 20px 0;

    }

    nav ul {

        flex-wrap: wrap;

        justify-content: center;

    }

}




/* ===========================
      HERO SECTION
=========================== */

.hero-section {

    width: 100%;

    min-height: 100vh;

    background: #071321;

    display: flex;

    align-items: center;

    padding-top: 110px;

}

.hero-wrapper {

    width: 90%;

    max-width: 1350px;

    margin: auto;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 80px;

}

/* LEFT SIDE */

.hero-content {

    flex: 1;

}

.hero-content h1 {

    font-size: 78px;

    line-height: 1.08;

    color: #fff;

    font-weight: 800;

    margin-bottom: 30px;

}

.hero-content p {

    font-size: 24px;

    color: #c0c8d2;

    line-height: 1.8;

    max-width: 720px;

    margin-bottom: 45px;

}

/* BUTTONS */

.hero-buttons {

    display: flex;

    gap: 25px;

}

.primary-btn {

    padding: 18px 42px;

    border-radius: 50px;

    background: linear-gradient(90deg, #16c2ff, #0078ff);

    color: #fff;

    text-decoration: none;

    font-weight: 600;

    transition: .3s;

}

.primary-btn:hover {

    transform: translateY(-4px);

    box-shadow: 0 12px 25px rgba(0, 162, 255, .35);

}

.secondary-btn {

    padding: 18px 42px;

    border-radius: 50px;

    border: 2px solid #14b8ff;

    color: #14b8ff;

    text-decoration: none;

    font-weight: 600;

    transition: .3s;

}

.secondary-btn:hover {

    background: #14b8ff;

    color: #fff;

}

/* RIGHT SIDE */

.hero-image {

    flex: 1;

    display: flex;

    justify-content: flex-end;

}

.hero-image img {

    width: 100%;

    max-width: 560px;

    animation: float 4s ease-in-out infinite;

}

/* FLOAT */

@keyframes float {

    0%,
    100% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-12px);

    }

}

/* RESPONSIVE */

@media(max-width:992px) {

    .hero-wrapper {

        flex-direction: column;

        text-align: center;

    }

    .hero-content h1 {

        font-size: 52px;

    }

    .hero-content p {

        font-size: 18px;

    }

    .hero-buttons {

        justify-content: center;

        flex-wrap: wrap;

    }

    .hero-image {

        justify-content: center;

        margin-top: 50px;

    }

    .hero-image img {

        max-width: 380px;

    }

}



/* second page of website about */














.portfolio-hero {
    padding: 120px 10%;
    text-align: center;
}

.portfolio-hero h4 {
    color: #14b8ff;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.portfolio-hero h1 {
    font-size: 58px;
    line-height: 1.2;
    margin-bottom: 25px;
}

.portfolio-hero p {
    max-width: 700px;
    margin: auto;
    color: #bfc7d4;
    line-height: 1.8;
}

/* ===================================
   Portfolio
=================================== */

.portfolio {
    padding: 90px 8%;
}

.title {
    text-align: center;
    margin-bottom: 60px;
}

.title h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.title p {
    color: #bfc7d4;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.card {
    background: #0f2235;
    border-radius: 20px;
    overflow: hidden;
    transition: .4s;
    border: 1px solid rgba(255, 255, 255, .08);
}

.card:hover {
    transform: translateY(-10px);
    border-color: #14b8ff;
    box-shadow: 0 20px 50px rgba(20, 184, 255, .18);
}

.image {
    height: 240px;
    overflow: hidden;
}

.image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.card:hover .image img {
    transform: scale(1.08);
}

.content {
    padding: 28px;
}

.content span {
    color: #14b8ff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.content h3 {
    margin: 15px 0;
    font-size: 28px;
}

.content p {
    color: #bfc7d4;
    line-height: 1.8;
    margin-bottom: 20px;
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.features span {
    background: #112b45;
    padding: 8px 14px;
    border-radius: 30px;
    color: #fff;
    font-size: 13px;
}

.content a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #14b8ff;
    font-weight: 600;
}


.content a:hover {
    color: #fff;
}



/* ===========================
   Brand Identity Card
=========================== */

.card {
    background: #102235;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.4s;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 170, 255, 0.25);
}

.content {
    padding: 30px;
}

.content span:first-child {
    display: inline-block;
    background: #18b7ff;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
}

.content h3 {
    font-size: 30px;
    color: #fff;
    margin-bottom: 18px;
}

.content p {
    color: #c7d4df;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 25px;
}

/* ===========================
   Features
=========================== */

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.features span {
    background: #16314d;
    color: #18b7ff;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
}

.features span:hover {
    background: #18b7ff;
    color: #fff;
}

/* ===========================
   Button
=========================== */

.content a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    background: linear-gradient(135deg, #18b7ff, #007bff);
    color: #fff;
    padding: 6px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: .35s;
    font-size: 18px;
}

.content a:hover {

    transform: translateY(-5px);

    box-shadow: 0 15px 30px rgba(24, 183, 255, .35);

}

/* ===========================
   Statistics
=========================== */

.stats {

    width: 90%;
    max-width: 1300px;

    margin: 100px auto;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 30px;

}

.box {

    background: #102235;

    text-align: center;

    padding: 45px 20px;

    border-radius: 20px;

    transition: .4s;

    border: 1px solid rgba(255, 255, 255, .08);

}

.box:hover {

    transform: translateY(-10px);

    border-color: #18b7ff;

    box-shadow: 0 20px 40px rgba(24, 183, 255, .25);

}

.box h2 {

    color: #18b7ff;

    font-size: 55px;

    margin-bottom: 12px;

    font-weight: 700;

}

.box p {

    color: #d7e4ef;

    font-size: 18px;

    font-weight: 500;

}

/* ===========================
   Responsive
=========================== */

@media(max-width:992px) {

    .stats {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:600px) {

    .stats {

        grid-template-columns: 1fr;

    }

    .content h3 {

        font-size: 24px;

    }

    .box h2 {

        font-size: 42px;

    }

}


/*=========================================
            CTA SECTION
=========================================*/

.cta {

    position: relative;

    padding: 120px 8%;

    text-align: center;

    background: linear-gradient(135deg, #081524, #102235, #16314d);

    overflow: hidden;

}

/* Background Glow */

.cta::before {

    content: "";

    position: absolute;

    width: 450px;

    height: 450px;

    background: rgba(24, 183, 255, .12);

    border-radius: 50%;

    top: -180px;

    left: -150px;

    filter: blur(120px);

}

.cta::after {

    content: "";

    position: absolute;

    width: 400px;

    height: 400px;

    background: rgba(0, 123, 255, .10);

    border-radius: 50%;

    bottom: -180px;

    right: -150px;

    filter: blur(120px);

}

/* Heading */

.cta h2 {

    position: relative;

    z-index: 2;

    font-size: 58px;

    color: #ffffff;

    font-weight: 800;

    line-height: 1.2;

    margin-bottom: 25px;

    letter-spacing: -1px;

}

/* Blue Line */

.cta h2::after {

    content: "";

    display: block;

    width: 130px;

    height: 5px;

    margin: 20px auto 0;

    border-radius: 50px;

    background: linear-gradient(90deg, #18b7ff, #59d7ff);

    box-shadow: 0 0 20px rgba(24, 183, 255, .6);

}

/* Paragraph */

.cta p {

    position: relative;

    z-index: 2;

    max-width: 760px;

    margin: auto;

    color: #c7d4df;

    font-size: 20px;

    line-height: 1.9;

    margin-bottom: 45px;

}

/* Button */

.cta a {

    position: relative;

    z-index: 2;

    display: inline-block;

    padding: 18px 42px;

    background: linear-gradient(135deg, #18b7ff, #007bff);

    color: #fff;

    text-decoration: none;

    font-size: 18px;

    font-weight: 600;

    border-radius: 50px;

    transition: .4s ease;

    box-shadow: 0 12px 30px rgba(24, 183, 255, .35);

}

.cta a:hover {

    transform: translateY(-6px);

    box-shadow: 0 20px 45px rgba(24, 183, 255, .55);

}

/* Responsive */

@media(max-width:992px) {

    .cta {

        padding: 90px 6%;

    }

    .cta h2 {

        font-size: 46px;

    }

    .cta p {

        font-size: 18px;

    }

}

@media(max-width:768px) {

    .cta h2 {

        font-size: 34px;

    }

    .cta p {

        font-size: 16px;

        line-height: 1.8;

    }

    .cta a {

        padding: 15px 34px;

        font-size: 16px;

    }

}



/*video page of css  */




.hero-video {

    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;

}


.hero-video video {

    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;

}


.hero-overlay {

    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(15, 23, 42, .95),
            rgba(15, 23, 42, .55));

}



.hero-content {

    position: relative;
    max-width: 900px;
    text-align: center;
    padding: 20px;
    z-index: 2;

}


.hero-content span {

    color: #38BDF8;
    letter-spacing: 3px;
    font-size: 14px;
    font-weight: 600;

}



.hero-content h1 {

    font-family: 'Poppins';
    font-size: 70px;
    line-height: 1.1;
    margin: 25px 0;

}



.hero-content p {

    color: #CBD5E1;
    font-size: 18px;
    max-width: 700px;
    margin: auto;
    line-height: 1.8;

}



/* BUTTON */


.hero-btn {

    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;

}



.hero-btn a {

    padding: 15px 35px;
    border-radius: 50px;
    color: white;
    border: 1px solid #334155;
    transition: .4s;

}



.hero-btn a:first-child {

    background: #2563EB;
    border-color: #2563EB;

}


.hero-btn a:hover {

    transform: translateY(-5px);

}

/* ==========================
      HERO BUTTONS
========================== */

.hero-btn {

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-top: 45px;

}


/* Common Button */

.hero-btn a {

    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 16px 38px;

    min-width: 180px;

    border-radius: 50px;

    font-size: 16px;
    font-weight: 600;

    letter-spacing: .5px;

    color: #fff;

    text-decoration: none;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.2);

    backdrop-filter: blur(10px);

    transition: .4s ease;

}



/* First Button */

.hero-btn a:first-child {

    background: linear-gradient(135deg,
            #2563EB,
            #1D4ED8);

    box-shadow:
        0 10px 30px rgba(37, 99, 235, .35);

}



/* Second Button */

.hero-btn a:last-child {

    background: rgba(255, 255, 255, 0.08);

    border: 1px solid rgba(255, 255, 255, .25);

}



/* Hover Effect */

.hero-btn a:hover {

    transform: translateY(-6px) scale(1.03);

}



/* First Hover Glow */

.hero-btn a:first-child:hover {

    box-shadow:

        0 15px 40px rgba(37, 99, 235, .6);

}



/* Second Hover */

.hero-btn a:last-child:hover {

    background: #fff;

    color: #0F172A;

}



/* Shine Animation */

.hero-btn a::before {

    content: "";

    position: absolute;

    top: 0;
    left: -100%;

    width: 100%;
    height: 100%;

    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, .4),
            transparent);

    transition: .6s;

}



.hero-btn a:hover::before {

    left: 100%;

}



/* Mobile Responsive */

@media(max-width:600px) {

    .hero-btn {

        flex-direction: column;

    }


    .hero-btn a {

        width: 100%;
        max-width: 280px;

    }

}




/* =========================================
        COMMON TITLE
========================================= */


.section-title {

    text-align: center;
    max-width: 800px;
    margin: auto;
    margin-bottom: 60px;

}


.section-title span {

    color: #2563EB;
    letter-spacing: 2px;
    font-size: 14px;

}


.section-title h2 {

    font-size: 45px;
    margin: 20px 0;
    font-family: 'Poppins';

}


.section-title p {

    color: #94A3B8;
    line-height: 1.7;

}




/* =========================================
        SHOWREEL
========================================= */


.showreel,
.services,
.portfolio {

    padding: 100px 8%;

}



.main-video {

    position: relative;
    max-width: 1000px;
    margin: auto;
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid #1E293B;

}



.main-video video {

    width: 100%;
    display: block;

}



.play-text {

    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

    background: #2563EB;
    padding: 20px 35px;
    border-radius: 50px;
    font-weight: 600;

}







/* =========================================
        SERVICES
========================================= */


.service-grid {

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;

}



.service-card {

    background:
        rgba(255, 255, 255, .05);

    backdrop-filter: blur(15px);

    border: 1px solid rgba(255, 255, 255, .1);

    padding: 40px 30px;

    border-radius: 25px;

    transition: .4s;

}



.service-card:hover {

    transform: translateY(-12px);
    border-color: #2563EB;

}



.service-card h3 {

    font-size: 25px;
    margin-bottom: 15px;

}



.service-card p {

    color: #94A3B8;
    line-height: 1.7;

}





/* =========================================
        PORTFOLIO
========================================= */


.portfolio-grid {

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;

}



.portfolio-card {

    background: #111827;
    border-radius: 25px;
    overflow: hidden;
    transition: .4s;
    border: 1px solid #1E293B;

}



.portfolio-card:hover {

    transform: translateY(-10px);

}



.portfolio-card video {

    width: 100%;
    height: 280px;
    object-fit: cover;

}



.portfolio-card div {

    padding: 25px;

}



.portfolio-card h3 {

    font-size: 22px;
    margin-bottom: 10px;

}



.portfolio-card p {

    color: #38BDF8;

}





/* =========================================
        STATS
========================================= */


.stats {

    padding: 80px 8%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;

}



.stats div {

    background: #111827;
    padding: 40px 20px;
    border-radius: 20px;
    border: 1px solid #1E293B;

}



.stats h2 {

    color: #2563EB;
    font-size: 45px;

}



.stats p {

    color: #CBD5E1;

}





/* =========================================
        CTA
========================================= */


.cta {

    margin: 80px 8%;
    padding: 80px 20px;
    text-align: center;

    background:
        linear-gradient(135deg,
            #2563EB,
            #0F172A);

    border-radius: 35px;

}



.cta h2 {

    font-size: 45px;
    margin-bottom: 15px;

}


.cta p {

    font-size: 18px;
    margin-bottom: 30px;

}



.cta a {

    display: inline-block;

    background: white;
    color: #0F172A;

    padding: 15px 35px;

    border-radius: 50px;

    font-weight: 600;

}





/* =========================================
        RESPONSIVE
========================================= */


@media(max-width:1000px) {


    .hero-content h1 {

        font-size: 50px;

    }


    .service-grid,
    .portfolio-grid {

        grid-template-columns: repeat(2, 1fr);

    }


    .stats {

        grid-template-columns: repeat(2, 1fr);

    }


}



@media(max-width:600px) {


    .hero-content h1 {

        font-size: 35px;

    }


    .hero-btn {

        flex-direction: column;

    }



    .service-grid,
    .portfolio-grid,
    .stats {

        grid-template-columns: 1fr;

    }



    .section-title h2 {

        font-size: 32px;

    }
}


/* ==========================================
   VIDEO PORTFOLIO SECTION
   8 VIDEO GRID DESIGN
========================================== */


.portfolio {

    padding: 100px 8%;
    background: #0F172A;

}



/* SECTION TITLE */

.section-title {

    text-align: center;
    max-width: 850px;
    margin: 0 auto 60px;

}


.section-title span {

    color: #2563EB;
    font-size: 14px;
    letter-spacing: 3px;
    font-weight: 600;

}


.section-title h2 {

    font-family: 'Poppins', sans-serif;
    font-size: 45px;
    margin: 20px 0;
    color: #ffffff;

}


.section-title p {

    color: #94A3B8;
    font-size: 17px;
    line-height: 1.7;

}



/* ==========================================
        VIDEO GRID
========================================== */


.portfolio-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;

}





/* ==========================================
        VIDEO CARD
========================================== */


.portfolio-card {

    background: #111827;

    border-radius: 22px;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.08);

    transition: 0.4s ease;

    position: relative;

}



.portfolio-card:hover {

    transform: translateY(-12px);

    border-color: #2563EB;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.4);

}





/* VIDEO */


.portfolio-card video {

    width: 100%;

    height: 320px;

    object-fit: cover;

    display: block;

    transition: 0.5s ease;

}



.portfolio-card:hover video {

    transform: scale(1.08);

}





/* VIDEO CONTENT */


.portfolio-card div {

    padding: 22px;

}



.portfolio-card h3 {

    font-size: 21px;

    color: #ffffff;

    margin-bottom: 10px;

    font-family: 'Poppins', sans-serif;

}



.portfolio-card p {

    color: #38BDF8;

    font-size: 14px;

    font-weight: 500;

}





/* ==========================================
        PLAY ICON OVERLAY
========================================== */




.portfolio-card:hover::before {

    transform: translate(-50%, -50%) scale(1);

}





/* ==========================================
        RESPONSIVE
========================================== */



@media(max-width:1200px) {


    .portfolio-grid {

        grid-template-columns: repeat(3, 1fr);

    }


}





@media(max-width:900px) {


    .portfolio-grid {

        grid-template-columns: repeat(2, 1fr);

    }



    .portfolio-card video {

        height: 280px;

    }


}





@media(max-width:600px) {


    .portfolio {

        padding: 70px 20px;

    }


    .portfolio-grid {

        grid-template-columns: 1fr;

    }



    .section-title h2 {

        font-size: 32px;

    }



    .portfolio-card video {

        height: 260px;

    }


}









/* pricing page of css */





/* =========================
   PRICING HERO
========================= */

.pricing-hero {
    background: #081524;
    padding: 100px 8%;
    text-align: center;
}

.pricing-hero span {
    color: #18b7ff;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.pricing-hero h1 {
    color: #fff;
    font-size: 55px;
    margin: 20px 0;
}

.pricing-hero p {
    max-width: 750px;
    margin: auto;
    color: #c7d0da;
    line-height: 1.8;
    font-size: 18px;
}

/* =========================
   Pricing
========================= */

.pricing {

    background: #081524;
    padding: 90px 8%;
}

.pricing-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

    gap: 35px;
}

/* Card */

.price-card {

    position: relative;

    background: #102235;

    padding: 40px 30px;

    border-radius: 20px;

    transition: .4s;

    border: 1px solid rgba(255, 255, 255, .08);

}

.price-card:hover {

    transform: translateY(-10px);

    border-color: #18b7ff;

    box-shadow: 0 20px 45px rgba(24, 183, 255, .25);

}

.plan {

    text-align: center;

    margin-bottom: 30px;
}

.plan h3 {

    color: #fff;

    font-size: 28px;
}

.plan h2 {

    color: #18b7ff;

    font-size: 55px;

    margin: 15px 0;
}

.plan p {

    color: #c9d3dc;
}

/* Features */

.price-card ul {

    list-style: none;

    margin: 25px 0;
}

.price-card ul li {

    color: #fff;

    margin: 18px 0;

    display: flex;

    align-items: center;

    gap: 12px;

    font-size: 16px;
}

.price-card ul li i {

    color: #18b7ff;
}

/* Button */

.price-card a {

    display: block;

    text-align: center;

    text-decoration: none;

    background: linear-gradient(135deg, #18b7ff, #007bff);

    color: #fff;

    padding: 15px;

    border-radius: 40px;

    font-weight: 600;

    transition: .3s;
}

.price-card a:hover {

    transform: translateY(-4px);

    box-shadow: 0 15px 30px rgba(24, 183, 255, .35);

}

/* Popular */

.popular {

    transform: scale(1.05);

    border: 2px solid #18b7ff;
}

.popular-tag {

    position: absolute;

    top: -15px;

    left: 50%;

    transform: translateX(-50%);

    background: #ffc107;

    color: #000;

    padding: 8px 22px;

    border-radius: 30px;

    font-weight: 700;

    font-size: 14px;
}


/*==========================
    WHY CHOOSE US
==========================*/

.why {
    background: #081524;
    padding: 100px 8%;
    text-align: center;
}

.why h2 {
    color: #fff;
    font-size: 48px;
    margin-bottom: 60px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.why-grid div {
    background: #102235;
    padding: 40px 30px;
    border-radius: 20px;
    transition: .4s;
    border: 1px solid rgba(255, 255, 255, .08);
}

.why-grid div:hover {
    transform: translateY(-10px);
    border-color: #18b7ff;
    box-shadow: 0 20px 40px rgba(24, 183, 255, .25);
}

.why-grid i {
    font-size: 50px;
    color: #18b7ff;
    margin-bottom: 20px;
}

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

.why-grid p {
    color: #c7d2dd;
    line-height: 1.8;
    font-size: 16px;
}


/* why choose  */


/* Second Why Choose Grid */

.why-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

    gap: 30px;

    margin-top: 60px;

}

.why-card {

    background: #16263A;

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 20px;

    padding: 40px 30px;

    text-align: center;

    transition: .4s;

}

.why-card:hover {

    transform: translateY(-10px);

    border-color: #0EA5FF;

    box-shadow: 0 15px 40px rgba(14, 165, 255, .35);

}

.why-card i {

    font-size: 42px;

    color: #0EA5FF;

    margin-bottom: 20px;

}

.why-card h3 {

    color: #fff;

    font-size: 28px;

    margin-bottom: 15px;

}

.why-card p {

    color: #B8C5D3;

    line-height: 1.8;

}




/*==========================
        CTA
==========================*/

.pricing-cta {

    background: linear-gradient(135deg, #102235, #16314d);

    padding: 100px 8%;

    text-align: center;
}

.pricing-cta h2 {

    color: #fff;

    font-size: 50px;

    margin-bottom: 20px;
}

.pricing-cta p {

    max-width: 750px;

    margin: auto;

    color: #d2dce6;

    line-height: 1.8;

    font-size: 18px;

    margin-bottom: 40px;
}

.pricing-cta a {

    display: inline-block;

    text-decoration: none;

    background: linear-gradient(135deg, #18b7ff, #007bff);

    color: #fff;

    padding: 16px 40px;

    border-radius: 50px;

    font-size: 18px;

    font-weight: 600;

    transition: .35s;
}

.pricing-cta a:hover {

    transform: translateY(-5px);

    box-shadow: 0 15px 35px rgba(24, 183, 255, .35);
}


/*==========================
      Responsive
==========================*/

@media(max-width:768px) {

    .why h2 {

        font-size: 36px;

    }

    .pricing-cta h2 {

        font-size: 34px;

    }

    .pricing-cta p {

        font-size: 16px;

    }

}

.container {

    width: 90%;

    max-width: 1400px;

    margin: auto;

    height: 90px;

    display: flex;

    justify-content: space-between;

    align-items: center;

}

/* ==============================
   LOGO
==============================*/

.logo img {

    width: 65px;

    display: block;

}

/* ==============================
   NAVBAR
==============================*/

nav {

    flex: 1;

    display: flex;

    justify-content: center;

}



nav ul li {

    list-style: none;

}

nav ul li a {

    text-decoration: none;

    font-size: 18px;

    font-weight: 500;

    color: #ffffff;

    transition: .3s;

    position: relative;

}

nav ul li a:hover {

    color: #18b8ff;

}

/* Underline */

nav ul li a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -8px;

    width: 0;

    height: 2px;

    background: #18b8ff;

    transition: .3s;

}

nav ul li a:hover::after {

    width: 100%;

}

/* ==============================
   BUTTON
==============================*/

.btn {

    padding: 16px 35px;

    background: linear-gradient(90deg, #17c2ff, #0079ff);

    color: #fff;

    border-radius: 50px;

    text-decoration: none;

    font-size: 17px;

    font-weight: 600;

    transition: .35s;

}

.btn:hover {

    transform: translateY(-2px);

    box-shadow: 0 10px 25px rgba(0, 174, 255, .35);

}

/* ==============================
   RESPONSIVE
==============================*/

@media(max-width:1100px) {

    nav ul {

        gap: 25px;

    }

    nav ul li a {

        font-size: 16px;

    }

    .btn {

        padding: 14px 25px;

    }

}

@media(max-width:900px) {

    .container {

        flex-direction: column;

        height: auto;

        padding: 20px 0;

    }

    header {

        height: auto;

    }

    nav {

        margin: 20px 0;

    }

    nav ul {

        flex-wrap: wrap;

        justify-content: center;

    }

}




/* ===========================
      HERO SECTION
=========================== */

.hero-section {

    width: 100%;

    min-height: 100vh;

    background: #071321;

    display: flex;

    align-items: center;

    padding-top: 110px;

}

.hero-wrapper {

    width: 90%;

    max-width: 1350px;

    margin: auto;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 80px;

}

/* LEFT SIDE */

.hero-content {

    flex: 1;

}

.hero-content h1 {

    font-size: 78px;

    line-height: 1.08;

    color: #fff;

    font-weight: 800;

    margin-bottom: 30px;

}

.hero-content p {

    font-size: 24px;

    color: #c0c8d2;

    line-height: 1.8;

    max-width: 720px;

    margin-bottom: 45px;

}

/* BUTTONS */

.hero-buttons {

    display: flex;

    gap: 25px;

}

.primary-btn {

    padding: 18px 42px;

    border-radius: 50px;

    background: linear-gradient(90deg, #16c2ff, #0078ff);

    color: #fff;

    text-decoration: none;

    font-weight: 600;

    transition: .3s;

}

.primary-btn:hover {

    transform: translateY(-4px);

    box-shadow: 0 12px 25px rgba(0, 162, 255, .35);

}

.secondary-btn {

    padding: 18px 42px;

    border-radius: 50px;

    border: 2px solid #14b8ff;

    color: #14b8ff;

    text-decoration: none;

    font-weight: 600;

    transition: .3s;

}

.secondary-btn:hover {

    background: #14b8ff;

    color: #fff;

}

/* RIGHT SIDE */

.hero-image {

    flex: 1;

    display: flex;

    justify-content: flex-end;

}

.hero-image img {

    width: 100%;

    max-width: 560px;

    animation: float 4s ease-in-out infinite;

}

/* FLOAT */

@keyframes float {

    0%,
    100% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-12px);

    }

}

/* RESPONSIVE */

@media(max-width:992px) {

    .hero-wrapper {

        flex-direction: column;

        text-align: center;

    }

    .hero-content h1 {

        font-size: 52px;

    }

    .hero-content p {

        font-size: 18px;

    }

    .hero-buttons {

        justify-content: center;

        flex-wrap: wrap;

    }

    .hero-image {

        justify-content: center;

        margin-top: 50px;

    }

    .hero-image img {

        max-width: 380px;

    }

}




/* blog page of css */


/* ==============================
   GOOGLE FONT
==============================*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {

    background: #071321;

}

/* ==============================
   HEADER
==============================*/

header {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 90px;

    background: #08131f;

    border-bottom: 1px solid rgba(255, 255, 255, .08);

    z-index: 1000;

}

/* ==============================
   CONTAINER
==============================*/

.container {

    width: 90%;

    max-width: 1400px;

    margin: auto;

    height: 90px;

    display: flex;

    justify-content: space-between;

    align-items: center;

}

/* ==============================
   LOGO
==============================*/

.logo img {

    width: 65px;

    display: block;

}

/* ==============================
   NAVBAR
==============================*/

nav {

    flex: 1;

    display: flex;

    justify-content: center;

}



nav ul li {

    list-style: none;

}

nav ul li a {

    text-decoration: none;

    font-size: 18px;

    font-weight: 500;

    color: #ffffff;

    transition: .3s;

    position: relative;

}

nav ul li a:hover {

    color: #18b8ff;

}



/* ==============================
   BUTTON
==============================*/

.btn {

    padding: 16px 35px;

    background: linear-gradient(90deg, #17c2ff, #0079ff);

    color: #fff;

    border-radius: 50px;

    text-decoration: none;

    font-size: 17px;

    font-weight: 600;

    transition: .35s;

}

.btn:hover {

    transform: translateY(-2px);

    box-shadow: 0 10px 25px rgba(0, 174, 255, .35);

}

/* ==============================
   RESPONSIVE
==============================*/

@media(max-width:1100px) {

    nav ul {

        gap: 25px;

    }

    nav ul li a {

        font-size: 16px;

    }

    .btn {

        padding: 14px 25px;

    }

}

@media(max-width:900px) {

    .container {

        flex-direction: column;

        height: auto;

        padding: 20px 0;

    }

    header {

        height: auto;

    }

    nav {

        margin: 20px 0;

    }

    nav ul {

        flex-wrap: wrap;

        justify-content: center;

    }

}




/* ===========================
      HERO SECTION
=========================== */

.hero-section {

    width: 100%;

    min-height: 100vh;

    background: #071321;

    display: flex;

    align-items: center;

    padding-top: 110px;

}

.hero-wrapper {

    width: 90%;

    max-width: 1350px;

    margin: auto;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 80px;

}

/* LEFT SIDE */

.hero-content {

    flex: 1;

}

.hero-content h1 {

    font-size: 78px;

    line-height: 1.08;

    color: #fff;

    font-weight: 800;

    margin-bottom: 30px;

}

.hero-content p {

    font-size: 24px;

    color: #c0c8d2;

    line-height: 1.8;

    max-width: 720px;

    margin-bottom: 45px;

}

/* BUTTONS */

.hero-buttons {

    display: flex;

    gap: 25px;

}

.primary-btn {

    padding: 18px 42px;

    border-radius: 50px;

    background: linear-gradient(90deg, #16c2ff, #0078ff);

    color: #fff;

    text-decoration: none;

    font-weight: 600;

    transition: .3s;

}

.primary-btn:hover {

    transform: translateY(-4px);

    box-shadow: 0 12px 25px rgba(0, 162, 255, .35);

}

.secondary-btn {

    padding: 18px 42px;

    border-radius: 50px;

    border: 2px solid #14b8ff;

    color: #14b8ff;

    text-decoration: none;

    font-weight: 600;

    transition: .3s;

}

.secondary-btn:hover {

    background: #14b8ff;

    color: #fff;

}

/* RIGHT SIDE */

.hero-image {

    flex: 1;

    display: flex;

    justify-content: flex-end;

}

.hero-image img {

    width: 100%;

    max-width: 560px;

    animation: float 4s ease-in-out infinite;

}

/* FLOAT */

@keyframes float {

    0%,
    100% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-12px);

    }

}

/* RESPONSIVE */

@media(max-width:992px) {

    .hero-wrapper {

        flex-direction: column;

        text-align: center;

    }

    .hero-content h1 {

        font-size: 52px;

    }

    .hero-content p {

        font-size: 18px;

    }

    .hero-buttons {

        justify-content: center;

        flex-wrap: wrap;

    }

    .hero-image {

        justify-content: center;

        margin-top: 50px;

    }

    .hero-image img {

        max-width: 380px;

    }

}



/* second page of website about */













/* ==========================
   GOOGLE FONT
========================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #081524;
    color: #fff;
}

/* ==========================
        BLOG HERO
========================== */

.blog-hero {
    padding: 100px 8%;
    text-align: center;
}

.blog-hero span {
    color: #18b7ff;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.blog-hero h1 {
    font-size: 58px;
    margin: 20px 0;
    line-height: 1.2;
}

.blog-hero p {
    max-width: 760px;
    margin: auto;
    color: #bfc9d4;
    line-height: 1.8;
    font-size: 18px;
}

/* ==========================
        BLOG SECTION
========================== */

.blog {
    padding: 90px 8%;
}

.blog-title {
    text-align: center;
    margin-bottom: 60px;
}

.blog-title h2 {
    font-size: 45px;
    margin-bottom: 15px;
}

.blog-title p {
    color: #bfc9d4;
}

/* ==========================
        BLOG GRID
========================== */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 35px;
}

/* ==========================
        BLOG CARD
========================== */

.blog-card {
    background: #102235;
    border-radius: 20px;
    overflow: hidden;
    transition: .4s;
    border: 1px solid rgba(255, 255, 255, .08);
}

.blog-card:hover {
    transform: translateY(-12px);
    border-color: #18b7ff;
    box-shadow: 0 20px 45px rgba(24, 183, 255, .25);
}

/* ==========================
        IMAGE
========================== */

.blog-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: .5s;
}

.blog-card:hover img {
    transform: scale(1.08);
}

/* ==========================
        CONTENT
========================== */

.blog-content {
    padding: 28px;
}

.blog-content span {
    display: inline-block;
    background: #16314d;
    color: #18b7ff;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
}

.blog-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-content p {
    color: #c9d2dc;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* ==========================
        BUTTON
========================== */

.blog-content a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #18b7ff;
    font-weight: 600;
    transition: .3s;
}

.blog-content a:hover {
    color: #fff;
}

.blog-content a i {
    transition: .3s;
}

.blog-content a:hover i {
    transform: translateX(6px);
}

/*==================================
        NEWSLETTER
==================================*/

.newsletter {

    background: #102235;

    padding: 100px 8%;

    text-align: center;

    border-top: 1px solid rgba(255, 255, 255, .08);

    border-bottom: 1px solid rgba(255, 255, 255, .08);

}

.newsletter h2 {

    color: #fff;

    font-size: 48px;

    margin-bottom: 20px;

}

.newsletter p {

    color: #c8d3dd;

    font-size: 18px;

    max-width: 700px;

    margin: 0 auto 40px;

    line-height: 1.8;

}

.newsletter form {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 15px;

    flex-wrap: wrap;

}

.newsletter input {

    width: 450px;

    max-width: 100%;

    padding: 18px 22px;

    border: none;

    outline: none;

    border-radius: 50px;

    background: #16314d;

    color: #fff;

    font-size: 16px;

    transition: .3s;

}

.newsletter input::placeholder {

    color: #9fb2c5;

}

.newsletter input:focus {

    border: 2px solid #18b7ff;

    box-shadow: 0 0 15px rgba(24, 183, 255, .3);

}

.newsletter button {

    padding: 18px 35px;

    border: none;

    border-radius: 50px;

    background: linear-gradient(135deg, #18b7ff, #007bff);

    color: #fff;

    font-size: 16px;

    font-weight: 600;

    cursor: pointer;

    transition: .35s;

}

.newsletter button:hover {

    transform: translateY(-5px);

    box-shadow: 0 15px 35px rgba(24, 183, 255, .35);

}

/*==================================
            CTA
==================================*/

.blog-cta {

    background: linear-gradient(135deg, #081524, #102235);

    padding: 110px 8%;

    text-align: center;

}

.blog-cta h2 {

    color: #fff;

    font-size: 52px;

    margin-bottom: 20px;

    line-height: 1.3;

}

.blog-cta p {

    max-width: 760px;

    margin: 0 auto 40px;

    color: #c9d3dc;

    font-size: 18px;

    line-height: 1.8;

}

.blog-cta a {

    display: inline-block;

    padding: 18px 42px;

    background: linear-gradient(135deg, #18b7ff, #007bff);

    color: #fff;

    text-decoration: none;

    border-radius: 50px;

    font-size: 17px;

    font-weight: 600;

    transition: .35s;

}

.blog-cta a:hover {

    transform: translateY(-6px);

    box-shadow: 0 18px 40px rgba(24, 183, 255, .35);

}

/*==================================
          Responsive
==================================*/

@media(max-width:768px) {

    .newsletter {

        padding: 70px 5%;

    }

    .newsletter h2 {

        font-size: 34px;

    }

    .newsletter p {

        font-size: 16px;

    }

    .newsletter form {

        flex-direction: column;

    }

    .newsletter input {

        width: 100%;

    }

    .newsletter button {

        width: 100%;

    }

    .blog-cta {

        padding: 80px 5%;

    }

    .blog-cta h2 {

        font-size: 36px;

    }

    .blog-cta p {

        font-size: 16px;

    }

}




/* careers page of css */




nav {

    flex: 1;

    display: flex;

    justify-content: center;

}


nav ul li {

    list-style: none;

}

nav ul li a {

    text-decoration: none;

    font-size: 18px;

    font-weight: 500;

    color: #ffffff;

    transition: .3s;

    position: relative;

}

nav ul li a:hover {

    color: #18b8ff;

}


/* ==============================
   BUTTON
==============================*/

.btn {

    padding: 16px 35px;

    background: linear-gradient(90deg, #17c2ff, #0079ff);

    color: #fff;

    border-radius: 50px;

    text-decoration: none;

    font-size: 17px;

    font-weight: 600;

    transition: .35s;

}

.btn:hover {

    transform: translateY(-2px);

    box-shadow: 0 10px 25px rgba(0, 174, 255, .35);

}

/* ==============================
   RESPONSIVE
==============================*/

@media(max-width:1100px) {

    nav ul {

        gap: 25px;

    }

    nav ul li a {

        font-size: 16px;

    }

    .btn {

        padding: 14px 25px;

    }

}

@media(max-width:900px) {

    .container {

        flex-direction: column;

        height: auto;

        padding: 20px 0;

    }

    header {

        height: auto;

    }

    nav {

        margin: 20px 0;

    }

    nav ul {

        flex-wrap: wrap;

        justify-content: center;

    }

}




/* ===========================
      HERO SECTION
=========================== */

.hero-section {

    width: 100%;

    min-height: 100vh;

    background: #071321;

    display: flex;

    align-items: center;

    padding-top: 110px;

}

.hero-wrapper {

    width: 90%;

    max-width: 1350px;

    margin: auto;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 80px;

}

/* LEFT SIDE */

.hero-content {

    flex: 1;

}

.hero-content h1 {

    font-size: 78px;

    line-height: 1.08;

    color: #fff;

    font-weight: 800;

    margin-bottom: 30px;

}

.hero-content p {

    font-size: 24px;

    color: #c0c8d2;

    line-height: 1.8;

    max-width: 720px;

    margin-bottom: 45px;

}

/* BUTTONS */

.hero-buttons {

    display: flex;

    gap: 25px;

}

.primary-btn {

    padding: 18px 42px;

    border-radius: 50px;

    background: linear-gradient(90deg, #16c2ff, #0078ff);

    color: #fff;

    text-decoration: none;

    font-weight: 600;

    transition: .3s;

}

.primary-btn:hover {

    transform: translateY(-4px);

    box-shadow: 0 12px 25px rgba(0, 162, 255, .35);

}

.secondary-btn {

    padding: 18px 42px;

    border-radius: 50px;

    border: 2px solid #14b8ff;

    color: #14b8ff;

    text-decoration: none;

    font-weight: 600;

    transition: .3s;

}

.secondary-btn:hover {

    background: #14b8ff;

    color: #fff;

}

/* RIGHT SIDE */

.hero-image {

    flex: 1;

    display: flex;

    justify-content: flex-end;

}

.hero-image img {

    width: 100%;

    max-width: 560px;

    animation: float 4s ease-in-out infinite;

}

/* FLOAT */

@keyframes float {

    0%,
    100% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-12px);

    }

}

/* RESPONSIVE */

@media(max-width:992px) {

    .hero-wrapper {

        flex-direction: column;

        text-align: center;

    }

    .hero-content h1 {

        font-size: 52px;

    }

    .hero-content p {

        font-size: 18px;

    }

    .hero-buttons {

        justify-content: center;

        flex-wrap: wrap;

    }

    .hero-image {

        justify-content: center;

        margin-top: 50px;

    }

    .hero-image img {

        max-width: 380px;

    }

}



/* second page of website about */














@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #081524;
    color: #fff;
}

/*====================================

        HERO SECTION

====================================*/

.career-hero {
    padding: 100px 8%;
    text-align: center;
}

.career-hero span {
    color: #18b7ff;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.career-hero h1 {
    font-size: 58px;
    margin: 20px 0;
    line-height: 1.2;
}

.career-hero p {
    max-width: 760px;
    margin: auto;
    color: #c8d3dd;
    font-size: 18px;
    line-height: 1.8;
}

/*====================================

        WHY WORK

====================================*/

.why-work {
    padding: 90px 8%;
}

.why-work h2 {
    text-align: center;
    font-size: 45px;
    margin-bottom: 60px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.why-card {
    background: #102235;
    padding: 35px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, .08);
    transition: .4s;
}

.why-card:hover {
    transform: translateY(-10px);
    border-color: #18b7ff;
    box-shadow: 0 18px 40px rgba(24, 183, 255, .25);
}

.why-card i {
    font-size: 45px;
    color: #18b7ff;
    margin-bottom: 20px;
}

.why-card h3 {
    margin-bottom: 15px;
    font-size: 25px;
}

.why-card p {
    color: #c9d3dc;
    line-height: 1.8;
}

/*====================================

        JOB SECTION

====================================*/

.jobs {
    padding: 90px 8%;
}

.jobs h2 {
    text-align: center;
    font-size: 45px;
    margin-bottom: 60px;
}

.job-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #102235;
    padding: 30px 35px;
    border-radius: 18px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, .08);
    transition: .4s;
}

.job-card:hover {
    border-color: #18b7ff;
    transform: translateY(-5px);
}

.job-card h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.job-card p {
    color: #bfcbd8;
}

.job-card a {
    text-decoration: none;
    background: linear-gradient(135deg, #18b7ff, #007bff);
    color: #fff;
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 600;
    transition: .3s;
}

.job-card a:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(24, 183, 255, .35);
}



/* extra */


/*====================================

        REQUIREMENTS

====================================*/

.requirements {
    padding: 90px 8%;
}

.requirements h2 {
    text-align: center;
    font-size: 45px;
    margin-bottom: 60px;
}

.require-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.require-grid div {
    background: #102235;
    padding: 35px;
    border-radius: 18px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, .08);
    transition: .4s;
}

.require-grid div:hover {
    transform: translateY(-10px);
    border-color: #18b7ff;
    box-shadow: 0 18px 40px rgba(24, 183, 255, .25);
}

.require-grid i {
    font-size: 45px;
    color: #18b7ff;
    margin-bottom: 20px;
}

.require-grid h3 {
    margin-bottom: 15px;
    font-size: 24px;
}

.require-grid p {
    color: #c9d3dc;
    line-height: 1.8;
}

/*====================================

            CTA

====================================*/

.career-cta {
    padding: 100px 8%;
    text-align: center;
    background: linear-gradient(135deg, #102235, #16314d);
}

.career-cta h2 {
    font-size: 50px;
    margin-bottom: 20px;
}

.career-cta p {
    max-width: 700px;
    margin: auto;
    color: #c9d3dc;
    line-height: 1.8;
    font-size: 18px;
    margin-bottom: 40px;
}

.career-cta a {
    display: inline-block;
    text-decoration: none;
    background: linear-gradient(135deg, #18b7ff, #007bff);
    color: #fff;
    padding: 18px 42px;
    border-radius: 50px;
    font-weight: 600;
    transition: .35s;
}

.career-cta a:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(24, 183, 255, .35);
}

/*====================================

        RESPONSIVE

====================================*/

@media(max-width:768px) {

    .career-hero h1 {
        font-size: 38px;
    }

    .why-work h2,
    .jobs h2,
    .requirements h2 {
        font-size: 34px;
    }

    .job-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .career-cta h2 {
        font-size: 36px;
    }

    .career-cta p {
        font-size: 16px;
    }

}





/* contect page off css */


/* ==============================
   GOOGLE FONT
==============================*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {

    background: #071321;

}

/* ==============================
   HEADER
==============================*/

header {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 90px;

    background: #08131f;

    border-bottom: 1px solid rgba(255, 255, 255, .08);

    z-index: 1000;

}

/* ==============================
   CONTAINER
==============================*/

.container {

    width: 90%;

    max-width: 1400px;

    margin: auto;

    height: 90px;

    display: flex;

    justify-content: space-between;

    align-items: center;

}

/* ==============================
   LOGO
==============================*/

.logo img {

    width: 65px;

    display: block;

}

/* ==============================
   NAVBAR
==============================*/

nav {

    flex: 1;

    display: flex;

    justify-content: center;

}



nav ul li {

    list-style: none;

}

nav ul li a {

    text-decoration: none;

    font-size: 18px;

    font-weight: 500;

    color: #ffffff;

    transition: .3s;

    position: relative;

}

nav ul li a:hover {

    color: #18b8ff;

}


/* ==============================
   BUTTON
==============================*/

.btn {

    padding: 16px 35px;

    background: linear-gradient(90deg, #17c2ff, #0079ff);

    color: #fff;

    border-radius: 50px;

    text-decoration: none;

    font-size: 17px;

    font-weight: 600;

    transition: .35s;

}

.btn:hover {

    transform: translateY(-2px);

    box-shadow: 0 10px 25px rgba(0, 174, 255, .35);

}

/* ==============================
   RESPONSIVE
==============================*/

@media(max-width:1100px) {

    nav ul {

        gap: 25px;

    }

    nav ul li a {

        font-size: 16px;

    }

    .btn {

        padding: 14px 25px;

    }

}

@media(max-width:900px) {

    .container {

        flex-direction: column;

        height: auto;

        padding: 20px 0;

    }

    header {

        height: auto;

    }

    nav {

        margin: 20px 0;

    }

    nav ul {

        flex-wrap: wrap;

        justify-content: center;

    }

}

/*        */



/*==========================
       SOCIAL ICONS
==========================*/

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 35px;
}

.social-icons a {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    text-decoration: none;
    color: #fff;
    font-size: 26px;
    background: #13253b;
    border: 2px solid rgba(255, 255, 255, .08);
    transition: 0.4s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .35);
}

/* Hover Animation */
.social-icons a:hover {
    transform: translateY(-8px) scale(1.08);
    box-shadow: 0 0 25px rgba(0, 191, 255, .6);
}

/* Facebook */
.social-icons a:nth-child(1):hover {
    background: #1877F2;
}

/* Instagram */
.social-icons a:nth-child(2):hover {
    background: linear-gradient(45deg, #FEDA75, #FA7E1E, #D62976, #962FBF, #4F5BD5);
}

/* LinkedIn */
.social-icons a:nth-child(3):hover {
    background: #0A66C2;
}

/* YouTube */
.social-icons a:nth-child(4):hover {
    background: #FF0000;
}

/* WhatsApp */
.social-icons a:nth-child(5):hover {
    background: #25D366;
}


/* ==========================
   CONTACT HERO
========================== */

.contact-hero {
    width: 100%;
    min-height: 60vh;
    background: #071321;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 140px 20px 80px;
}

.hero-content {
    max-width: 850px;
}

.hero-content h1 {
    font-size: 55px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    color: #bfc9d6;
    line-height: 1.8;
    margin-bottom: 35px;
}

.hero-content button {
    padding: 16px 40px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(90deg, #16c5ff, #007bff);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

.hero-content button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 170, 255, .4);
}

/* ==========================
   CONTACT SECTION
========================== */

.contact-section {
    width: 90%;
    max-width: 1300px;
    margin: 80px auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.contact-form,
.contact-info {
    background: #0d1d30;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    padding: 40px;
}

.contact-form h2,
.contact-info h2 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 30px;
}

.contact-form form {
    display: grid;
    gap: 18px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .08);
    background: #081321;
    color: #fff;
    font-size: 16px;
    outline: none;
    transition: .3s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: #19bfff;
    box-shadow: 0 0 15px rgba(25, 191, 255, .25);
}

.contact-form textarea {
    min-height: 160px;
    resize: none;
}

.contact-form button {
    padding: 18px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(90deg, #16c5ff, #007bff);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

.contact-form button:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 170, 255, .4);
}

/* ==========================
   CONTACT INFO
========================== */

.contact-info p {
    color: #c6d0dd;
    font-size: 17px;
    margin: 20px 0;
    line-height: 1.8;
}

.contact-info i {
    color: #18bfff;
    margin-right: 10px;
}

.social-icons {
    display: flex;
    gap: 18px;
    margin-top: 35px;
}

.social-icons a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #081321;
    color: #fff;
    text-decoration: none;
    transition: .3s;
    font-size: 20px;
}

.social-icons a:hover {
    background: #18bfff;
    transform: translateY(-5px);
}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:991px) {

    .contact-section {
        grid-template-columns: 1fr;
    }

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

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

}



/* ==========================
   WHY CONTACT US
========================== */

.why-section {
    width: 100%;
    padding: 90px 8%;
    background: #071321;
    text-align: center;
}

.why-section h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 50px;
    font-weight: 700;
    position: relative;
}

.why-section h2::after {
    content: "";
    width: 80px;
    height: 4px;
    background: #18c5ff;
    display: block;
    margin: 15px auto;
    border-radius: 20px;
}

/* Cards */

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

.card {
    background: #0b1d31;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    padding: 35px 20px;
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    transition: .35s;
    cursor: pointer;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(24, 197, 255, .25);
    border-color: #18c5ff;
}

/* ==========================
   MAP SECTION
========================== */

.map-section {
    padding: 80px 20px;
    background: #071321;
    text-align: center;
}

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

.map-section iframe {
    width: 90%;
    max-width: 1200px;
    height: 500px;
    border: none;
    border-radius: 20px;
    display: block;
    margin: 0 auto;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .35);
}

.map-section {
    padding: 80px 0 0;
    background: #071321;
    text-align: center;
}

.map-section iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}