/* 
 * Barbican BSPL Security Styling
 * Theme: Premium Security Guard Agency
 * Source Reference: ldsguarding.in
 */

:root {
    --primary-blue: #002147;
    --accent-yellow: #FFB400;
    --dark-grey: #333333;
    --light-grey: #F4F4F4;
    --white: #FFFFFF;
    --transition: all 0.3s ease;
    --container-width: 1200px;
    --shadow: 0 10px 25px rgba(0,0,0,0.1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: var(--dark-grey);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

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

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

.align-end {
    align-items: flex-end;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 15px;
}

.col-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
    padding: 15px;
}

.col-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
    padding: 15px;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 15px;
}

/* Spacing Utilities */
.pt-100 { padding-top: 70px; }
.pb-100 { padding-bottom: 70px; }
.pt-80 { padding-top: 60px; }
.pb-80 { padding-bottom: 60px; }
.pt-50 { padding-top: 40px; }
.pb-50 { padding-bottom: 40px; }
.pt-20 { padding-top: 20px; }
.p-20 { padding: 20px; }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-50 { margin-top: 35px; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-50 { margin-bottom: 35px; }
.ml-20 { margin-left: 20px; }
.mr-10 { margin-right: 10px; }

/* Layout Utilities */
.w-100 { width: 100%; }
.bg-light { background-color: var(--light-grey); }
.rounded { border-radius: 10px; }
.rounded-circle { border-radius: 50%; }
.shadow { box-shadow: var(--shadow); }
.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-yellow { color: var(--accent-yellow); }
.text-navy { color: var(--primary-blue); }
.flex-center { display: flex; justify-content: center; align-items: center; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.align-center { display: flex; align-items: center; }
.gap-20 { gap: 20px; }
.wrap { flex-wrap: wrap; }
.d-block { display: block; }
.overflow-hidden { overflow: hidden; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.btn-yellow {
    background-color: var(--accent-yellow);
    color: var(--primary-blue);
}

.btn-yellow:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

.btn-navy {
    background-color: var(--primary-blue);
    color: var(--white);
}

.btn-navy:hover {
    background-color: var(--accent-yellow);
    color: var(--primary-blue);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-blue);
}

/* Sections */
.section-subtitle {
    color: var(--accent-yellow);
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-title span {
    color: var(--accent-yellow);
}

/* Top Bar */
.top-bar {
    background-color: #ffffff;
    color: var(--primary-blue);
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid #efefef;
}

.top-info span {
    margin-right: 20px;
    font-weight: 500;
}

.top-info i {
    color: var(--accent-yellow);
    margin-right: 5px;
}

.top-social a {
    margin-left: 15px;
    font-size: 14px;
}

.top-social {
    display: flex;
    align-items: center;
}

.top-bar-btn {
    background-color: var(--primary-blue);
    color: #ffffff;
    padding: 8px 25px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    margin-left: 20px;
}

.top-bar-btn:hover {
    background-color: var(--white);
    color: var(--primary-blue);
}

/* Navbar */
.main-header {
    background-color: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
    height: 100%;
}

.logo-img {
    height: 60px;
    width: auto;
    display: block;
    object-fit: contain;
}

.logo-text {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1.1;
    display: flex;
    flex-direction: column;
}

.logo-text span {
    color: var(--accent-yellow);
    font-size: 18px;
    margin-top: 2px;
}

.nav-menu > ul {
    display: flex;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.nav-menu > ul > li {
    margin: 0 15px;
    position: relative;
}

.nav-menu > ul > li > a {
    font-weight: 700;
    font-size: 13px;
    color: var(--primary-blue);
    text-transform: uppercase;
    position: relative;
    padding: 10px 0;
}

.nav-menu > ul > li > a:hover,
.nav-menu > ul > li > a.active {
    color: var(--accent-yellow);
}

.nav-menu > ul > li > a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--accent-yellow);
    transition: var(--transition);
}

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

/* Mobile Sidebar Styling */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background-color: var(--white);
    z-index: 2000;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    transition: 0.4s ease;
    display: flex;
    flex-direction: column;
}

.mobile-sidebar.active {
    right: 0;
}

.sidebar-menu ul li {
    border-bottom: 1px solid var(--light-grey);
}

.sidebar-menu ul li a {
    display: block;
    padding: 15px;
    font-weight: 700;
    color: var(--primary-blue);
    text-transform: uppercase;
}

.sidebar-menu ul li a.active {
    color: var(--accent-yellow);
}

.bg-navy { background-color: var(--primary-blue); }
.p-20 { padding: 20px; }
.text-white { color: var(--white); }
.mb-20 { margin-bottom: 20px; }

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--light-grey);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-yellow);
}

