* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Poppins', sans-serif;
    background: #f0f0f0;
}
/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #FF6600;
    border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
    background: #E55A00;
}
/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: #FF6600 #f1f1f1;
}
/* Preloader Styles */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}
#preloader.hidden {
    opacity: 0;
    pointer-events: none;
}
.loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    font-family: 'Poppins', sans-serif;
}
.progress-bar {
    width: 200px;
    height: 4px;
    background: #ddd;
    border-radius: 2px;
    overflow: hidden;
}
.progress {
    height: 100%;
    background: #FF6600;
    width: 0%;
    border-radius: 2px;
    transition: width 0.03s ease;
}
.percentage {
    font-size: 24px;
    font-weight: 700;
    color: #FF6600;
    letter-spacing: 1px;
}
/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}
.modal-content {
    background-color: #ffffff;
    margin: 5% auto;
    padding: 0;
    border-radius: 12px;
    width: 85%;
    max-width: 450px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: modalSlideIn 0.3s ease-out;
}
@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.modal-header {
    padding: 15px 25px;
    border-bottom: 1px solid #e0e0e0;
    text-align: center;
}
.modal-header h2 {
    color: #1B3770;
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}
.close {
    color: #666;
    position: absolute;
    right: 15px;
    top: 12px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}
.close:hover {
    color: #FF6600;
}
.enquiry-form {
    padding: 30px 25px;
}
.enquiry-form .form-group {
    margin-bottom: 25px;
    text-align: left;
}
.enquiry-form .form-group label {
    color: #1B3770;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.enquiry-form .form-group input,
.enquiry-form .form-group select,
.enquiry-form .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: #f9f9f9;
}
.enquiry-form .form-group input:focus,
.enquiry-form .form-group select:focus,
.enquiry-form .form-group textarea:focus {
    outline: none;
    border-color: #FF6600;
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
}
.enquiry-form .form-group textarea {
    resize: vertical;
    min-height: 100px;
    font-family: 'Poppins', sans-serif;
}
.enquiry-form .form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
}
.enquiry-form .submit-btn {
    background: #FF6600;
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    width: 100%;
    cursor: pointer;
    margin-top: 10px;
}
.enquiry-form .submit-btn:hover {
    background: #E55A00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
}
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    .enquiry-form {
        padding: 25px 20px;
    }
    .enquiry-form .form-group input,
    .enquiry-form .form-group select,
    .enquiry-form .form-group textarea {
        padding: 10px 14px;
        font-size: 15px;
    }
    .enquiry-form .form-group label {
        font-size: 13px;
    }
}
/* Navigation Bar */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    padding: 15px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
}
nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 50px;
}
/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}
.logo img {
    width: 350px;
    height: 150px;
    object-fit: contain;
    border-radius: 4px;
    transition: all 0.3s ease;
}
/* Logo switching */
.logo .logo1 {
    opacity: 1;
}
.logo .logo2 {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
}
nav.scrolled .logo .logo1 {
    opacity: 0;
}
nav.scrolled .logo .logo2 {
    opacity: 1;
}
nav.scrolled .logo img {
    width: 250px;
    height: 100px;
}
/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 75px;
    align-items: center;
    margin-left: 85px;
}
.nav-menu li a {
    text-decoration: none;
    color: #1B3770;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
    position: relative;
}
nav.scrolled .nav-menu li a {
    font-size: 14px;
}
.nav-menu li a:hover {
    color: #FF6600;
}
/* Contact Button */
.contact-btn {
    background: #FF6600;
    color: white !important;
    padding: 16px 40px;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
    font-size: 16px;
}
nav.scrolled .contact-btn {
    padding: 12px 32px;
    font-size: 14px;
}
.contact-btn:hover {
    background: #E55A00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
}
nav.scrolled .nav-menu li a {
    color: #1B3770;
}
nav.scrolled .nav-menu li a:hover {
    color: #FF6600;
}
/* Video Section */
.video-section {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}
.video-section video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
/* Welcome Section Styles */
.welcome-section {
    background: #ffffff;
    padding: 80px 20px;
    text-align: center;
}
.welcome-container {
    max-width: 1200px;
    margin: 0 auto;
}
.welcome-logo {
    margin-bottom: 20px;
}
.welcome-logo img {
    width: 200px;
    height: auto;
    object-fit: contain;
}
.welcome-title {
    color: #1B3770;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.main-heading {
    color: #1a1a1a;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.welcome-description {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    max-width: 1000px;
    margin: 0 auto 40px;
    font-weight: 400;
}
.learn-more-btn {
    display: inline-block;
    background: transparent;
    color: #FF6600;
    padding: 16px 50px;
    border: 2px solid #FF6600;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-bottom: 60px;
}
.learn-more-btn:hover {
    background: #FF6600;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
}
.stats-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-top: 60px;
    flex-wrap: wrap;
}
.stat-item {
    text-align: center;
}
.stat-number {
    color: #1B3770;
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1;
}
.stat-number::after {
    content: '+';
}
.stat-label {
    color: #333;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.stat-divider {
    width: 1px;
    height: 80px;
    background: #e0e0e0;
}
/* Services Section Styles */
.services-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    margin: 60px auto 50px;
    max-width: 1200px;
    flex-wrap: nowrap;
    overflow-x: hidden;
}
.service-card {
    background: transparent;
    padding: 20px 15px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    flex: 0 0 200px;
    max-width: 200px;
}
.service-card:hover {
    transform: translateY(-10px);
}
.service-icon-wrapper {
    width: 130px;
    height: 130px;
    margin: 0 auto 25px;
    background: #E8EEF7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
}
.service-card:hover .service-icon-wrapper {
    background: #FF6600;
    transform: scale(1.05);
}
.service-icon {
    font-size: 50px;
    color: #1B3770;
    transition: all 0.3s ease;
}
.service-card:hover .service-icon {
    color: white;
}
.service-card h3 {
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}
.service-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}
/* New Services Section Styles */
.offer-section {
    background: #f9f9f9;
    padding: 80px 20px;
    text-align: center;
}
.offer-container {
    max-width: 1200px;
    margin: 0 auto;
}
.offer-subtitle {
    color: #1B3770;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.offer-heading {
    color: #1a1a1a;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.offer-description {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    max-width: 1000px;
    margin: 0 auto 60px;
    font-weight: 400;
}
.offer-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    margin: 60px auto;
    max-width: 1200px;
    flex-wrap: nowrap;
    overflow-x: hidden;
}
.offer-card {
    background: transparent;
    padding: 20px 15px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    flex: 0 0 250px;
    max-width: 250px;
}
.offer-card:hover {
    transform: translateY(-10px);
}
.offer-icon-wrapper {
    width: 130px;
    height: 130px;
    margin: 0 auto 25px;
    background: #E8EEF7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
}
.offer-card:hover .offer-icon-wrapper {
    background: #FF6600;
    transform: scale(1.05);
}
.offer-icon {
    font-size: 50px;
    color: #1B3770;
    transition: all 0.3s ease;
}
.offer-card:hover .offer-icon {
    color: white;
}
.offer-card h3 {
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}
.offer-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}
/* Testimonials Section Styles */
.testimonials-section {
    background: #ffffff;
    padding: 80px 20px;
    text-align: center;
}
.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}
.testimonials-subtitle {
    color: #1B3770;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.testimonials-heading {
    color: #1a1a1a;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.testimonials-description {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    max-width: 1000px;
    margin: 0 auto 60px;
    font-weight: 400;
}
.slider-container {
    position: relative;
    max-width: 800px;
    margin: 60px auto 20px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.testimonials-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.testimonial-card {
    background: #f9f9f9;
    padding: 30px 25px;
    border-radius: 12px;
    text-align: left;
    min-width: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.testimonial-quote {
    font-style: italic;
    color: #333;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
}
.testimonial-quote::before {
    content: '"';
    font-size: 40px;
    color: #FF6600;
    position: absolute;
    left: -10px;
    top: -5px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}
.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF6600, #E55A00);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 2px 8px rgba(255, 102, 0, 0.3);
}
.author-info h4 {
    color: #1B3770;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}
.author-info p {
    color: #666;
    font-size: 14px;
}
.stars {
    color: #FF6600;
    margin-bottom: 15px;
    font-size: 14px;
}
.stars i {
    margin-right: 2px;
}
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(27, 55, 112, 0.8);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    z-index: 10;
    transition: background 0.3s ease;
}
.slider-btn:hover {
    background: #FF6600;
}
.prev {
    left: 10px;
}
.next {
    right: 10px;
}
.dots-container {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}
.dot.active {
    background: #FF6600;
    transform: scale(1.2);
}
/* Contact Section Styles */
.contact-section {
    background: #f9f9f9;
    padding: 80px 20px;
    text-align: center;
}
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}
.contact-subtitle {
    color: #1B3770;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.contact-heading {
    color: #1a1a1a;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.contact-description {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    max-width: 1000px;
    margin: 0 auto 60px;
    font-weight: 400;
}
.divider {
    width: 100px;
    height: 1px;
    background: #e0e0e0;
    margin: 40px auto;
}
.contact-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}
.form-group {
    margin-bottom: 25px;
    text-align: left;
}
.form-group label {
    color: #1B3770;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: #f9f9f9;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF6600;
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
}
.form-group textarea {
    resize: vertical;
    min-height: 100px;
    font-family: 'Poppins', sans-serif;
}
.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
}
.submit-btn {
    background: #FF6600;
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    width: 100%;
    cursor: pointer;
    margin-top: 10px;
}
.submit-btn:hover {
    background: #E55A00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
}
/* Fixed Enquire Now Button */
.enquire-fixed {
    position: fixed;
    right: -45px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: center center;
    z-index: 999;
}
.enquire-btn {
    background: #FF6600;
    color: white;
    padding: 18px 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 0;
    display: inline-block;
    box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    white-space: nowrap;
    cursor: pointer;
}
.enquire-btn:hover {
    background: #E55A00;
    padding: 18px 55px;
    box-shadow: -3px 3px 15px rgba(0, 0, 0, 0.3);
}
/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    z-index: 1001;
    transition: color 0.3s ease;
}
nav.scrolled .mobile-menu-btn {
    color: #1B3770;
}
/* Mobile Sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: rgba(245, 245, 245, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
    z-index: 1002;
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow-y: auto;
    padding: 0;
}
.mobile-sidebar.active {
    right: 0;
}
/* Sidebar Overlay */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}
/* Close Button */
.close-sidebar {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    color: #333;
    font-size: 28px;
    cursor: pointer;
    z-index: 1003;
    transition: all 0.3s ease;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.close-sidebar:hover {
    color: #FF6600;
    transform: rotate(90deg);
}
/* Sidebar Logo */
.sidebar-logo {
    text-align: center;
    padding: 30px 20px;
    margin-bottom: 0;
    border-bottom: none;
    background: white;
}
.sidebar-logo img {
    width: 180px;
    height: auto;
    object-fit: contain;
}
/* Sidebar Menu */
.sidebar-menu {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
    background: rgba(245, 245, 245, 0.5);
}
.sidebar-menu li {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(200, 200, 200, 0.3);
}
.sidebar-menu li a {
    display: block;
    color: #333;
    text-decoration: none;
    padding: 18px 30px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 0;
    transition: all 0.3s ease;
    position: relative;
    background: transparent;
}
.sidebar-menu li a:hover {
    background: rgba(255, 102, 0, 0.05);
    padding-left: 35px;
    color: #FF6600;
}
.sidebar-menu li a.contact-btn {
    background: #FF6600;
    color: white;
    text-align: center;
    margin-top: 0;
    border-bottom: none;
    font-weight: 700;
    letter-spacing: 1px;
}
.sidebar-menu li a.contact-btn:hover {
    background: #E55A00;
    padding-left: 30px;
    color: white;
}
.sidebar-menu li:last-child {
    border-bottom: none;
}
/* Social Media Icons */
.social-media {
    padding: 30px 30px;
    text-align: center;
    background: white;
    margin-top: auto;
}
.social-media h3 {
    display: none;
}
.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 10px 0;
}
.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: transparent;
    border: 1px solid #ddd;
    border-radius: 0;
    color: #555;
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}
.social-icons a:hover {
    background: #FF6600;
    color: white;
    border-color: #FF6600;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
}
/* Section Styles */
section {
    padding: 80px 20px;
    min-height: 100vh;
}
section h2 {
    font-size: 36px;
    color: #1B3770;
    margin-bottom: 30px;
    text-align: center;
}
section p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    max-width: 1000px;
    margin: 0 auto;
}
#home {
    min-height: auto;
    padding: 0;
}
#about {
    background: #ffffff;
}
#services {
    background: #f9f9f9;
}
/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #0a1f44 0%, #162d50 100%);
    color: #ffffff;
    padding: 60px 20px 20px;
    font-family: 'Poppins', sans-serif;
}
.footer-top {
    max-width: 1200px;
    margin: 0 auto 30px;
}
.footer-container {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}
.footer-brand {
    text-align: left;
}
.footer-logo img {
    width: 180px;
    height: auto;
    object-fit: contain;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}
