/* Base styles */
:root {
    --container-width: 1440px;
    --nav-height: 85px;
}

html, body {
    width: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Container styles */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}

/* Hero section */
.hero {
    width: 100%;
    min-height: calc(100vh - var(--nav-height));
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    margin-top: var(--nav-height);
}

.hero-content {
    max-width: 600px;
    padding: 0 15px;
}

/* Desktop-first approach */
@media screen and (min-width: 1024px) {
    .hero-content {
        padding-left: calc((100vw - var(--container-width)) / 2 + 15px);
    }
    
    .hero-content h1 {
        font-size: 48px;
        line-height: 1.2;
    }
    
    .hero-content p {
        font-size: 18px;
    }
}

/* Tablet and mobile adjustments */
@media screen and (max-width: 1023px) {
    .hero-content {
        padding: 0 20px;
        text-align: center;
        margin: 0 auto;
    }
}

/* Reset and Modern CSS Variables */
:root {
    --primary-color: #0d377f;
    --secondary-color: #706e6f;
    --white: #ffffff;
    --transition: 0.3s ease;
    --nav-height: 85px;
    --shadow: 0 4px 15px rgba(13, 55, 127, 0.1);
}

/* Reset for full viewport coverage */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Ensure body and html take full viewport */
html, body {
    width: 100%;
    min-height: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* Container reset for mobile-first */
.container {
    width: 100%;
    margin: 0;
    padding: 0;
    max-width: none;
}

@media (min-width: 768px) {
    .container {
        width: 90%;
        margin: 0 auto;
        max-width: 1140px;
        padding: 0 15px;
    }
}

/* Row modifications for full width */
.row {
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

/* Column adjustments */
[class*="col-"] {
    width: 100%;
    padding: 0;
    margin: 0;
}

/* Grid system reset */
.contact-container {
    width: 100%;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

@media (min-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr 1.5fr;
        gap: 40px;
        padding: 0 20px;
    }
}

/* Contact section adjustments */
.contact-section {
    width: 100%;
    padding: 40px 0;
    margin: 0;
}

.contact-form,
.contact-info {
    width: 100%;
    margin: 0;
    padding: 20px;
    border-radius: 0;
}

@media (min-width: 768px) {
    .contact-form,
    .contact-info {
        padding: 40px;
        border-radius: 10px;
        margin: 10px;
    }
}

/* Form elements full width */
.form-group {
    width: 100%;
    margin-bottom: 15px;
}

.form-row {
    width: 100%;
    margin: 0;
    gap: 15px;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

/* Input elements full width */
.contact-form input,
.contact-form textarea {
    width: 100%;
    margin: 0;
    border-radius: 0;
}

@media (min-width: 768px) {
    .contact-form input,
    .contact-form textarea {
        border-radius: 5px;
    }
}

/* Button full width on mobile */
.send-message-btn {
    width: 100%;
    margin: 0;
    border-radius: 0;
}

@media (min-width: 768px) {
    .send-message-btn {
        width: auto;
        border-radius: 5px;
    }
}

/* Section title adjustments */
.section-title {
    width: 100%;
    padding: 0 15px;
    margin-bottom: 30px;
}

/* Info items full width */
.info-item {
    width: 100%;
    margin-bottom: 20px;
    padding: 0;
}

/* Media queries for responsive design */
@media (max-width: 576px) {
    /* Remove any default padding/margins */
    .container,
    .row,
    [class*="col-"],
    .contact-section,
    .contact-form,
    .contact-info,
    .form-group,
    .form-row,
    .info-item {
        padding-left: 15px;
        padding-right: 15px;
        margin-left: 0;
        margin-right: 0;
    }

    /* Ensure no horizontal scroll */
    .container {
        overflow-x: hidden;
    }

    /* Remove border radius on mobile */
    .contact-form,
    .contact-info,
    .send-message-btn,
    input,
    textarea {
        border-radius: 0;
    }

    /* Stack elements vertically */
    .form-row {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    /* Full bleed backgrounds */
    .contact-section {
        margin: 0 -15px;
        padding: 40px 15px;
        width: calc(100% + 30px);
    }
}

/* Fix for iOS Safari 100vh issue */
@supports (-webkit-touch-callout: none) {
    .contact-section {
        padding-bottom: env(safe-area-inset-bottom);
    }
}

/* Remove any unwanted gaps */
.contact-form > *:first-child,
.contact-info > *:first-child {
    margin-top: 0;
}

.contact-form > *:last-child,
.contact-info > *:last-child {
    margin-bottom: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background: #ffffff;
    min-height: 100vh;
}

/* Enhanced Navigation Bar */
nav {
    background: var(--white);
    height: var(--nav-height);
    display: flex;
    justify-content: space-between; /* Changed to space-between for better distribution */
    align-items: center;
    padding: 0 2%; /* Reduced padding to allow more space */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem; /* Adjusted gap between items */
    list-style: none;
    margin: 0;
    padding: 0;
    margin-left: auto; /* Push to the right */
    margin-right: 30px; /* Space from right edge */
}

.nav-links li {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.logo {
    height: calc(var(--nav-height) - 25px);
    margin-left: 20px; /* Add some space from the left edge */
}

/* Modern Logo Styles */
.logo img {
    height: 100%;
    object-fit: contain;
}

/* Enhanced Navigation Links */
.nav-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.0rem;
    font-weight: 500;
    padding: 0.8rem -.2rem;
    border-radius: 8px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Arrow icon styling */
.arrow-icon {
    font-size: 0.8em;
    margin-left: 4px;
    transition: var(--transition);
}

.has-dropdown:hover .arrow-icon {
    transform: rotate(-180deg);
}

/* Hover effect for links */
.nav-links a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Underline animation */
.nav-links > li > a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-links > li > a:hover::after {
    width: 100%;
}

/* Position relative for dropdown parent */
.has-dropdown {
    position: relative;
}

/* Enhanced Dropdown Container */
.dropdown {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    min-width: 300px; /* Adjust width as needed */
    background: var(--white);
    border-radius: 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06),
        0 20px 25px -5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid rgba(13, 55, 127, 0.08);
}

/* Dropdown Show Animation */
.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Enhanced Dropdown Links */
.dropdown a {
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    background: transparent;
    border-left: 3px solid transparent;
}

/* Icon Container */
.dropdown a i {
    min-width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    opacity: 0.8;
}

/* Hover Effects */
.dropdown a:hover {
    background: rgba(13, 55, 127, 0.04);
    border-left: 3px solid var(--primary-color);
    padding-left: 2rem;
}

.dropdown a:hover i {
    transform: scale(1.1);
    opacity: 1;
}

/* Arrow Indicator */
.dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 380px;
    width: 12px;
    height: 12px;
    background: var(--white);
    transform: rotate(45deg);
    border-left: 1px solid rgba(13, 55, 127, 0.08);
    border-top: 1px solid rgba(13, 55, 127, 0.08);
    z-index: 1;
}

/* Divider between items */
.dropdown a:not(:last-child) {
    border-bottom: 1px solid rgba(13, 55, 127, 0.04);
}

/* Responsive Design */
@media (max-width: 1199px) {
    .dropdown {
        right: 40px;
        min-width: 360px;
    }
    .dropdown::before {
        right: 340px;
    }
}

@media (max-width: 991px) {
    .dropdown {
        right: 30px;
        min-width: 320px;
    }
    .dropdown::before {
        right: 300px;
    }
}

@media (max-width: 767px) {
    .dropdown {
        right: 20px;
        min-width: 280px;
    }
    .dropdown::before {
        right: 260px;
    }
}

@media (max-width: 575px) {
    .dropdown {
        position: static;
        min-width: 100%;
        max-width: 100%;
        border-radius: 8px;
        box-shadow: none;
        border: 1px solid rgba(13, 55, 127, 0.08);
        margin: 0.5rem 0;
    }
    
    .dropdown::before {
        display: none;
    }
    
    .dropdown a {
        padding: 0.8rem 1rem;
    }
}

/* Add subtle hover animation for items */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.dropdown a {
    animation: slideIn 0.3s ease forwards;
    animation-delay: calc(var(--item-index) * 0.05s);
}

/* Active state */
.nav-links a.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Icons */
.nav-links i {
    font-size: 1.1em;
}

/* Responsive design */
@media (max-width: 768px) {
    .nav-links {
        gap: 1.5rem;
    }
    
    .nav-links a {
        font-size: 1rem;
        padding: 0.6rem 1rem;
    }
}

@media (max-width: 576px) {
    .nav-links {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: var(--white);
        padding: 2rem;
        flex-direction: column;
        gap: 1.5rem;
        transform: translateY(-100%);
        opacity: 0;
        transition: var(--transition);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }

    .dropdown {
        position: static;
        transform: none;
        box-shadow: none;
        padding-left: 2rem;
        margin-top: 1rem;
    }

    .has-dropdown:hover .dropdown {
        transform: none;
    }
}

/* Smooth animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

nav {
    animation: fadeIn 0.6s ease-out;
}

/* Icons */
.nav-links i {
    color: #0d377f;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .dropdown {
        min-width: 320px;
        right: 20px;
    }
    
    .dropdown::before {
        right: 320px; /* Adjusted for tablet view */
    }
}

@media (max-width: 576px) {
    .dropdown {
        position: static;
        min-width: 100%;
        max-width: 100%;
        box-shadow: none;
        margin: 0;
        right: 0;
    }
    
    .dropdown::before {
        display: none;
    }
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1000;
    padding: 10px;
    font-size: 24px;
    color: #003B71;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: var(--nav-height);
        right: -100%;
        left: auto;
        width: 300px;
        height: calc(100vh - var(--nav-height));
        background: #003B71;
        padding: 20px 30px;
        flex-direction: column;
        align-items: flex-start;
        transition: right 0.3s ease;
        overflow-y: auto;
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }
}

/* Hero Section Styles */
.hero {
    background-image: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('assets/img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--nav-height) + 2rem) 0 2rem;
    position: relative;
}

.hero-content {
    padding: 0 5%;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.hero-content .highlight {
    color: #007bff;
}

.hero-content p {
    font-size: 20px;
    color: #666;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn-get-started {
    background: #007bff;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.btn-get-started:hover {
    background: #0b3281;
}

.btn-watch-video {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.btn-watch-video i {
    font-size: 24px;
    color: #007bff;
}

.btn-watch-video:hover {
    color: #007bff;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Hero Section with Background Image */
.hero {
    background-image: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('assets/img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: calc(var(--nav-height) + 2rem) 0 2rem;
    position: relative;
}

.hero-content {
    text-align: left;
    max-width: 800px;
    margin-left: 5%;
    padding: 0;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 600;
    color: #333; /* Dark color for the text */
    margin-bottom: 1rem;
    white-space: nowrap;
}

.hero-content h1 .highlight {
    color: #0b3281; /* Bright blue color for Prowin-tech */
}

.hero-content p {
    font-size: 1.1rem;
    color: #666; /* Lighter gray for subtitle */
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.btn-primary {
    background-color: #007bff;
    color: var(--white);
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
}

.btn-primary:hover {
    background-color: transparent;
    border-color: var(--white);
    transform: translateY(-3px);
}

.btn-video {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-video i {
    color: #007bff;
    font-size: 1.2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero {
        padding-top: calc(var(--nav-height) + 1rem);
    }
}

/* Hero Section Responsive Adjustments */
@media (max-width: 768px) {
    .hero-content {
        text-align: center;
        padding: 0 20px;
        margin: 0 auto;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        white-space: normal;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    
    .hero-content h1 .highlight {
        display: block; /* Forces Prowin-tech to new line */
        color: #007bff;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content {
        padding: 0 15px;
    }
}

/* Contact Section */
.contact-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.contact-title {
    text-align: center;
    margin-bottom: 50px;
}

.contact-title h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-title p {
    color: #666;
    font-size: 16px;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.contact-info {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.info-item {
    margin-bottom: 25px; /* Reduced from 30px */
}

.info-item h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px; /* Reduced from 15px */
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-item h3 i {
    font-size: 24px;
    color: #0066ff;
}

.info-item p {
    color: #666;
    margin: 0; /* Removed top/bottom margin */
    padding-left: 34px;
    line-height: 1.5; /* Adjusted line height */
}

.info-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: #0066ff;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #0066ff;
    outline: none;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.send-message-btn {
    background: #0066ff;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.send-message-btn:hover {
    background: #0052cc;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form {
        order: 1;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-section {
        padding: 60px 15px;
    }
    
    .contact-title h2 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .contact-form,
    .contact-info {
        padding: 25px;
    }
}

/* Bootstrap Grid Classes */
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    max-width: 1140px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-lg-5, .col-lg-7 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

@media (min-width: 992px) {
    .col-lg-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }
    .col-lg-7 {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }
}

.col-md-6 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

@media (min-width: 768px) {
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

.mt-3 {
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .mt-md-0 {
        margin-top: 0 !important;
    }
}

.text-center {
    text-align: center;
}

/* About Section Styles */
.about {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 20px;
    /* color: #333; */
}

.section-title h2::after {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #00a6ff;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.section-title p {
    font-size: 16px;
    /* color: #666; */
}

.about-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.about-img img {
    width: 100%;
    transition: transform 0.5s ease;
}

.about-img:hover img {
    transform: scale(1.05);
}

.about-content {
    padding: 0 20px;
}

.about-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.about-content p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.about-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.about-features i {
    font-size: 24px;
    color: #00a6ff;
    margin-right: 15px;
    margin-top: 5px;
}

.about-features h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.about-features p {
    font-size: 15px;
    margin-bottom: 0;
}

/* Container for responsive layout */
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    max-width: 1140px;
}

/* Row and Column Layout */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-lg-6 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

/* Responsive Design */
@media (min-width: 992px) {
    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 991px) {
    .about-content {
        margin-top: 30px;
        padding: 0;
    }
    
    .about-img {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 28px;
    }
    
    .about-content h3 {
        font-size: 24px;
    }
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding: 0;  /* Removed top padding */
    margin-top: -0.5rem;  /* Added negative margin to pull content up */
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.tick-mark {
    background-color: #000;
    color: #fff;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 3px;
}

.feature-content h3 {
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.feature-content p {
    color: #666;
    line-height: 1.3;
    font-size: 0.95rem;
    margin: 0;
}

@media (max-width: 768px) {
    .features-list {
        gap: 0.6rem;
    }
    
    .feature-content h3 {
        font-size: 1rem;
    }
    
    .feature-content p {
        font-size: 0.9rem;
    }
}

/* Team Section Styling */
.team {
    padding: 40px 0;
}

.team .row {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 0;
    padding: 0 15px;
}

.team-member {
    flex: 0 0 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    text-align: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
	 border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05); 

}

.team-member:hover {
    transform: translateY(-3px);
}

.member-img {
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
}

.member-img img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 4px;
}

.member-info h4 {
    font-size: 1.2rem;
    margin: 10px 0 5px;
    color: #333;
}

.member-info span {
    display: block;
    font-size: 0.9rem;
    color: #777;
	margin-bottom: 20px;
}

.social-links {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.social-links a {
    color: #555;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #0d6efd;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .team .row {
        flex-wrap: wrap;
    }
    
    .team-member {
        flex: 0 0 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
    
    .member-img {
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .team-member {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Group of Companies Section */
.group-companies {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.group-companies .text-muted {
    text-align: center;
    margin-bottom: 30px;
    color: #6c757d;
}

.company-list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 0 auto;
}

.company-list li {
    background: #fff;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.company-list li:hover {
    transform: translateY(-3px);
}

.company-list strong {
    color: #333;
    font-weight: 600;
}

.company-list a {
    color: #0d6efd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.company-list a:hover {
    color: #0a58ca;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .company-list li {
        padding: 15px;
        font-size: 0.9rem;
    }
}

/* Specific adjustment for address lines */
.info-item.address p {
    margin-top: -2px; /* Negative margin to pull text up slightly */
}

/* If you need even more specific control */
.address-line {
    margin-bottom: 3px !important; /* Tighter spacing between address lines */
}

/* Testimonials Section Styles */
.testimonials {
    padding: clamp(40px, 5vw, 80px) 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('assets/img/testimonials-bg.jpg') center/cover no-repeat fixed;
    color: #fff;
}

.testimonial-slider {
    max-width: min(800px, 90%);
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.testimonial-item {
    padding: clamp(15px, 3vw, 30px);
    display: none;
}

.testimonial-item.active {
    display: block;
    animation: fadeIn 0.5s ease-in;
}

.profile-img {
    width: clamp(80px, 15vw, 120px);
    height: clamp(80px, 15vw, 120px);
    margin: 0 auto clamp(10px, 2vw, 20px);
    border: clamp(2px, 0.5vw, 4px) solid #fff;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    max-width: min(600px, 95%);
    margin: 0 auto;
}

.testimonial-content h3 {
    font-size: clamp(18px, 3vw, 24px);
    margin-bottom: clamp(3px, 1vw, 8px);
    color: #fff;
    font-weight: 600;
}

.testimonial-content h4 {
    font-size: clamp(14px, 2vw, 16px);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: clamp(10px, 2vw, 15px);
    font-weight: 500;
}

.stars {
    color: #ffc107;
    margin-bottom: clamp(10px, 2vw, 20px);
    font-size: clamp(14px, 2vw, 16px);
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(14px, 2vw, 16px);
    padding: 0 clamp(10px, 3vw, 30px);
}

.quote-icon-left,
.quote-icon-right {
    color: rgba(255, 255, 255, 0.2);
    font-size: clamp(18px, 3vw, 26px);
    padding: 0 clamp(5px, 1vw, 10px);
}

.slider-dots {
    text-align: center;
    margin-top: clamp(20px, 4vw, 30px);
}

.dot {
    display: inline-block;
    width: clamp(8px, 1.5vw, 12px);
    height: clamp(8px, 1.5vw, 12px);
    margin: 0 clamp(3px, 1vw, 5px);
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.dot.active {
    background: #fff;
    transform: scale(1.2);
}

/* Container adjustments for better responsiveness */
.container {
    width: min(1140px, 95%);
    margin: 0 auto;
    padding: 0 15px;
}

/* Section title responsive adjustments */
.section-title {
    margin-bottom: clamp(30px, 5vw, 50px);
}

.section-title h2 {
    font-size: clamp(24px, 4vw, 32px);
    margin-bottom: clamp(10px, 2vw, 15px);
}

.section-title p {
    font-size: clamp(14px, 2vw, 16px);
    color: rgba(255, 255, 255, 0.9);
}

/* Testimonials Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(clamp(10px, 2vw, 20px));
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Touch device optimizations */
@media (hover: none) {
    .dot {
        padding: clamp(8px, 2vw, 12px);
    }
}

/* Specific device breakpoints */
@media (max-width: 1200px) {
    .testimonial-slider {
        max-width: 85%;
    }
}

@media (max-width: 992px) {
    .testimonial-content p {
        line-height: 1.6;
    }
}

@media (max-width: 768px) {
    .testimonials {
        background-attachment: scroll; /* Better mobile performance */
    }
    
    .testimonial-item {
        padding: 15px 10px;
    }
}

/* Small screen optimizations */
@media (max-width: 480px) {
    .testimonial-content {
        padding: 0 5px;
    }
    
    .stars {
        margin: 8px 0;
    }
    
    .quote-icon-left,
    .quote-icon-right {
        display: none; /* Hide quotes on very small screens */
    }
}

/* Print styles */
@media print {
    .testimonials {
        background: none;
        color: #000;
    }
    
    .testimonial-content h3,
    .testimonial-content h4,
    .testimonial-content p {
        color: #000;
    }
    
    .slider-dots {
        display: none;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .testimonials {
        background: #000;
    }
    
    .testimonial-content h3,
    .testimonial-content h4,
    .testimonial-content p {
        color: #fff;
    }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .testimonial-item.active {
        animation: none;
    }
    
    .dot.active {
        transform: none;
    }
}

/* Testimonials Responsive Styles */
@media (max-width: 768px) {
    .testimonials {
        padding: 60px 0;
    }

    .testimonial-content h3 {
        font-size: 20px;
    }

    .testimonial-content h4 {
        font-size: 14px;
    }

    .testimonial-content p {
        font-size: 14px;
        padding: 0 15px;
    }

    .profile-img {
        width: 100px;
        height: 100px;
    }

    .quote-icon-left,
    .quote-icon-right {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .testimonials {
        padding: 40px 0;
    }

    .testimonial-content h3 {
        font-size: 18px;
    }

    .testimonial-content p {
        font-size: 13px;
        line-height: 1.6;
    }

    .profile-img {
        width: 80px;
        height: 80px;
        border-width: 3px;
    }
}

/* Responsive adjustments for dropdown */
@media (max-width: 768px) {
    .dropdown {
        display: none; /* Hide by default on mobile */
        position: static;
        width: 100%;
        min-width: unset;
        box-shadow: none;
        margin-top: 0.5rem;
        border: 1px solid rgba(13, 55, 127, 0.08);
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .has-dropdown.active .dropdown {
        display: block;
    }
}

/* Desktop dropdown styles */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 300px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    max-height: 80vh; /* Limit height on desktop */
    overflow-y: auto; /* Enable scrolling if needed */
}

/* Mobile dropdown styles */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: var(--nav-height);
        right: -100%; /* Changed from left to right */
        left: auto; /* Reset left position */
        width: 300px; /* Set specific width */
        height: calc(100vh - var(--nav-height));
        background: #003B71;
        padding: 20px 30px;
        flex-direction: column;
        align-items: flex-start;
        transition: right 0.3s ease; /* Changed transition property */
        overflow-y: auto;
        z-index: 999;
    }

    .nav-links.active {
        right: 0; /* Changed from left to right */
    }

    .dropdown {
        position: static;
        width: 100%;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0;
        margin-top: 0.5rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 4px;
    }

    .dropdown.show {
        display: block;
    }

    .dropdown a {
        padding: 12px 20px;
        display: block;
        /* color: white; */
        border-left: 2px solid rgba(255, 255, 255, 0.3);
        margin: 5px 0;
    }

    .arrow-icon {
        transition: transform 0.3s ease;
        margin-left: auto;
    }

    .arrow-icon.rotate {
        transform: rotate(180deg);
    }

    .has-dropdown > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

.main-footer {
    background-color: #003B71;
    color: white;
    padding: 40px 20px;
    text-align: center;
    position: relative;
    margin-top: 50px;
}

.world-map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    overflow: hidden;
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.company-logo {
    position: relative;
    margin: 20px auto;
    max-width: 300px;
}

.footer-logo {
    width: 65%;
    height: auto;
}

.company-info {
    position: relative;
    margin-top: 20px;
}

.company-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}

.company-info p {
    margin: 5px 0;
    font-size: 16px;
    line-height: 1.5;
}

.company-info a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.company-info a:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .company-info h3 {
        font-size: 20px;
    }
    
    .company-info p {
        font-size: 14px;
    }
}

/* Ensure proper spacing for footer */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* Footer spacing fix for service pages */
.container {
    margin-bottom: 50px;
}

/* Responsive footer adjustments */
@media (max-width: 768px) {
    .main-footer {
        margin-top: 30px;
        padding: 30px 15px;
    }
    
    .company-logo {
        max-width: 250px;
    }
}

/* Add or update these styles in your style.css file */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: var(--nav-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--nav-height));
        background: #003B71;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 30px;
        transition: all 0.3s ease;
        overflow-y: auto;
        z-index: 999;
    }

    .nav-links li {
        width: 100%;
        margin: 10px 0;
    }

    .nav-links a {
        /* color: white; */
        font-size: 16px;
        padding: 10px 0;
        display: flex;
        align-items: center;
    }

    .nav-links a i {
        margin-right: 15px;
        width: 20px;
        text-align: center;
    }

    .nav-links.active {
        left: 0;
    }

    .hamburger {
        display: block;
        cursor: pointer;
    }
}

/* Consistent Hamburger Menu Styling for All Service Pages */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.logo {
    height: 50px;
}

.logo img {
    height: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: var(--primary-blue);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        padding: 20px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    /* This ensures content doesn't hide under the fixed navbar */
    .services-hero, .projects-section {
        padding-top: 100px;
    }
    
    /* Dropdown styling for mobile */
    .dropdown {
        position: static;
        width: 100%;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0;
        margin-top: 0.5rem;
        background: rgba(0, 0, 0, 0.05);
        border-radius: 4px;
    }
    
    .dropdown.show {
        display: block;
    }
    
    .dropdown a {
        padding: 12px 20px;
        display: block;
        border-left: 2px solid rgba(0, 59, 113, 0.3);
        margin: 5px 0;
        color: #003B71;
    }
    
    .arrow-icon {
        transition: transform 0.3s ease;
        margin-left: auto;
    }
    
    .arrow-icon.rotate {
        transform: rotate(180deg);
    }
    
    .has-dropdown > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

