  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
        }

        :root {
            --primary-blue: #1a5f7a;
            --secondary-blue: #2980b9;
            --light-blue: #3498db;
            --dark-blue: #0c3d56;
            --accent-orange: #ff8c42;
        }

        /* Header */
        .top-header {
            background: var(--dark-blue);
            color: white;
            padding: 10px 0;
            font-size: 0.9rem;
        }

        .top-header a {
            color: white;
            text-decoration: none;
            margin-left: 15px;
        }

        .top-header a:hover {
            color: var(--accent-orange);
        }

        .navbar {
            background: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 10px 0;
            border-bottom: 4px solid var(--accent-orange);
        }

        .navbar-brand img {
            height: 80px;
        }

        .navbar-nav .nav-link {
            color: var(--dark-blue);
            font-weight: 500;
            margin: 0 15px;
            transition: color 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            color: var(--accent-orange);
        }

        /* Hero Section with U-Curve Carousel */
        .hero-section {
            position: relative;
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
            padding: 0;
            overflow: hidden;
        }

        .u-curve-container {
            position: relative;
            height: 500px;
            overflow: hidden;
        }

        .u-curve-overlay {
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 50px;
            background: white;
            border-radius: 50% 50% 0 0 / 100% 100% 0 0;
            z-index: 2;
        }

        .carousel-item {
            height: 500px;
        }

        .carousel-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.7);
        }

        .carousel-caption-custom {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 3;
            text-align: center;
            width: 90%;
            max-width: 900px;
        }

        .company-logo {

            backdrop-filter: blur(10px);
            padding: 30px 50px;
            border-radius: 20px;

        }

        .company-text {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--accent-orange);
            text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
            line-height: 1.2;
            margin: 0;
        }

        .company-subtitle {
            font-size: 1.8rem;
            font-weight: 600;
            color: white;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            margin-top: 10px;
        }

        .company-tagline {
            font-size: 1.2rem;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.95);
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
            margin-top: 15px;
            font-style: italic;
        }

        /* Video Introduction Section */
        .intro-section {
            padding: 80px 0;
            background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 15px;
        }

        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--accent-orange);
            border-radius: 2px;
        }

        .video-thumbnail {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            background: #000;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .video-thumbnail:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
        }

        .video-thumbnail img {
            width: 100%;
            height: 500px;
            display: block;
        }

        .play-button-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background: var(--accent-orange);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(255, 140, 66, 0.5);
        }

        .play-button-overlay:hover {
            transform: translate(-50%, -50%) scale(1.15);
            background: var(--light-blue);
        }

        .play-button-overlay i {
            color: white;
            font-size: 2rem;
            margin-left: 5px;
        }

        /* Video Modal */
        .video-modal .modal-dialog {
            max-width: 900px;
        }

        .video-modal .modal-content {
            background: transparent;
            border: none;
        }

        .video-modal .modal-body {
            padding: 0;
        }

        .video-modal .btn-close {
            position: absolute;
            top: -40px;
            right: 0;
            z-index: 1050;
            background: white;
            opacity: 1;
            border-radius: 50%;
            width: 35px;
            height: 35px;
        }

        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%;
            /* 16:9 aspect ratio */
            height: 0;
            overflow: hidden;
            border-radius: 10px;
        }

        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 10px;
        }

        .intro-text {
            padding: 40px;
            height: 100%;
        }

        .intro-text h3 {
            color: var(--primary-blue);
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .intro-text p {
            color: #555;
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 15px;
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--light-blue), var(--secondary-blue));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .feature-icon i {
            color: white;
            font-size: 1.5rem;
        }

        .feature-item {
            display: flex;
            align-items: start;
            margin-bottom: 20px;
        }

        .feature-item h5 {
            color: var(--dark-blue);
            font-weight: 600;
            margin-bottom: 5px;
        }

        .feature-item p {
            color: #666;
            font-size: 0.95rem;
            margin: 0;
        }

        .cta-button {
            background: linear-gradient(135deg, var(--accent-orange), #ff6b35);
            color: white;
            padding: 15px 40px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            margin-top: 20px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 140, 66, 0.4);
            color: white;
        }

        /* Services Section */
        /* New Services Section Styles */
        .services-section-new {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .section-title-services {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 10px;
        }

        .services-subtitle {
            color: #666;
            font-size: 1.1rem;
            margin-bottom: 50px;
        }

        /* Service Card with Background Image */
        .service-card-new {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            height: 450px;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            transition: all 0.4s ease;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
        }

        /* Background Images - Will change automatically */
        .service-card-new[data-bg-index="0"] {
            background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=600&h=800&fit=crop');
            animation: bgChange0 20s infinite;
        }

        .service-card-new[data-bg-index="1"] {
            background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1566576721346-d4a3b4eaeb55?w=600&h=800&fit=crop');
            animation: bgChange1 20s infinite;
        }

        .service-card-new[data-bg-index="2"] {
            background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?w=600&h=800&fit=crop');
            animation: bgChange2 20s infinite;
        }

        .service-card-new[data-bg-index="3"] {
            background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1553413077-190dd305871c?w=600&h=800&fit=crop');
            animation: bgChange3 20s infinite;
        }

        .service-card-new[data-bg-index="4"] {
            background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1494412574643-ff11b0a5c1c3?w=600&h=800&fit=crop');
            animation: bgChange4 20s infinite;
        }

        .service-card-new[data-bg-index="5"] {
            background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1580674285054-bed31e145f59?w=600&h=800&fit=crop');
            animation: bgChange5 20s infinite;
        }

        /* Background Change Animations */
        @keyframes bgChange0 {

            0%,
            100% {
                background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=600&h=800&fit=crop');
            }

            50% {
                background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1464037866556-6812c9d1c72e?w=600&h=800&fit=crop');
            }
        }

        @keyframes bgChange1 {

            0%,
            100% {
                background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1566576721346-d4a3b4eaeb55?w=600&h=800&fit=crop');
            }

            50% {
                background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?w=600&h=800&fit=crop');
            }
        }

        @keyframes bgChange2 {

            0%,
            100% {
                background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?w=600&h=800&fit=crop');
            }

            50% {
                background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1590859808308-3d2d9c515b1a?w=600&h=800&fit=crop');
            }
        }

        @keyframes bgChange3 {

            0%,
            100% {
                background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1553413077-190dd305871c?w=600&h=800&fit=crop');
            }

            50% {
                background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1587293852726-70cdb56c2866?w=600&h=800&fit=crop');
            }
        }

        @keyframes bgChange4 {

            0%,
            100% {
                background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1494412574643-ff11b0a5c1c3?w=600&h=800&fit=crop');
            }

            50% {
                background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1565793298595-6a879b1d9492?w=600&h=800&fit=crop');
            }
        }

        @keyframes bgChange5 {

            0%,
            100% {
                background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1580674285054-bed31e145f59?w=600&h=800&fit=crop');
            }

            50% {
                background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1611003228941-98852ba62227?w=600&h=800&fit=crop');
            }
        }

        .service-card-new:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
        }

        /* Service Badge */
        .service-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background: #ffc107;
            color: #333;
            padding: 6px 16px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            z-index: 2;
            border-radius: 3px;
        }

        /* Service Content */
        .service-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: white;
            padding: 30px;
            border-radius: 8px 8px 0 0;
            transition: all 0.3s ease;
        }

        /* Service Icon Circle */
        .service-icon-circle {
            width: 80px;
            height: 80px;
            background: var(--primary-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            position: relative;
            top: -40px;
            box-shadow: 0 5px 20px rgba(26, 95, 122, 0.3);
        }

        .service-icon-circle i {
            color: white;
            font-size: 2rem;
        }

        /* Service Title */
        .service-title {
            color: #333;
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 15px;
            margin-top: -20px;
            text-align: center;
        }

        /* Service Description */
        .service-description {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 20px;
            text-align: center;
        }

        /* Read More Button */
        .service-read-more {
            display: block;
            width: fit-content;
            margin: 0 auto;
            background: var(--primary-blue);
            color: white;
            padding: 10px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .service-read-more:hover {
            background: var(--dark-blue);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(26, 95, 122, 0.3);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .service-card-new {
                height: 420px;
                margin-bottom: 20px;
            }

            .section-title-services {
                font-size: 2rem;
            }

            .service-content {
                padding: 25px 20px;
            }

            .service-title {
                font-size: 1.1rem;
            }

            .service-description {
                font-size: 0.9rem;
            }
        }


        /* Topographic Pattern Background */
        .topo-background {
            background-image:
                repeating-radial-gradient(circle at 0 0, transparent 0, rgba(255, 255, 255, 0.05) 10px, transparent 20px),
                repeating-linear-gradient(rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.03));
        }

        /* Footer */
        footer {
            background: var(--dark-blue);
            color: white;
            padding: 40px 0 20px;
        }

        footer h5 {
            color: var(--accent-orange);
            margin-bottom: 20px;
        }

        footer a {
            color: #ccc;
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: color 0.3s ease;
        }

        footer a:hover {
            color: var(--accent-orange);
        }

        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            background: var(--accent-orange);
            transform: translateY(-3px);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .company-text {
                font-size: 2rem;
            }

            .company-subtitle {
                font-size: 1.2rem;
            }

            .company-tagline {
                font-size: 1rem;
            }

            .company-logo {
                padding: 20px 30px;
            }

            .u-curve-container,
            .carousel-item {
                height: 350px;
            }

            .section-title {
                font-size: 2rem;
            }

            .intro-text {
                margin-top: 30px;
            }

            .top-header {
                text-align: center;
            }

            .top-header .text-end {
                text-align: center !important;
                margin-top: 10px;
            }

            .video-modal .btn-close {
                top: -35px;
                right: -5px;
            }
        }

        /* Why Choose Us Section Styles */
        /* Why Choose Us Section Styles */

        /* Base Section Styles */
        .why-choose-us-section {
            position: relative;
            background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #2563eb 100%);
            padding: 50px 20px;
            overflow: hidden;
        }

        /* Background Images - Hidden on mobile */
        .why-choose-us-bg-left {
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 25%;
            background-image: url('https://t4.ftcdn.net/jpg/00/65/06/39/360_F_65063906_WuzE8vl8tjwm0jMeF4LEB3ELZoJtbIMy.jpg');
            background-size: cover;
            background-position: center;
            opacity: 0.9;
        }

        .why-choose-us-bg-right {
            position: absolute;
            right: 0;
            top: 0;
            bottom: 0;
            width: 25%;
            background-image: url('https://img.freepik.com/free-photo/aerial-view-container-cargo-ship-sea_335224-735.jpg');
            background-size: cover;
            background-position: center;
            opacity: 0.9;
        }

        /* Content Container */
        .why-choose-us-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            z-index: 1;
        }

        /* Section Title */
        .why-choose-us-title {
            color: white;
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 50px;
            text-align: center;
            font-family: 'Georgia', serif;
        }

        /* Features Grid */
        .why-choose-us-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px 60px;
            max-width: 700px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Individual Feature */
        .why-choose-us-feature {
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }

        .why-choose-us-icon {
            flex-shrink: 0;
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid white;
            border-radius: 50%;
            font-size: 24px;
            color: white;
        }

        .why-choose-us-content h3 {
            color: white;
            font-size: 20px;
            font-weight: 600;
            margin: 0 0 12px 0;
            font-family: 'Arial', sans-serif;
        }

        .why-choose-us-content p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 15px;
            line-height: 1.6;
            margin: 0;
            font-family: 'Arial', sans-serif;
        }

        /* Tablet Responsiveness */
        @media (max-width: 992px) {
            .why-choose-us-grid {
                max-width: 600px;
                gap: 35px 40px;
            }

            .why-choose-us-bg-right {
                width: 35%;
            }
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .why-choose-us-section {
                padding: 60px 20px;
            }

            .why-choose-us-title {
                font-size: 32px;
                margin-bottom: 40px;
            }

            .why-choose-us-grid {
                grid-template-columns: 1fr;
                gap: 40px;
                max-width: 500px;
                padding: 0 10px;
            }

            /* Hide background images on mobile */
            .why-choose-us-bg-left,
            .why-choose-us-bg-right {
                display: none;
            }
        }

        /* Small Mobile */
        @media (max-width: 480px) {
            .why-choose-us-section {
                padding: 50px 15px;
            }

            .why-choose-us-title {
                font-size: 28px;
                margin-bottom: 35px;
            }

            .why-choose-us-grid {
                gap: 35px;
                padding: 0 5px;
            }

            .why-choose-us-content h3 {
                font-size: 18px;
                margin-bottom: 10px;
            }

            .why-choose-us-content p {
                font-size: 14px;
                line-height: 1.5;
            }

            .why-choose-us-feature {
                gap: 15px;
            }
        }

        /* Extra Small Mobile */
        @media (max-width: 380px) {
            .why-choose-us-title {
                font-size: 24px;
            }

            .why-choose-us-content h3 {
                font-size: 17px;
            }

            .why-choose-us-content p {
                font-size: 13px;
            }
        }

        /*NEWS AND EVENTS*/
        /* News and Events Section Styles */

        /* Section Container */
        .news-events-section {
            padding: 80px 20px;
            background-color: #f8f9fa;
        }

        /* Section Header */
        .news-events-header {
            max-width: 1400px;
            margin: 0 auto 60px;
            padding: 0 20px;
        }

        .news-events-title {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 10px;
        }

        .news-events-title-line {
            width: 60px;
            height: 4px;
            background-color: #1e40af;
        }

        .news-events-title h2 {
            font-size: 42px;
            font-weight: 700;
            margin: 0;
            color: #1a1a1a;
            font-family: 'Georgia', serif;
        }

        .news-events-title h2 span {
            font-weight: 400;
            color: #666;
        }

        .news-events-subtitle {
            font-size: 18px;
            color: #888;
            margin: 0;
            padding-left: 80px;
            font-family: 'Arial', sans-serif;
        }

        /* Cards Grid */
        .news-events-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Individual Card */
        .news-event-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .news-event-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
        }

        /* Card Image */
        .news-event-image {
            width: 100%;
            height: 280px;
            overflow: hidden;
            position: relative;
        }

        .news-event-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .news-event-card:hover .news-event-image img {
            transform: scale(1.05);
        }

        /* Card Content */
        .news-event-content {
            padding: 30px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .news-event-content h3 {
            font-size: 24px;
            font-weight: 700;
            color: #1a1a1a;
            margin: 0 0 15px 0;
            font-family: 'Georgia', serif;
            line-height: 1.3;
        }

        .news-event-content p {
            font-size: 15px;
            color: #666;
            line-height: 1.6;
            margin: 0 0 25px 0;
            font-family: 'Arial', sans-serif;
            flex: 1;
        }

        /* Read More Button */
        .news-event-btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: #1e40af;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-size: 15px;
            font-weight: 600;
            font-family: 'Arial', sans-serif;
            transition: background-color 0.3s ease;
            align-self: flex-start;
            border: none;
            cursor: pointer;
        }

        .news-event-btn:hover {
            background-color: #1e3a8a;
        }

        /* Tablet Responsiveness */
        @media (max-width: 992px) {
            .news-events-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }

            .news-events-title h2 {
                font-size: 36px;
            }

            .news-event-image {
                height: 240px;
            }
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .news-events-section {
                padding: 60px 15px;
            }

            .news-events-header {
                margin-bottom: 40px;
            }

            .news-events-title {
                gap: 15px;
            }

            .news-events-title-line {
                width: 40px;
                height: 3px;
            }

            .news-events-title h2 {
                font-size: 32px;
            }

            .news-events-subtitle {
                font-size: 16px;
                padding-left: 55px;
            }

            .news-events-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .news-event-image {
                height: 220px;
            }

            .news-event-content {
                padding: 25px;
            }

            .news-event-content h3 {
                font-size: 22px;
            }
        }

        /* Small Mobile */
        @media (max-width: 480px) {
            .news-events-section {
                padding: 50px 15px;
            }

            .news-events-title h2 {
                font-size: 28px;
            }

            .news-events-subtitle {
                font-size: 15px;
                padding-left: 55px;
            }

            .news-event-image {
                height: 200px;
            }

            .news-event-content {
                padding: 20px;
            }

            .news-event-content h3 {
                font-size: 20px;
                margin-bottom: 12px;
            }

            .news-event-content p {
                font-size: 14px;
                margin-bottom: 20px;
            }

            .news-event-btn {
                padding: 10px 25px;
                font-size: 14px;
            }
        }

        /* Our Team Section Styles */

        /* Section Container */
        .our-team-section {
            padding: 80px 20px;
            background-color: #ffffff;
        }

        /* Section Header */
        .our-team-header {
            max-width: 1400px;
            margin: 0 auto 60px;
            padding: 0 20px;
        }

        .our-team-title {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 10px;
        }

        .our-team-title-line {
            width: 60px;
            height: 4px;
            background-color: #1e40af;
        }

        .our-team-title h2 {
            font-size: 42px;
            font-weight: 700;
            margin: 0;
            color: #1a1a1a;
            font-family: 'Georgia', serif;
        }

        .our-team-title h2 span {
            color: #f59e0b;
        }

        .our-team-subtitle {
            font-size: 18px;
            color: #888;
            margin: 0;
            padding-left: 80px;
            font-family: 'Arial', sans-serif;
        }

        /* Team Grid */
        .our-team-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Team Member Card */
        .team-member-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .team-member-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        }

        /* Member Image */
        .team-member-image {
            width: 100%;
            height: 530px;
            overflow: hidden;
            background-color: #000;
        }

        .team-member-image img {
            width: 100%;
            height: 530px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .team-member-card:hover .team-member-image img {
            transform: scale(1.05);
        }

        /* Member Info */
        .team-member-info {
            padding: 30px;
            text-align: center;
            background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
        }

        .team-member-info h3 {
            font-size: 22px;
            font-weight: 700;
            color: white;
            margin: 0 0 8px 0;
            font-family: 'Georgia', serif;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .team-member-info p {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.9);
            margin: 0;
            font-family: 'Arial', sans-serif;
            line-height: 1.5;
        }

        /* Tablet Responsiveness */
        @media (max-width: 992px) {
            .our-team-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }

            .our-team-title h2 {
                font-size: 36px;
            }

            .team-member-image {
                height: 400px;
            }
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .our-team-section {
                padding: 60px 15px;
            }

            .our-team-header {
                margin-bottom: 40px;
            }

            .our-team-title {
                gap: 15px;
            }

            .our-team-title-line {
                width: 40px;
                height: 3px;
            }

            .our-team-title h2 {
                font-size: 32px;
            }

            .our-team-subtitle {
                font-size: 16px;
                padding-left: 55px;
            }

            .our-team-grid {
                grid-template-columns: 1fr;
                gap: 30px;
                max-width: 500px;
                margin: 0 auto;
            }

            .team-member-image {
                height: 400px;
            }

            .team-member-info {
                padding: 25px;
            }

            .team-member-info h3 {
                font-size: 20px;
            }

            .team-member-info p {
                font-size: 14px;
            }
        }

        /* Small Mobile */
        @media (max-width: 480px) {
            .our-team-section {
                padding: 50px 15px;
            }

            .our-team-title h2 {
                font-size: 28px;
            }

            .our-team-subtitle {
                font-size: 15px;
                padding-left: 55px;
            }

            .team-member-image {
                height: 430px;
            }

            .team-member-info {
                padding: 20px;
            }

            .team-member-info h3 {
                font-size: 18px;
                margin-bottom: 6px;
            }

            .team-member-info p {
                font-size: 13px;
            }
        }


        /* Our Companies Section Styles */