.any-questions {
    display: flex;
    align-items: center;
}

.any-questions .icon-box {
    background-color: var(--accent-yellow);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 12px;
    font-size: 20px;
}

.any-questions .text-box p {
    font-size: 12px;
    margin-bottom: 0;
    color: #777;
}

.any-questions .text-box a {
    font-weight: 700;
    font-size: 15px;
    color: var(--primary-blue);
}

.mobile-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Angled Hero Section */
.hero-section {
    position: relative;
    height: 85vh;
    overflow: hidden;
    background-color: #f0f7ff; /* Fallback light blue */
}

.hero-slider {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 5;
}

.slide img {
    position: absolute;
    top: 0;
    right: 0;
    width: 65%; /* Guard image takes right 65% */
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%; /* Overlay covers more than half */
    height: 100%;
    background-color: #f1f8ff; /* Light bluish/white background */
    clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
    z-index: 2;
    display: flex;
    align-items: center;
    padding-left: 20px;
}

/* Background pattern for the left section */
.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(135deg, rgba(0,33,71,0.03) 25%, transparent 25%), 
                      linear-gradient(225deg, rgba(0,33,71,0.03) 25%, transparent 25%);
    background-size: 100px 100px;
    z-index: -1;
}

.slide-content {
    position: relative;
    z-index: 10;
    color: var(--primary-blue);
    max-width: 650px;
}

.slide-content h6 {
    color: var(--primary-blue);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 0;
}

.slide-content h1 {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
    color: var(--primary-blue);
}

.slide-content h1 span {
    color: var(--accent-yellow); /* Security Professionals text */
    display: block;
}

.slide-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.hero-btns .btn {
    margin-right: 15px;
}

/* About Section */
.about-list li {
    margin-bottom: 12px;
    font-weight: 600;
}

.about-list i {
    color: var(--accent-yellow);
    margin-right: 10px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-card {
    background-color: var(--primary-blue);
    padding: 40px 20px;
    border-radius: 10px;
    text-align: center;
    color: var(--white);
}

.stat-card.yellow {
    background-color: var(--accent-yellow);
    color: var(--primary-blue);
}

.stat-card h3 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 5px solid var(--primary-blue);
    text-align: center;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--light-grey);
    border-radius: 50%;
    padding: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--accent-yellow);
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
}

.read-more {
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 14px;
    text-transform: uppercase;
}

.read-more i {
    font-size: 12px;
    margin-left: 5px;
}

.read-more:hover {
    color: var(--accent-yellow);
}

/* Destinations */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.destination-card {
    position: relative;
    height: 350px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.dest-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
}

.destination-card:hover .dest-img {
    transform: scale(1.1);
}

.destination-card:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0,33,71,0.9) 0%, transparent 60%);
}

.dest-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    z-index: 10;
    color: var(--white);
    transform: translateY(20px);
    transition: var(--transition);
}

.destination-card:hover .dest-content {
    transform: translateY(0);
}

.dest-content h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

.dest-content p {
    font-size: 14px;
    opacity: 0.8;
}

/* FAQ Accordion */
.accordion {
    max-width: 100%;
}

