/* =========================================================
   NAVON INNOVATIONS – CORPORATE PREMIUM STYLESHEET
   Theme: Blue Tech Enterprise
   Primary: #0066CC
   Secondary: #00C6FF
========================================================= */

/* ================= ROOT VARIABLES ================= */

:root {
    --primary: #0066CC;
    --primary-dark: #003366;
    --secondary: #00C6FF;
    --light-bg: #f4f8fc;
    --white: #ffffff;
    --dark: #111111;
    --text: #444444;
}

/* ================= GLOBAL RESET ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    transition: 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

/* ================= TYPOGRAPHY ================= */

h1, h2, h3, h4, h5 {
    font-weight: 800;
    color: var(--dark);
}

.section-title {
    font-size: 42px;
    margin-bottom: 20px;
}

.section-padding {
    padding: 100px 0;
}

/* ================= TOP BAR ================= */

.top-bar {
    background: var(--primary-dark);
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar strong {
    color: white;
}

.contact-highlight {
    background: var(--primary);
    color: white;
    padding: 6px 16px;
    border-radius: 25px;
    font-weight: 600;
}

.contact-highlight:hover {
    background: var(--secondary);
    color: white;
}

/* ================= NAVBAR ================= */

.navbar {
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    padding: 15px 0;
}

.navbar-brand img {
    max-height: 45px;
}

.nav-link {
    font-weight: 600;
    margin-left: 25px;
    color: var(--dark) !important;
}

.nav-link:hover {
    color: var(--primary) !important;
}

.dropdown-menu {
    border-radius: 10px;
    border: none;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.dropdown-item:hover {
    background: var(--light-bg);
    color: var(--primary);
}

/* ================= HERO SECTION ================= */

.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(0,51,102,0.85),
        rgba(0,102,204,0.7)
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 60px;
    font-weight: 900;
    line-height: 1.2;
}
.hero-title .line1, .line3{
    color: var(--secondary);;
}
.hero-title .line2{
    color: var(--white);
}

.hero-title span {
    display: inline-block;
}

.hero-sub {
    margin-top: 20px;
    font-size: 20px;
    color: #e0f4ff;
}
/* ================= TRUSTED PARTNERS ================= */

.trusted-section {
    padding: 60px 0;
    background: #f4f8fc;
}

.trusted-title {
    font-weight: 700;
    margin-bottom: 40px;
    color: #003366;
}

.logo-slider {
    overflow: hidden;
    position: relative;
}

.logo-track {
    display: flex;
    width: max-content;
    animation: scrollLogos 25s linear infinite;
}

.logo-track img {
    height: 60px;
    margin: 0 10px;
    opacity: 0.8;
    transition: 0.3s ease;
}

.logo-track img:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Infinite scroll animation */
@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause on hover */
.logo-slider:hover .logo-track {
    animation-play-state: paused;
}

/* Responsive */
@media(max-width:768px){
    .logo-track img {
        height: 40px;
        margin: 0 25px;
    }
}

/* Buttons */
.hero-btn-primary {
    background: #0066CC;
    border: none;
    padding: 14px 30px;
    font-weight: 600;
}

.hero-btn-primary:hover {
    background: #00C6FF;
}

.hero-btn-outline {
    border: 2px solid white;
    padding: 14px 30px;
}

/* Scroll Indicator */
.scroll-indicator {
    margin-top: 40px;
    font-size: 24px;
    animation: bounce 1.5s infinite;
}

@keyframes bounce {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* Responsive */
@media(max-width:768px){
    .hero-title{
        font-size: 36px;
    }
}

/* ================= BUTTONS ================= */

.btn-primary {
    background: var(--primary);
    border: none;
    padding: 14px 30px;
    font-weight: 600;
}

.btn-primary:hover {
    background: var(--secondary);
}

.btn-outline-light {
    border: 2px solid white;
    padding: 14px 30px;
}

/* ====================================================
   MODERN SERVICE GRID – PREMIUM DESIGN
==================================================== */

.services-modern {
    padding: 100px 0;
    background: #ffffff;
}
.section-header-modern {
    margin-bottom: 50px;
}

/* Small Label Above Heading */

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #0066CC;
    margin-bottom: 15px;
}

/* Main Heading */

.section-header-modern h2 {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #111;
}

.section-header-modern h2 span {
    background: linear-gradient(90deg, #0066CC, #00C6FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Paragraph */

.section-header-modern p {
    font-size: 18px;
    color: #555;
    max-width: 750px;
    margin: 0 auto 30px auto;
}

/* Divider Line */

.header-divider {
    width: 80px;
    height: 4px;
    margin: 0 auto;
    background: linear-gradient(90deg, #0066CC, #00C6FF);
    border-radius: 5px;
}

/* Responsive */

@media(max-width:992px){
    .section-header-modern h2 {
        font-size: 32px;
    }
}

/* GRID */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* CARD */

.service-modern {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
    transition: 0.4s ease;
    display: flex;
    flex-direction: column;
}

.service-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.1);
}

/* FEATURED BIG CARD */

.service-modern.featured {
    grid-column: span 2;
}

.service-image {
    background: #f4f8fc;
    padding: 30px;
    text-align: center;
}

.service-image img {
    max-height: 220px;
    width: auto;
}



/* CONTENT */

.service-info {
    padding: 30px;
}

.service-info h3,
.service-info h4 {
    font-weight: 700;
    color: #003366;
    margin-bottom: 12px;
}

.service-info p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
}

/* MODERN BUTTON */

.btn-modern {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 30px;
    background: #0066CC;
    color: white;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-modern:hover {
    background: #00C6FF;
    padding-left: 25px;
    color: white;
}

/* RESPONSIVE */

@media(max-width:992px){

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .service-modern.featured {
        grid-column: span 2;
    }

}

@media(max-width:768px){

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-modern.featured {
        grid-column: span 1;
    }

}


/* ================= PRODUCT BOX ================= */

.product-box {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s ease;
}

.product-box:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-8px);
}