/* Section Container */
.our-companies-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

/* Section Header */
.our-companies-header {
    max-width: 1400px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.our-companies-title {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
}

.our-companies-title-line {
    width: 60px;
    height: 4px;
    background-color: #1e40af;
}

.our-companies-title h2 {
    font-size: 42px;
    font-weight: 700;
    margin: 0;
    color: #1a1a1a;
    font-family: 'Georgia', serif;
}

.our-companies-title h2 span {
    color: #1e40af;
}

.our-companies-subtitle {
    font-size: 18px;
    color: #888;
    margin: 0;
    padding-left: 80px;
    font-family: 'Arial', sans-serif;
}

/* Companies Grid */
.our-companies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Company Card */
.company-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.company-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Company Logo Container */
.company-logo-container {
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f4ff 0%, #e0e7ff 100%);
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.company-logo-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(30, 64, 175, 0.05) 0%, transparent 70%);
}

.company-logo-image {
    /* max-width: 100%;
    max-height: 100%; */
    width: auto;
    height: 300px;
    object-fit: contain;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.company-card:hover .company-logo {
    transform: scale(1.05);
}

/* Company Content */
.company-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.company-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 15px 0;
    font-family: 'Georgia', serif;
    line-height: 1.3;
}

.company-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0 0 25px 0;
    font-family: 'Arial', sans-serif;
    flex: 1;
}