.accordion-item {
    margin-bottom: 15px;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.accordion-header {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: var(--white);
    transition: var(--transition);
}

.accordion-item.active .accordion-header {
    background: var(--primary-blue);
    color: var(--white);
}

.accordion-header h4 {
    font-size: 16px;
    font-weight: 600;
}

.accordion-header i {
    transition: var(--transition);
}

.accordion-item.active .accordion-header i {
    transform: rotate(45deg);
}

.accordion-body {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out;
}

.accordion-item.active .accordion-body {
    padding: 15px 25px 25px;
    max-height: 200px;
}

.faq-img img {
    width: 100%;
}

.partners-carousel {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    opacity: 0.6;
}

.partner-logo {
    margin: 20px;
    font-weight: 700;
    color: var(--primary-blue);
    transition: var(--transition);
}

.partner-logo:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Subpage Styles */
/* Modern Subpage Banner */
.page-banner {
    background-color: var(--primary-blue);
    position: relative;
    padding: 60px 0;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: url('assets/images/training-indian.png');
    background-size: cover;
    background-position: center;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 1;
    opacity: 0.6;
}

.guarding-banner::before {
    background: url('assets/images/banner_guarding.png') !important;
    background-size: cover !important;
    background-position: center !important;
}

.fire-safety-banner::before {
    background: url('assets/images/banner_fire_safety.png') !important;
    background-size: cover !important;
    background-position: center !important;
}

.page-banner .container {
    position: relative;
    z-index: 10;
}

.page-banner h1 {
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.page-banner h1::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent-yellow);
    margin-top: 10px;
}

.breadcrumb-list {
    display: flex;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 15px;
    font-weight: 500;
}

.breadcrumb-list a {
    color: var(--accent-yellow);
}

.breadcrumb-list span {
    color: var(--white);
}

.breadcrumbs {
    background: var(--light-grey);
    padding: 15px 0;
    font-size: 14px;
    font-weight: 600;
}

.breadcrumbs a {
    color: var(--primary-blue);
}

.breadcrumbs span {
    color: var(--accent-yellow);
    margin-left: 5px;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

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

.team-img {
    height: 250px;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info {
    padding: 20px;
}

.team-info h4 {
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.team-info p {
    color: var(--accent-yellow);
    font-size: 14px;
    font-weight: 600;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info-list p {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.contact-info-list i {
    width: 40px;
    height: 40px;
    background: var(--accent-yellow);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 15px;
}

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

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.map-container {
    height: 400px;
    width: 100%;
    margin-top: 50px;
}

/* Our Edge / Why Choose Us */
.our-edge-section {
    position: relative;
    z-index: 1;
}

.edge-card {
    background: rgba(255,255,255,0.05);
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
    text-align: center;
}

.edge-card:hover {
    background: var(--white);
    transform: translateY(-10px);
}

.edge-card:hover h4, .edge-card:hover p {
    color: var(--primary-blue);
}

.edge-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-yellow);
    color: var(--primary-blue);
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    transition: var(--transition);
}

.edge-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
}

.edge-card p {
    font-size: 15px;
    opacity: 0.8;
    line-height: 1.5;
}

/* Tech Advantage */
.tech-features-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.tech-feat {
    display: flex;
    gap: 20px;
    align-items: center;
}

.tech-feat i {
    width: 60px;
    height: 60px;
    background: var(--light-grey);
    color: var(--primary-blue);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    flex-shrink: 0;
    transition: var(--transition);
}

.tech-feat:hover i {
    background: var(--accent-yellow);
    transform: rotateY(180deg);
}

.tech-feat h5 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--primary-blue);
}

.tech-feat p {
    font-size: 14px;
    margin-bottom: 0;
    color: #666;
}

/* Process Section */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 100px;
    right: 100px;
    height: 2px;
    background: dashed var(--primary-blue);
    opacity: 0.1;
    z-index: 0;
}

.process-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-num {
    position: absolute;
    top: -20px;
    right: 10%;
    font-size: 40px;
    font-weight: 800;
    color: var(--primary-blue);
    opacity: 0.05;
}

.process-icon {
    width: 100px;
    height: 100px;
    background: var(--white);
    color: var(--primary-blue);
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 2px solid transparent;
    transition: var(--transition);
}

.process-item:hover .process-icon {
    border-color: var(--accent-yellow);
    background: var(--primary-blue);
    color: var(--white);
    transform: scale(1.1);
}

.process-item h5 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

/* Testimonials */
.testimonials-slider {
    position: relative;
}

.testimonial-card {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 50px;
    color: var(--accent-yellow);
    opacity: 0.1;
}

.testimonial-card p {
    font-size: 18px;
    font-style: italic;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.client-info h5 {
    font-size: 18px;
    margin-bottom: 2px;
    color: var(--primary-blue);
}

.client-info span {
    font-size: 14px;
    color: var(--accent-yellow);
    font-weight: 600;
}

.testimonial-nav {
    display: flex;
    gap: 15px;
}

.testimonial-nav button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary-blue);
    background: transparent;
    color: var(--primary-blue);
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-nav button:hover, .testimonial-nav button.active {
    background: var(--primary-blue);
    color: var(--white);
}