.product-box:hover h5 {
    color: white;
}

/* ================= STATS ================= */

.counter {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary);
}

/* ================= LOGO SLIDER ================= */

.logo-slider {
    overflow: hidden;
    white-space: nowrap;
    padding: 20px 0;
}

.logo-track {
    display: inline-block;
    animation: scroll 30s linear infinite;
}

.logo-track img {
    height: 60px;
    margin: 0 50px;
    opacity: 0.8;
}

.logo-track img:hover {
    opacity: 1;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ================= GALLERY ================= */

.gallery-section img {
    border-radius: 12px;
    transition: 0.3s ease;
}

.gallery-section img:hover {
    transform: scale(1.05);
}

/* ================= TESTIMONIAL ================= */

.review-box {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* ================= CTA SECTION ================= */

.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 100px 0;
}

/* ================= FOOTER ================= */

.main-footer {
    background: var(--primary-dark);
    color: white;
    padding: 80px 0 0;
}

.main-footer h5 {
    margin-bottom: 20px;
    font-weight: 700;
    color: #cceeff;
}

.main-footer ul {
    list-style: none;
    padding: 0;
}

.main-footer ul li {
    margin-bottom: 10px;
}

.main-footer ul li a {
    color: white;
    font-size: 14px;
}

.main-footer ul li a:hover {
    color: var(--secondary);
}

.footer-bottom {
    background: #001933;
    padding: 20px 0;
    margin-top: 50px;
    font-size: 14px;
}

/* ================= FORMS ================= */

.form-control {
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(0,102,204,0.25);
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){
    .hero-title{
        font-size:42px;
    }

    .section-title{
        font-size:30px;
    }
}

@media(max-width:768px){
    .hero-title{
        font-size:34px;
    }

    .section-padding{
        padding:70px 0;
    }
}

@media(max-width:576px){
    .hero-title{
        font-size:28px;
    }

    .counter{
        font-size:32px;
    }
}

/* =====================================================
   PROBLEM SECTION – ENTERPRISE CLEAN VERSION
===================================================== */

.problem-section {
    padding: 120px 0;
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #f4f8fc 100%
    );
}

/* LEFT CONTENT */

.problem-content {
    padding-right: 40px;
}

.problem-heading {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #111;
}

.problem-heading span {
    color: #0066CC;
}

.problem-description {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    max-width: 520px;
}
.point-item,
.problem-btn {
    opacity: 1 !important;
    transform: none !important;
}

/* POINT LIST */

.problem-points {
    margin-top: 20px;
}

.point-item {
    margin-bottom: 25px;
    padding: 15px 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.point-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.point-item h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #003366;
}

.point-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* BUTTON */

.problem-btn {
    background: #0066CC;
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s ease;
}

.problem-btn:hover {
    background: #00C6FF;
    color: white;
}

/* RIGHT IMAGE */

.problem-image-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.problem-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.problem-image-box:hover .problem-image {
    transform: scale(1.05);
}

/* INSIGHT FLOAT CARD */

