/* Skones Security Limited - Main Stylesheet */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    overflow-x: hidden;
}

/* Top Header Bar */
.top-header {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 26, 51, 0.95) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    padding: 18px 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.top-header.scrolled {
    position: fixed;
    background: linear-gradient(135deg, #000000 0%, #001a33 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 215, 0, 0.1);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.top-header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.contact-info {
    display: flex;
    gap: 40px;
    font-size: 16px;
    font-weight: 500;
}

.contact-info i {
    margin-right: 10px;
    color: #FFD700;
    font-size: 18px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #FFD700;
    transform: translateY(-2px);
}

/* Header Separator */
.header-separator {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,215,0,0.5), transparent);
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    z-index: 1001;
    transition: all 0.3s ease;
}

.header-separator.scrolled {
    position: fixed;
}

/* For pages with banners - make headers overlay like home page */
body:not(.home-page) .top-header {
    position: absolute;
    top: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 26, 51, 0.95) 100%);
}

body:not(.home-page) .header-separator {
    position: absolute;
    top: 60px;
}

body:not(.home-page) .main-header {
    position: absolute;
    top: 61px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* After scrolling, headers become solid and sticky */
body:not(.home-page) .top-header.scrolled {
    position: fixed;
    background: linear-gradient(135deg, #000000 0%, #001a33 100%);
}

body:not(.home-page) .header-separator.scrolled {
    position: fixed;
    top: 60px;
}

body:not(.home-page) .main-header.scrolled {
    position: fixed;
    top: 60px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

/* Main Header - GLASSMORPHISM EFFECT */
.main-header {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: absolute;
    top: 61px;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.main-header.scrolled {
    position: fixed;
    top: 60px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.main-header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
}

/* Logo - WHITE BY DEFAULT (on both home and internal pages with banners) */
.logo {
    font-size: 28px;
    font-weight: bold;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.logo img {
    height: 45px;
    width: auto;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
    transition: filter 0.3s ease;
}

/* When scrolled, logo becomes dark */
.main-header.scrolled .logo {
    color: #0066CC;
    text-shadow: none;
}

.main-header.scrolled .logo img {
    filter: none;
}

.logo i {
    font-size: 32px;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.main-header.scrolled .logo i {
    color: #FFD700;
    text-shadow: none;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

/* Nav Links - WHITE BY DEFAULT */
nav a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 16px;
    position: relative;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.main-header.scrolled nav a {
    color: #333;
    text-shadow: none;
}

nav a:hover,
nav a.active {
    color: #FFD700;
}

.main-header.scrolled nav a:hover,
.main-header.scrolled nav a.active {
    color: #0066CC;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FFD700;
    transition: width 0.3s ease, background 0.3s ease;
}

.main-header.scrolled nav a::after {
    background: #0066CC;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

/* Hero Section - FULL SCREEN (Home page only) */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

/* Page Banner - HALF SCREEN (Internal pages) */
.page-banner {
    height: 50vh;
    min-height: 400px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #001a33 0%, #003d7a 50%, #0066CC 100%);
    padding-top: 121px; /* Account for header height */
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.page-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 0 40px;
}

.page-banner-content h1 {
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.page-banner-content p {
    font-size: 20px;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

/* Breadcrumb navigation in banner */
.breadcrumb {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 14px;
    opacity: 0.9;
}

.breadcrumb a {
    color: #FFD700;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.breadcrumb span {
    color: rgba(255,255,255,0.7);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.slide1 {
    background: linear-gradient(135deg, #001a33 0%, #003d7a 50%, #0066CC 100%);
}

.slide2 {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #003366 100%);
}

.slide3 {
    background: linear-gradient(135deg, #0a1929 0%, #001f3f 50%, #00509e 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    color: white;
    max-width: 800px;
    padding: 0 80px;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.25) 0%, rgba(255, 193, 7, 0.35) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 215, 0, 0.5);
    padding: 8px 24px;
    border-radius: 50px;
    color: #FFD700;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3), 0 0 20px rgba(255, 215, 0, 0.2);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.hero-content h1 {
    font-size: 64px;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
    color: #000000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4), 0 0 30px rgba(255, 215, 0, 0.2);
    border: 2px solid transparent;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6), 0 0 40px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #FFC107 0%, #FFD700 100%);
    border: 2px solid #FFD700;
}

/* Trusted Companies Slider Section */
.trusted-companies {
    padding: 60px 40px;
    background: white;
    overflow: hidden;
}

.trusted-companies h2 {
    text-align: center;
    font-size: 32px;
    background: linear-gradient(135deg, #003d7a 0%, #0066CC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 50px;
    font-weight: 700;
}

.logo-slider-container {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.logo-slider {
    display: flex;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

.logo-slider:hover {
    animation-play-state: paused;
}

.logo-item {
    flex: 0 0 auto;
    width: 250px;
    height: 120px;
    margin: 0 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.logo-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #FFD700 0%, #FFC107 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.logo-item:hover::before {
    transform: scaleX(1);
}

.logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2), 0 0 20px rgba(0, 102, 204, 0.1);
    border-color: #FFD700;
}

.logo-item i {
    font-size: 50px;
    background: linear-gradient(135deg, #003d7a 0%, #0066CC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.logo-item:hover i {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(0, 102, 204, 0.3));
}

.logo-item span {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-align: center;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Section Styling */
.section {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #003d7a 0%, #0066CC 50%, #00509e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    text-shadow: 0 4px 20px rgba(0, 102, 204, 0.3);
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 18px;
    margin-top: -30px;
    margin-bottom: 40px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FFD700 0%, #FFC107 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2), 0 0 30px rgba(0, 102, 204, 0.1);
    border-color: #FFD700;
}

.service-card i {
    font-size: 48px;
    color: #FFD700;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.3));
    transition: all 0.3s ease;
}

.service-card:hover i {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 12px rgba(255, 215, 0, 0.5));
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #003d7a 0%, #0066CC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card p {
    color: #666;
    line-height: 1.8;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #000000 0%, #001a33 50%, #003d7a 100%);
    padding: 80px 40px;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-box {
    text-align: center;
    color: white;
    padding: 20px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.stat-box i {
    font-size: 50px;
    margin-bottom: 20px;
    opacity: 0.9;
    color: #FFD700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
    color: white;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.stat-box p {
    font-size: 18px;
    opacity: 0.9;
}

/* Services Preview */
.services-preview {
    background: #f8f9fa;
}

/* Customers Section */
.customers-section {
    background: white;
}

.customers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.customer-logo {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.customer-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #FFD700 0%, #FFC107 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.customer-logo:hover::before {
    transform: scaleX(1);
}

.customer-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.2), 0 0 25px rgba(0, 102, 204, 0.1);
    border-color: #FFD700;
}

.customer-logo i {
    font-size: 60px;
    background: linear-gradient(135deg, #003d7a 0%, #0066CC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.customer-logo:hover i {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(0, 102, 204, 0.3));
}

.customer-logo p {
    font-weight: 600;
    color: #333;
    font-size: 16px;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e3e9f0 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FFD700 0%, #FFC107 100%);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.2), 0 0 30px rgba(0, 102, 204, 0.1);
    border-color: #FFD700;
}

.stars {
    color: #FFD700;
    margin-bottom: 20px;
    font-size: 18px;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.testimonial-card > p {
    color: #666;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
    border-top: 2px solid #f0f0f0;
    padding-top: 20px;
}

.testimonial-author strong {
    background: linear-gradient(135deg, #003d7a 0%, #0066CC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 16px;
}

.testimonial-author span {
    color: #999;
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #000000 0%, #001a33 40%, #003d7a 100%);
    padding: 100px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: white;
    font-size: 42px;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 20px;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 18px 45px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
    color: #000000;
    border: 2px solid transparent;
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5), 0 0 40px rgba(255, 215, 0, 0.3);
    background: linear-gradient(135deg, #FFC107 0%, #FFD700 100%);
    border-color: #FFD700;
}

.cta-btn.secondary {
    background: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.cta-btn.secondary:hover {
    background: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    border-color: #FFD700;
}

/* Page Content (for internal pages) */
.page-content {
    padding: 80px 40px 80px;
    max-width: 1400px;
    margin: 0 auto;
    min-height: calc(100vh - 400px);
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 48px;
    background: linear-gradient(135deg, #003d7a 0%, #0066CC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 20px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 40px auto;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    border: 2px solid #f0f0f0;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066CC;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
    color: #000000;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #000000 0%, #001a33 50%, #003366 100%);
    color: white;
    padding: 40px;
    text-align: center;
    border-top: 2px solid rgba(255, 215, 0, 0.3);
}

footer p {
    margin-bottom: 15px;
}

footer p:first-child {
    font-size: 16px;
    font-weight: 500;
}

footer p:last-child {
    color: rgba(255, 215, 0, 0.8);
    font-size: 14px;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content {
        padding: 0 40px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 6px 18px;
    }

    .page-banner {
        height: 40vh;
        min-height: 300px;
    }

    .page-banner-content h1 {
        font-size: 36px;
    }

    .page-banner-content p {
        font-size: 16px;
    }

    .breadcrumb {
        font-size: 12px;
    }

    .trusted-companies h2 {
        font-size: 24px;
        padding: 0 20px;
    }

    .logo-item {
        width: 180px;
        height: 100px;
        margin: 0 15px;
    }

    .logo-item i {
        font-size: 40px;
    }

    .logo-item span {
        font-size: 12px;
    }

    nav ul {
        gap: 20px;
        font-size: 14px;
    }

    .top-header-content {
        flex-direction: column;
        gap: 15px;
    }

    .contact-info {
        flex-direction: column;
        gap: 10px;
        font-size: 14px;
        align-items: center;
    }

    .social-links {
        gap: 15px;
    }

    .social-links a {
        font-size: 18px;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
    }

    .page-content {
        padding: 120px 20px 60px;
    }

    .page-header h1 {
        font-size: 36px;
    }
}