@media (max-width: 992px) {
    .nav-menu, .any-questions {
        display: none;
    }
    .mobile-toggle {
        display: block;
        color: var(--primary-blue);
    }
    .team-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: var(--white);
}

.footer-logo {
    height: 80px;
    margin-bottom: 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col h4 {
    margin-bottom: 25px;
    font-size: 20px;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-yellow);
}

.footer-col p {
    margin-bottom: 15px;
    opacity: 0.8;
}

.footer-col p i {
    margin-right: 10px;
    color: var(--accent-yellow);
}

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

.footer-col ul li a:hover {
    color: var(--accent-yellow);
    padding-left: 5px;
}

.footer-col ul li i {
    font-size: 12px;
    margin-right: 8px;
    color: var(--accent-yellow);
}

.social-links a {
    display: inline-flex;
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
}

.social-links a:hover {
    background: var(--accent-yellow);
    color: var(--primary-blue);
}

.footer-bottom {
    padding: 25px 0;
    font-size: 14px;
    opacity: 0.7;
}

/* Floating Elements */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    z-index: 999;
}

.contact-tab {
    position: fixed;
    right: -45px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    background: var(--primary-blue);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 5px 5px 0 0;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.2);
    z-index: 998;
}

/* Responsive */
@media (max-width: 1200px) {
    .nav-menu ul li {
        margin: 0 10px;
    }
}

@media (max-width: 1024px) {
    .nav-menu, .any-questions {
        display: none;
    }
    .mobile-toggle {
        display: block;
    }
    .hero-section {
        height: 70vh;
    }
    .slide-content h1 {
        font-size: 42px;
    }
    .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    .slide-content h1 {
        font-size: 32px;
    }
    .hero-section {
        height: 60vh;
    }
}

/* Mobile Sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100%;
    background: var(--white);
    z-index: 2000;
    transition: 0.5s;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
}

.mobile-sidebar.active {
    right: 0;
}

.sidebar-header {
    padding: 20px;
    border-bottom: 1px solid var(--light-grey);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-sidebar {
    font-size: 24px;
    cursor: pointer;
}

.sidebar-menu {
    padding: 20px;
}

.sidebar-menu ul li {
    margin-bottom: 15px;
}

.sidebar-menu ul li a {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-blue);
    display: block;
}
/* CTA Section */
.cta-section {
    background-color: #ffffff;
    color: var(--primary-blue);
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid #eee;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #555;
}

/* CTA Section Styles */
.cta-section .btn-yellow {
    background-color: var(--accent-yellow);
    color: var(--primary-blue);
}

.cta-section .btn-outline {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.cta-section .btn-outline:hover {
    background-color: var(--primary-blue);
    color: #fff;
}

/* Footer Section */
.footer {
    background-color: #f8f9fa;
    color: var(--primary-blue);
    padding: 70px 0 0;
    font-family: 'Outfit', sans-serif;
    border-top: 1px solid #eee;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 30px;
    padding-bottom: 50px;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 15px;
}

.footer-col h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-yellow);
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
}

.footer-col i {
    color: var(--accent-yellow);
    width: 25px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #333;
    font-size: 14px;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-blue);
    transform: translateX(5px);
    display: inline-block;
}

.social-links a {
    width: 35px;
    height: 35px;
    background-color: var(--primary-blue);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    margin-right: 8px;
    color: #ffffff;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--accent-yellow);
    color: var(--primary-blue);
    transform: translateY(-3px);
}

.footer-bottom {
    background-color: #f1f1f1;
    padding: 20px 0;
    font-size: 13px;
    color: #777;
    border-top: 1px solid #ddd;
}

/* Page Banner */
.page-banner {
    position: relative;
    padding: 120px 0;
    background-color: var(--primary-blue);
    color: var(--white);
    text-align: center;
    background-image: linear-gradient(rgba(0,33,71,0.8), rgba(0,33,71,0.8)), url('assets/images/hero.png');
    background-size: cover;
    background-position: center;
}

.page-banner h1 {
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
}

/* Animations */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

