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

:root {
    --primary-blue: #1a3b8b;
    --primary-orange: #e97d2e;
    --text-dark: #1a1a1a;
    --text-gray: #666666;
    --text-light: #999999;
    --bg-light: #f4f7fa;
    --bg-white: #ffffff;
    --border-color: #e1e4e8;
    --transition: all 0.3s ease;
    --max-width: 1600px;
    --container-padding: 0 40px;
    --shadow-sm: 0 0px 5px rgba(0,0,0,0.1);
    --shadow-md: 0 5px 15px rgba(0,0,0,0.15);
    --shadow-lg: 0 10px 20px rgba(0,0,0,0.2);
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
    user-select: none;
}

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

ul {
    list-style: none;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
    -webkit-user-drag: none;
    transition: var(--transition);
}
img:hover{
    transform: scale(1.05);
}
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--container-padding);
}

.section-padding {
    padding: 60px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

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

.section-title h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title p {
    color: var(--text-gray);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    width: fit-content;
    padding: 14px 35px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.btn-primary:hover {
    background-color: var(--primary-orange);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(233, 125, 46, 0.3);
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--bg-white);
    padding: 50px;
    border-radius: 12px;
    position: relative;
    width: 90%;
    max-height: 95vh;
    overflow-y: scroll;
    max-width: 550px;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-gray);
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--primary-orange);
    transform: rotate(90deg);
}

/* Modal Form Styling */
.modal-content form input,
.modal-content form textarea {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 20px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
}

.modal-content form input:focus,
.modal-content form textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(26, 59, 139, 0.1);
}

.modal-content form textarea {
    height: 120px;
    resize: vertical;
}

.modal-content form button {
    width: 100%;
    padding: 16px;
    font-size: 16px;
}

/* Carousel Generic Styles */
.carousel-wrapper {
    position: relative;
    /* padding: 0 60px; */
}

.carousel-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    cursor: grab;
}

.carousel-container:active {
    cursor: grabbing;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.carousel-item {
    flex-shrink: 0;
    padding: 0 15px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    opacity: 0.8;
    font-size: 18px;
}

.carousel-btn:hover:not(:disabled) {
    opacity: 1;
    background: var(--primary-orange);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: var(--primary-blue);
}

.carousel-prev { 
    left: 0; 
}

.carousel-next { 
    right: 0; 
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    :root {
        --container-padding: 0 30px;
    }
    .section-padding {
        padding: 80px 0;
    }
    .section-title h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 0 20px;
    }
    .section-title h2 {
        font-size: 30px;
    }
    .section-padding {
        padding: 60px 0;
    }
    .carousel-wrapper {
        padding: 0 50px;
    }
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .section-title h2 {
        font-size: 26px;
    }
    .carousel-wrapper {
        padding: 0;
    }
    .carousel-btn {
        width: 35px;
        height: 35px;
        opacity: 0.9;
    }
}
/* Play Button & Video Modal */
.about-image {
    position: relative;
    /* overflow: hidden; - Removed to prevent clipping of decorative box-shadows */
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--primary-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    box-shadow: 0 0 0 20px rgba(233, 125, 46, 0);
    animation: pulse 2s infinite;
}

.play-btn:hover {
    background: var(--primary-blue);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-btn i {
    margin-left: 5px;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(233, 125, 46, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(233, 125, 46, 0); }
    100% { box-shadow: 0 0 0 0 rgba(233, 125, 46, 0); }
}

.video-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.video-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.video-container {
    position: relative;
    width: 90%;
    max-width: 1000px;
    aspect-ratio: 16 / 9;
    background: #000;
}

.video-container iframe {
    width: 100%;
    height: 100%;
}

.close-video {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 30px;
    cursor: pointer;
    transition: var(--transition);
}

.close-video:hover {
    transform: rotate(90deg);
    color: var(--primary-orange);
}

@media (max-width: 768px) {
    .play-btn {
        width: 60px;
        height: 60px;
        font-size: 18px;
    }
}