.insight-card {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: #0066CC;
    color: white;
    padding: 18px 22px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
    max-width: 240px;
}

.insight-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.insight-card p {
    font-size: 13px;
    margin: 0;
}



/* RESPONSIVE */

@media (max-width: 992px) {

    .problem-section {
        padding: 80px 0;
    }

    .problem-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .problem-heading {
        font-size: 32px;
    }

    .insight-card {
        position: static;
        margin-top: 20px;
    }

}
/* ====================================================
   DIGITAL PRODUCTS – PREMIUM GLASS STYLE
==================================================== */

.digital-products-premium {
    padding: 160px 0;
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #f4f8fc 100%
    );
}

/* Wrapper */

.product-wrapper {
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

/* Card */

.product-card-premium {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border-radius: 28px;
    padding: 60px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.06);
    transition: 0.4s ease;
}

.product-card-premium:hover {
    transform: translateY(-15px);
    box-shadow: 0 50px 100px rgba(0,0,0,0.12);
}

/* Alternate reverse layout */

.product-card-premium.alt {
    flex-direction: row-reverse;
}

/* Text */

.product-text {
    flex: 1;
    padding-right: 60px;
}

.product-card-premium.alt .product-text {
    padding-right: 0;
    padding-left: 60px;
}

.product-text h3 {
    font-size: 32px;
    font-weight: 800;
    color: #003366;
    margin-bottom: 20px;
}

.product-text p {
    font-size: 17px;
    color: #555;
    margin-bottom: 25px;
}

.product-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.product-text ul li {
    margin-bottom: 12px;
    font-size: 15px;
    color: #444;
    position: relative;
    padding-left: 20px;
}

.product-text ul li:before {
    content: "•";
    color: #0066CC;
    position: absolute;
    left: 0;
}

/* Image */

.product-visual {
    flex: 1;
    text-align: center;
}

.product-visual img {
    width: 100%;
    max-width: 480px;
    border-radius: 20px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.08);
}

/* Button */

.btn-product-modern {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 40px;
    background: #0066CC;
    color: white;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-product-modern:hover {
    background: #00C6FF;
    padding-left: 45px;
    color: white;
}

/* Responsive */

@media(max-width:992px){

    .product-card-premium {
        flex-direction: column;
        padding: 40px;
    }

    .product-card-premium.alt {
        flex-direction: column;
    }

    .product-text {
        padding: 0;
        margin-bottom: 40px;
    }

}

/* ====================================================
   AI MODERN LIGHT STYLE
==================================================== */

.ai-modern {
    padding: 100px 0;
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #eef6ff 100%
    );
}

/* HEADER */

.ai-modern-header {
    margin-bottom: 80px;
}

.ai-modern-header h2 {
    font-size: 44px;
    font-weight: 800;
    color: #111;
}

.ai-modern-header h2 span {
    background: linear-gradient(90deg, #0066CC, #00C6FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ai-modern-header p {
    font-size: 18px;
    color: #555;
    max-width: 750px;
    margin: 15px auto 0 auto;
}

/* GRID */

.ai-modern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* CARD */

.ai-modern-card {
    background: white;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    transition: 0.4s ease;
    display: flex;
    flex-direction: column;
}

.ai-modern-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.12);
}

.ai-modern-card img {
   
    object-fit: cover;
     max-height: 220px;
    width: auto;
}

/* CONTENT */

.ai-card-content {
    padding: 25px;
}

.ai-card-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #003366;
    margin-bottom: 10px;
}

.ai-card-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

/* LINK */

.ai-link {
    font-size: 14px;
    font-weight: 600;
    color: #0066CC;
    transition: 0.3s ease;
}

.ai-link:hover {
    color: #00C6FF;
    padding-left: 5px;
}

/* BUTTON */

.ai-modern-btn {
    margin-top: 70px;
}

.btn-ai-modern {
    padding: 14px 40px;
    background: #0066CC;
    color: white;
    border-radius: 40px;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-ai-modern:hover {
    background: #00C6FF;
    padding-left: 50px;
    color: white;
}

/* RESPONSIVE */

@media(max-width:1200px){
    .ai-modern-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width:992px){
    .ai-modern-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:576px){
    .ai-modern-grid {
        grid-template-columns: 1fr;
    }
}
/* ====================================================
   IMPACT / LIVE STATS – PREMIUM DESIGN
==================================================== */

.impact-section {
    padding: 100px 0;
    background: linear-gradient(
        180deg,
        #eef6ff 0%,
        #ffffff 100%
    );
}

/* Header */

.impact-header {
    margin-bottom: 90px;
}

.impact-label {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #0066CC;
    font-weight: 600;
}

.impact-header h2 {
    font-size: 42px;
    font-weight: 800;
    margin: 15px 0;
    color: #111;
}

.impact-header p {
    font-size: 18px;
    color: #555;
    max-width: 700px;
    margin: auto;
}

/* Grid */

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* Card */

.impact-card {
    background: white;
    padding: 50px 30px;
    border-radius: 22px;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0,0,0,0.05);
    transition: 0.4s ease;
}