/* Grid helper */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Stats Bar */
.stats-bar {
    border-bottom: 4px solid var(--accent-yellow);
}

.stat-item h3 {
    font-size: 32px;
    margin-bottom: 0;
}

.stat-item p {
    font-size: 14px;
    margin-bottom: 0;
    color: #ffd700;
}

/* Industry Grid */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.industry-card {
    background: #fff;
    padding: 30px 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.industry-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-yellow);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.ind-icon {
    font-size: 40px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.industry-card h4 {
    font-size: 18px;
    margin-bottom: 0;
}

/* Gallery Styles */
.gallery-grid {
    gap: 30px;
}

.gallery-item {
    position: relative;
    cursor: pointer;
    background: #ccc;
    height: 300px;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
}

.gallery-item img {
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: #fff;
    font-size: 30px;
    z-index: 2;
    transition: all 0.3s ease;
    opacity: 0;
}

.gallery-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,33,71,0.5);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

/* Filter UI */
.filter-ui {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 25px;
    border: 1px solid #ddd;
    background: transparent;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    border-radius: 5px;
    text-transform: uppercase;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--primary-blue);
    color: #fff !important;
    border-color: var(--primary-blue);
}

/* Responsive */
@media (max-width: 991px) {
    .nav-menu { display: none; }
    .any-questions { display: none; }
    .mobile-toggle { display: block; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .grid-3 { grid-template-columns: 1fr 1fr; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .col-6 { flex: 0 0 100%; max-width: 100%; }
    .row { flex-direction: column; }
}

/* AOS Animations */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 575px) {
    .footer-grid { grid-template-columns: 1fr; }
    .grid-3 { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: 1fr; }
    .grid-2 { grid-template-columns: 1fr; }
    .top-bar { display: none; }
    .hero-section { height: 60vh; }
    .slide-content h1 { font-size: 32px; }
    .page-banner { padding: 80px 0; }
    .page-banner h1 { font-size: 32px; }
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
    color: #fff;
}

.overflow-hidden { overflow: hidden; }

/* Contact Page Refinements */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: var(--accent-yellow);
    font-size: 20px;
    flex-shrink: 0;
}

.contact-text h4 {
    color: var(--primary-blue);
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 700;
}

.contact-text p {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Dropdown & Mega Menu */
.nav-menu > ul > li {
    position: relative;
    padding: 15px 0; /* Stability for top-level hover */
}

.nav-menu ul li .dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #fff;
    width: 250px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 8px;
    padding: 15px 0;
    border-top: 3px solid var(--accent-yellow);
    z-index: 1001;
    display: flex; /* Changed to flex to control column better */
    flex-direction: column;
}

.nav-menu ul li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown li {
    display: block;
    width: 100%;
    margin: 0 !important;
}

.dropdown li a {
    display: flex;
    align-items: center;
    padding: 8px 25px !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-weight: 500 !important;
    transition: 0.3s;
}

.dropdown li a:after { display: none; } /* Remove bottom bar from dropdown links */

.dropdown li a:hover {
    background-color: #f8f9fa;
    color: var(--accent-yellow) !important;
    padding-left: 30px !important;
}

/* Mega Menu Version */
.nav-menu ul li .mega-menu {
    width: 600px;
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.mega-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    border-radius: 6px;
    transition: 0.3s;
    text-decoration: none;
}

.mega-item:hover {
    background-color: #f1f1f1;
}

.mega-icon {
    width: 45px;
    height: 52px;
    background-color: var(--accent-yellow);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-blue);
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.mega-text {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 0;
}

.mega-item:hover .mega-text {
    color: var(--accent-yellow);
}

/* Fix navbar arrow indicators */
.has-dropdown > a::after {
    content: '\f107';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: 5px;
    font-size: 12px;
}

/* Vertical Contact Bar */
.vertical-contact {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 15px 5px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    z-index: 1000;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 5px 0 0 5px;
    cursor: pointer;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.vertical-contact:hover {
    background-color: var(--accent-yellow);
    color: var(--primary-blue);
}

/* Perfecting Guardian Image Alignment */
.slide.active img {
    animation: zoomOut 8s ease-in-out forwards;
}

@keyframes zoomOut {
    from { transform: scale(1.15); }
    to { transform: scale(1); }
}

/* Branded Badge for Images/Hero */
.branded-badge {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    border-left: 4px solid var(--accent-yellow);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.branded-badge i {
    color: var(--accent-yellow);
    margin-right: 10px;
}

/* Industry Detail Image Wrapper with Branding */
.industry-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.industry-img-wrap .branded-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    margin: 0;
    z-index: 5;
    transform: translateY(0);
    opacity: 0.9;
}

/* Advanced Circular Service Layout */
.service-collage-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    aspect-ratio: 1/1;
}