/* Visit Website Link */
.company-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1e40af;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
    transition: gap 0.3s ease, color 0.3s ease;
}

.company-link:hover {
    color: #1e3a8a;
    gap: 12px;
}

.company-link i {
    font-size: 14px;
}

/* Tablet Responsiveness */
@media (max-width: 992px) {
    .our-companies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .our-companies-title h2 {
        font-size: 36px;
    }
    
    .company-logo-container {
        height: 200px;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .our-companies-section {
        padding: 60px 15px;
    }
    
    .our-companies-header {
        margin-bottom: 40px;
    }
    
    .our-companies-title {
        gap: 15px;
    }
    
    .our-companies-title-line {
        width: 40px;
        height: 3px;
    }
    
    .our-companies-title h2 {
        font-size: 32px;
    }
    
    .our-companies-subtitle {
        font-size: 16px;
        padding-left: 55px;
    }
    
    .our-companies-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .company-logo-container {
        height: 280px;
        padding: 25px;
    }
    
    .company-content {
        padding: 25px;
    }
    
    .company-content h3 {
        font-size: 22px;
    }
    
    .company-content p {
        font-size: 14px;
        margin-bottom: 20px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .our-companies-section {
        padding: 50px 15px;
    }
    
    .our-companies-title h2 {
        font-size: 28px;
    }
    
    .our-companies-subtitle {
        font-size: 15px;
        padding-left: 55px;
    }
    
    .company-logo-container {
        height: 260px;
        padding: 20px;
    }
    
    .company-content {
        padding: 20px;
    }
    
    .company-content h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .company-content p {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .company-link {
        font-size: 14px;
    }
}

/*************************************************

        ABOUT US - STYLES
        ************************************************/
        /* Hero Section */
    .about-hero-section {
        background: linear-gradient(rgba(0, 40, 80, 0.7), rgba(0, 60, 100, 0.7)), 
                    url('https://www.searates.com/design/images/import/blog-uploads/img-1687438495-9020.jpg');
        background-size: cover;
        background-position: center;
        padding: 120px 20px 80px;
        text-align: center;
        color: white;
        position: relative;
    }

    .about-hero-section h1 {
        font-size: 48px;
        font-weight: bold;
        margin-bottom: 20px;
        letter-spacing: 2px;
    }

    .about-breadcrumb {
        font-size: 14px;
        color: #fff;
    }

    .about-breadcrumb a {
        color: #fff;
        text-decoration: none;
    }

    .about-breadcrumb a:hover {
        text-decoration: underline;
    }

    /* About Content Section */
    .about-content {
        max-width: 1200px;
        margin: 80px auto;
        padding: 0 20px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .about-video-container {
        position: relative;
        width: 100%;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .about-video-container img {
        width: 100%;
        height: auto;
        display: block;
    }

    .about-play-button {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80px;
        height: 80px;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .about-play-button:hover {
        background: rgba(255, 255, 255, 1);
        transform: translate(-50%, -50%) scale(1.1);
    }

    .about-play-button::after {
        content: '';
        width: 0;
        height: 0;
        border-left: 25px solid #003366;
        border-top: 15px solid transparent;
        border-bottom: 15px solid transparent;
        margin-left: 5px;
    }

    .about-text-content {
        padding: 20px;
    }

    .about-committed-label {
        color: #d4a574;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 15px;
        display: inline-block;
    }

    .about-text-content h2 {
        font-size: 36px;
        color: #1a1a1a;
        margin-bottom: 25px;
        line-height: 1.3;
        font-weight: bold;
    }

    .about-text-content p {
        font-size: 16px;
        line-height: 1.8;
        color: #555;
        font-family: Arial, sans-serif;
    }

    /* Responsive Design */
    @media (max-width: 968px) {
        .about-content {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .about-hero-section h1 {
            font-size: 36px;
        }

        .about-text-content h2 {
            font-size: 28px;
        }
    }

    @media (max-width: 600px) {
        .about-hero-section {
            padding: 80px 20px 60px;
        }

        .about-hero-section h1 {
            font-size: 32px;
        }

        .about-text-content h2 {
            font-size: 24px;
        }

        .about-text-content p {
            font-size: 15px;
        }
    }