.footer-brand h3 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.4;
}
.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
    font-weight: 400;
}
.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
}
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
    display: inline-block;
}
.footer-links a:hover {
    color: #FF6600;
    padding-left: 5px;
}
.footer-projects ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-projects li {
    margin-bottom: 12px;
}
.footer-projects a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
    display: inline-block;
}
.footer-projects a:hover {
    color: #FF6600;
    padding-left: 5px;
}
.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.footer-contact p i {
    color: #FF6600;
    font-size: 16px;
    margin-top: 3px;
    min-width: 16px;
}
.footer-contact a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
}
.footer-contact a:hover {
    color: #FF6600;
}
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    margin: 0;
    font-weight: 400;
}
.footer-bottom p span {
    color: #FF6600;
    font-weight: 600;
}
.footer-social {
    display: flex;
    gap: 12px;
}
.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}
.footer-social a:hover {
    background: #FF6600;
    border-color: #FF6600;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.4);
}
/* Social Section in Footer Contact */
.social-section {
    margin: 20px auto 0;
    text-align: center;
}
.social-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
}
.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}
.social-icons a:hover {
    background: #FF6600;
    border-color: #FF6600;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.4);
}
/* Mobile Responsive */
@media (max-width: 1024px) {
    nav {
        padding: 15px 30px;
    }
    .nav-menu {
        gap: 40px;
        margin-left: 40px;
    }
    .logo img {
        width: 280px;
        height: 120px;
    }
    .main-heading,
    .offer-heading,
    .testimonials-heading,
    .contact-heading {
        font-size: 36px;
    }
    .stats-container {
        gap: 40px;
    }
    .stat-number {
        font-size: 48px;
    }
    .services-grid,
    .offer-grid {
        gap: 25px;
    }
    .service-card {
        flex: 0 0 180px;
        max-width: 180px;
    }
    .offer-card {
        flex: 0 0 220px;
        max-width: 220px;
    }
    .service-icon-wrapper,
    .offer-icon-wrapper {
        width: 120px;
        height: 120px;
    }
    .service-icon,
    .offer-icon {
        font-size: 45px;
    }
    .service-card h3 {
        font-size: 17px;
    }
    .service-card p {
        font-size: 13px;
    }
    .slider-container {
        max-width: 650px;
    }
    .progress-bar {
        width: 180px;
    }
    .percentage {
        font-size: 20px;
    }
}
@media (max-width: 768px) {
    nav {
        padding: 15px 20px;
        justify-content: flex-start;
    }
    nav.scrolled {
        padding: 8px 20px;
    }
    .logo {
        margin-right: auto;
    }
    .mobile-menu-btn {
        margin-left: auto;
    }
    .nav-menu {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .logo img {
        width: 220px;
        height: 88px;
    }
    nav.scrolled .logo img {
        width: 180px;
        height: 72px;
    }
    .enquire-fixed {
        right: auto;
        left: 50%;
        top: auto;
        bottom: 0;
        transform: translateX(-50%) rotate(0deg);
        width: 100%;
    }
    .enquire-btn {
        padding: 18px 40px;
        font-size: 15px;
        letter-spacing: 2px;
        width: 100%;
        border-radius: 0;
        text-align: center;
    }
    .enquire-btn:hover {
        padding: 18px 40px;
    }
    .mobile-sidebar {
        width: 280px;
    }
    .sidebar-logo img {
        width: 180px;
    }
    .social-icons a {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
    .sidebar-menu li a {
        padding: 16px 25px;
        font-size: 14px;
    }
    .sidebar-menu li a:hover {
        padding-left: 30px;
    }
    /* Welcome Section Mobile */
    .welcome-section,
    .offer-section,
    .testimonials-section,
    .contact-section {
        padding: 60px 20px;
    }
    .main-heading,
    .offer-heading,
    .testimonials-heading,
    .contact-heading {
        font-size: 28px;
    }
    .welcome-description,
    .offer-description,
    .testimonials-description,
    .contact-description {
        font-size: 15px;
    }
    .stats-container {
        gap: 30px;
    }
    .stat-number {
        font-size: 40px;
    }
    .stat-label {
        font-size: 12px;
    }
    .stat-divider {
        display: none;
    }
    .services-grid,
    .offer-grid {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        overflow-x: hidden;
    }
    .service-card,
    .offer-card {
        flex: none;
        width: 100%;
        max-width: 300px;
        padding: 20px 15px;
    }
    .service-icon,
    .offer-icon {
        font-size: 50px;
    }
    .slider-container {
        max-width: 100%;
    }
    .testimonial-card {
        min-width: 100%;
        text-align: center;
    }
    .testimonial-author {
        justify-content: center;
    }
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
    .contact-form {
        padding: 30px 20px;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 14px;
        font-size: 15px;
    }
    .form-group label {
        font-size: 13px;
    }
    .footer {
        padding: 40px 20px 20px;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .footer-brand,
    .footer-links,
    .footer-contact {
        text-align: center;
    }
    .footer-logo img {
        width: 120px;
    }
    .social-section {
        margin: 15px auto 0;
    }
    .social-icons {
        gap: 12px;
    }
    .social-icons a {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    .footer-contact p {
        display: block;
        text-align: center;
    }
    .progress-bar {
        width: 160px;
    }
    .percentage {
        font-size: 18px;
    }
}
@media (max-width: 480px) {
    .logo img {
        width: 180px;
        height: 72px;
    }
    nav.scrolled .logo img {
        width: 140px;
        height: 56px;
    }
    .mobile-sidebar {
        width: 260px;
    }
    .sidebar-menu li a {
        font-size: 14px;
        padding: 12px 15px;
    }
    .social-icons a {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    .sidebar-menu li a {
        padding: 15px 20px;
        font-size: 13px;
    }
    .sidebar-menu li a:hover {
        padding-left: 25px;
    }
    .sidebar-logo img {
        width: 160px;
    }
    .main-heading,
    .offer-heading,
    .testimonials-heading,
    .contact-heading {
        font-size: 24px;
    }
    .welcome-logo img {
        width: 160px;
    }
    .stat-number {
        font-size: 36px;
    }
    .stats-container {
        gap: 25px;
    }
    .service-icon,
    .offer-icon {
        font-size: 45px;
    }
    .service-card h3,
    .offer-card h3 {
        font-size: 18px;
    }
    .service-card p,
    .offer-card p {
        font-size: 14px;
    }
    .testimonial-quote {
        font-size: 14px;
    }
    .author-info h4 {
        font-size: 15px;
    }
    .author-info p {
        font-size: 13px;
    }
    .slider-btn {
        display: none;
        /* Hide buttons on very small screens if needed */
    }
    .contact-subtitle {
        font-size: 14px;
    }
    .form-group label {
        font-size: 12px;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 14px;
        padding: 10px 12px;
    }
    .footer {
        padding: 30px 15px 15px;
    }
    .footer-container {
        gap: 20px;
    }
    .footer-brand h3 {
        font-size: 16px;
    }
    .footer-intro {
        font-size: 13px;
    }
    .footer-links h4,
    .footer-contact h4 {
        font-size: 15px;
    }
    .footer-links a,
    .footer-contact p {
        font-size: 13px;
    }
    .social-icons a {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
    .progress-bar {
        width: 140px;
    }
    .percentage {
        font-size: 16px;
    }
}