.collage-circle {
    position: relative;
    width: 80%;
    height: 80%;
    border-radius: 50%;
    overflow: hidden;
    left: 10%;
    top: 10%;
    border: 5px solid var(--white);
    box-shadow: var(--shadow);
}

.collage-segment {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: var(--transition);
}

.collage-segment img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.segment-1 {
    clip-path: polygon(0 0, 100% 0, 50% 50%, 0 50%);
}
.segment-2 {
    clip-path: polygon(50% 50%, 100% 0, 100% 100%, 50% 100%);
}
.segment-3 {
    clip-path: polygon(0 50%, 50% 50%, 50% 100%, 0 100%);
}

.service-accent-header {
    border-left: 5px solid var(--accent-yellow);
    padding-left: 20px;
    margin-bottom: 30px;
}

.service-accent-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1.2;
}

.feature-grid-inline {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.feature-item-inline {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-item-inline i {
    font-size: 32px;
    color: var(--primary-blue);
}

.feature-item-inline h4 {
    margin-bottom: 5px;
    font-weight: 700;
}

.feature-item-inline p {
    font-size: 14px;
    color: #666;
}

/* Branded Contact Banner */
.branded-contact-banner {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 60px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    overflow: hidden;
    position: relative;
}

.branded-contact-banner::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.05);
    border-radius: 50px;
    top: -100px;
    left: -100px;
    transform: rotate(45deg);
}

.contact-banner-text {
    flex: 1;
    position: relative;
    z-index: 5;
}

.contact-banner-text h2 {
    font-size: 42px;
    font-weight: 800;
}

.contact-banner-text .highlight {
    color: var(--accent-yellow);
}

.contact-banner-form {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    width: 450px;
    position: relative;
    z-index: 10;
}

.contact-banner-form h3 {
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 25px;
    position: relative;
}

.contact-banner-form h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--primary-blue);
    margin: 10px auto 0;
}

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

.form-group-minimal input, 
.form-group-minimal textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
    font-family: inherit;
    transition: 0.3s;
}

.form-group-minimal input:focus, 
.form-group-minimal textarea:focus {
    border-bottom: 1px solid var(--primary-blue);
    outline: none;
}

/* Contact Page Specific Redesign */
.contact-page-section {
    background: #fff;
    position: relative;
    padding-bottom: 80px;
}

.contact-details-wrap .section-subtitle {
    font-size: 14px;
}

.info-item-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #f8faff;
    padding: 25px;
    border-radius: 12px;
    transition: var(--transition);
    border: 1px solid #edf2f7;
    margin-bottom: 25px;
}

.info-item-box:hover {
    transform: translateX(10px);
    border-color: var(--accent-yellow);
    box-shadow: 0 10px 30px rgba(0,33,71,0.05);
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    color: var(--accent-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0,33,71,0.2);
}

.text-content h4 {
    margin-bottom: 8px;
    color: var(--primary-blue);
    font-size: 18px;
    font-weight: 700;
}

.text-content p {
    font-size: 15px;
    color: #555;
    margin: 0;
}

.text-content p a:hover {
    color: var(--accent-yellow);
}

.social-connect h4 {
    font-size: 18px;
    color: var(--primary-blue);
    font-weight: 700;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: #f0f4f8;
    color: var(--primary-blue);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 18px;
}

.social-links a:hover {
    background: var(--accent-yellow);
    color: var(--primary-blue);
    transform: translateY(-3px);
}

.contact-form-card {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    border: 1px solid #edf2f7;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

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

.form-header h3 {
    font-size: 28px;
    color: var(--primary-blue);
    font-weight: 800;
    margin-bottom: 10px;
}

.form-header p {
    color: #777;
    font-size: 14px;
}

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

.modern-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: var(--primary-blue);
}