.impact-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 35px 80px rgba(0,0,0,0.1);
}

.impact-icon {
    font-size: 28px;
    margin-bottom: 20px;
}

/* Number */

.impact-card h3 {
    font-size: 48px;
    font-weight: 900;
    color: #0066CC;
    margin-bottom: 10px;
}

.impact-card p {
    font-size: 15px;
    color: #666;
}

/* Responsive */

@media(max-width:1200px){
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:576px){
    .impact-grid {
        grid-template-columns: 1fr;
    }
}
/* ====================================================
   MODERN GALLERY – CLEAN MASONRY STYLE
==================================================== */

.gallery-modern {
    padding: 140px 0;
    background: #ffffff;
}

/* GRID */

.gallery-grid {
    column-count: 3;
    column-gap: 25px;
}

/* ITEM */

.gallery-item {
    margin-bottom: 25px;
    break-inside: avoid;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    transition: 0.4s ease;
}

.gallery-item img {
    width: 100%;
    height: auto;   /* IMPORTANT – no fixed height */
    display: block;
    transition: 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* RESPONSIVE */

@media(max-width:1200px){
    .gallery-grid {
        column-count: 2;
    }
}

@media(max-width:768px){
    .gallery-grid {
        column-count: 1;
    }
}
/* ====================================================
   TESTIMONIAL SLIDER – MODERN STYLE
==================================================== */

.testimonial-slider-section {
    padding: 30px 0;
    background: #f4f8fc;
}

.testimonialSwiper {
   
}

.testimonial-card-modern {
    background: #ffffff;
    padding: 50px;
    border-radius: 24px;
    /* box-shadow: 0 15px 30px rgba(0, 0, 0, 0.249); */
    transition: 0.4s ease;
    height: 100%;
}

.testimonial-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 80px rgba(0,0,0,0.1);
}

.testimonial-card-modern p {
    font-size: 17px;
    color: #444;
    margin-bottom: 40px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-user img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-user h5 {
    margin: 0;
    font-weight: 700;
    color: #003366;
}

.testimonial-user span {
    font-size: 13px;
    color: #777;
}

/* ====================================================
   HIGH IMPACT FINAL CTA – PREMIUM VERSION
==================================================== */

.final-cta-premium {
    position: relative;
    padding: 180px 0;
    background: linear-gradient(
        135deg,
        #003366 0%,
        #0066CC 50%,
        #00C6FF 100%
    );
    color: white;
    overflow: hidden;
}

/* Background Glow Shape */

.cta-bg-shape {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.15), transparent);
    top: -200px;
    right: -200px;
    border-radius: 50%;
}

/* Content */

.cta-premium-content {
    position: relative;
    z-index: 2;
}

/* Small Tagline */

.cta-tagline {
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.8;
}

/* Heading */

.cta-premium-content h2 {
    font-size: 48px;
    font-weight: 900;
    margin: 20px 0;
    line-height: 1.3;
}

.cta-premium-content h2 span {
    background: linear-gradient(90deg, #ffffff, #cceeff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Paragraph */

.cta-premium-content p {
    font-size: 18px;
    max-width: 750px;
    margin: 0 auto 40px auto;
    color: #e6f4ff;
}

/* Highlight Points */

.cta-highlight-points {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.cta-highlight-points span {
    background: rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
}

/* Buttons */

.cta-buttons-premium {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.cta-btn-main {
    padding: 16px 45px;
    background: white;
    color: #0066CC;
    border-radius: 50px;
    font-weight: 700;
    transition: 0.3s ease;
}

.cta-btn-main:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.cta-btn-alt {
    padding: 16px 45px;
    border: 2px solid white;
    border-radius: 50px;
    font-weight: 600;
    color: white;
    transition: 0.3s ease;
}

.cta-btn-alt:hover {
    background: white;
    color: #0066CC;
}

/* Responsive */

@media(max-width:768px){
    .cta-premium-content h2 {
        font-size: 32px;
    }
}