.modern-form input, 
.modern-form textarea, 
.modern-form .form-select {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e1e7ec;
    background: #fbfcfe;
    border-radius: 10px;
    font-family: inherit;
    font-size: 15px;
    transition: 0.3s;
}

.modern-form input:focus, 
.modern-form textarea:focus, 
.modern-form .form-select:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0,33,71,0.05);
}

.modern-form .form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23002147' d='M6 8.825L1.175 4 2.59 2.585 6 6l3.415-3.415L10.825 4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
}

.map-section-full {
    line-height: 0;
}

/* Process Steps Section */
.process-steps {
    position: relative;
    padding-left: 20px;
}

.process-steps::before {
    content: '';
    position: absolute;
    left: 45px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-yellow) 0%, rgba(255, 180, 0, 0.1) 100%);
    z-index: 1;
}

.step {
    position: relative;
    z-index: 2;
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
    margin-bottom: 25px !important;
    display: flex;
    align-items: center;
}

.step:last-child {
    margin-bottom: 0 !important;
}

.step:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 35px rgba(0,33,71,0.08);
    border-color: var(--accent-yellow);
}

.step-num {
    min-width: 50px;
    height: 50px;
    background: var(--primary-blue);
    color: var(--accent-yellow);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    font-size: 18px;
    margin-right: 25px;
    box-shadow: 0 5px 15px rgba(0,33,71,0.2);
    transition: var(--transition);
}

.step:hover .step-num {
    background: var(--accent-yellow);
    color: var(--primary-blue);
    transform: scale(1.1);
}

.step-text h4 {
    color: var(--primary-blue);
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 700;
}

.step-text p {
    color: #666;
    font-size: 15px;
    margin-bottom: 0;
}

/* Event Type Cards & Process */
.event-type-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

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

.event-type-card .img-box {
    height: 200px;
    overflow: hidden;
}

.event-type-card .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.event-type-card:hover .img-box img {
    transform: scale(1.1);
}

.event-type-card h3 {
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.event-type-card p {
    color: #666;
    font-size: 14px;
}

/* Spacing Utilities Correction */
.pt-100 { padding-top: 60px; }
.pb-100 { padding-bottom: 60px; }
.pt-80 { padding-top: 50px; }
.pb-80 { padding-bottom: 50px; }
.p-60 { padding: 40px; }
.mt-50 { margin-top: 30px; }
.mb-50 { margin-bottom: 30px; }

/* Tech Utility Classes Fix */
.text-blue { color: #00d2ff; }
.op-8 { opacity: 0.8; }
.rounded-xl { border-radius: 30px; }
.rounded-lg { border-radius: 15px; }

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

/* Premium Tech Box Decoration - Optimized Spacing */
.bg-navy.rounded-xl {
    position: relative;
    overflow: hidden;
    padding: 45px !important;
    box-shadow: 0 25px 50px rgba(0,33,71,0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.bg-navy.rounded-xl::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.1) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.bg-navy.rounded-xl::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 180, 0, 0.05) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.bg-navy.rounded-xl > .row {
    position: relative;
    z-index: 2;
}

.tech-feature-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 20px;
    border-radius: 12px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
}

.tech-feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(8px);
    border-color: #00d2ff;
}

.tech-feature-item i {
    font-size: 20px;
}

.tech-feature-item span {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.3px;
}

/* Tech Cards Re-imagined - Compact & Professional */
.tech-card {
    background: var(--white);
    padding: 35px 30px !important;
    border-radius: 18px !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,33,71,0.06);
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--primary-blue);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.tech-card:hover::before {
    transform: scaleY(1);
}

.tech-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(0,33,71,0.08);
    border-color: transparent;
}

.tech-card .icon-m {
    width: 65px;
    height: 65px;
    background: rgba(0,33,71,0.04);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--primary-blue);
    transition: all 0.4s ease;
}

.tech-card:hover .icon-m {
    background: var(--primary-blue);
    color: var(--white);
    transform: rotateY(180deg);
}

.tech-card h3 {
    color: var(--primary-blue);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.tech-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0;
}

.tech-card .learn-more-btn {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    font-size: 13px;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.tech-card .learn-more-btn i {
    margin-left: 6px;
    font-size: 11px;
    transition: transform 0.3s ease;
}

.tech-card:hover .learn-more-btn i {
    transform: translateX(4px);
}
