 html {
  scroll-behavior: smooth;
}
 
 body { font-family: Roboto,
 sans-serif; 
 background: #fff;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
 }
 header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #fff; 
    box-shadow: 0 2px 8px rgba(0,0,0,0.04); 
}

/* Header Styles */
header {
    background-color: #fff !important;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    width: 100%;
}

.header-container {
    max-width: 100%;
    width: 100%;
    margin-left:90px;
	margin-right:90px;
	padding-right:90px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.logo {
    flex-shrink: 0;
	flex: 0 1 60%; 
    display: flex;
}

.logo-img {
    height: 40px;
    width: auto;
    max-width: 100%;
}


.main-nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
    white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
    color: #06509F;
    font-weight: 600;
}

.main-nav a.active {
    border-bottom: 2px solid #06509F;
    padding-bottom: 2px;
}

/* Mobile Menu Button (hidden by default) */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #06509F;
    padding: 5px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .header-container {
        padding: 0 15px;
    }
    
    /* Show mobile menu button */
    .mobile-menu-btn {
        display: block;
    }
    
    /* Hide desktop navigation */
    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: 999;
    }
    
    /* Show mobile menu when active */
    .main-nav.active {
        transform: translateY(0);
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 15px 0;
    }
    
    .main-nav li {
        border-bottom: 1px solid #eee;
    }
    
    .main-nav a {
        display: block;
        padding: 12px 20px;
        white-space: normal;
    }
    
    .main-nav a.active {
        border-bottom: none;
        background: rgba(6, 80, 159, 0.05);
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 35px;
    }
    
    header {
        padding: 10px 0;
    }
    
    .main-nav {
        top: 60px;
    }
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    nav ul {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 15px;
    }
    
    .logo img {
        height: 35px;
    }
    
    nav ul {
        display: none; /* Hide desktop menu */
    }
    
    .mobile-menu-btn {
        display: block; /* Show mobile menu button */
    }
    
    /* Mobile menu when active */
    nav ul.mobile-active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 30px;
    }
    
    header {
        padding: 10px 0;
    }
}	
      
.hero-section {
    max-width: 100%;
    margin-left: 90px;
	max-height:100vh;
	height:100%;
}

.carousel-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end; 
    height: 100vh;
    width: 100%;
    box-sizing: border-box;
}

.carousel-caption {
    flex: 0 1 50%; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    background: #fff;
    color: #4D4D4D;
    height: auto;
    padding: 60px 40px 100px 0; 
    position: static;
    box-shadow: none;
    margin-bottom: 60px;
}

.carousel-image {
    flex: 0 1 50%; 
    display: flex;
    justify-content: flex-end;
    align-items: flex-end; 
    height: 100%;
    background-color: #fff;
}

.carousel-image img {
    max-width: 100%;
    max-height: 100%; 
    object-fit: contain;
    object-position: bottom right; 
}

.carousel-caption h5 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #222;
}

.carousel-caption p {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 32px;
    line-height: 1.6;
}

.carousel-caption .cta-button {
    background: #06509F;
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 10px;
    border: none;
    cursor: pointer;
}

.carousel-caption .cta-button:hover {
    background: #0052a3;
}

@media (max-width: 900px) {
	
    .carousel-row {
        flex-direction: column;
        height: auto;
        padding: 0 20px;
    }
    .carousel-image, .carousel-caption {
        width: 100%;
        height: auto;
    }
    .carousel-caption {
        padding: 30px 20px;
        margin-bottom: 0;
    }
    .carousel-image img {
        max-width: 100%;
        max-height: 300px;
    }
}

@media (min-width: 1600px) {
	
	.hero-section {
	height: 100vh;
        min-height: 100vh;
        max-height: 100vh;
}
 
    .hero-carousel,
    .carousel,
    .carousel-inner,
    .carousel-item {
        height: 100%;
    }
	
    .carousel-row {
        height: 100%;
        min-height: 100%; 
    }
	
	.carousel-caption {
    flex: 0 1 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; 
    align-items: flex-start;
    text-align: left;
    background: #fff;
    color: #4D4D4D;
    height: auto;
    padding: 0 40px 160px 0; 
    position: static;
    box-shadow: none;
    margin-bottom: 60px;
}
}
		
.about-section {
    background-color: #AAB5CF4A;
    position: relative;
    overflow: visible;
    padding-bottom: 0px;
    width: 100%;
    padding-top: 60px;
}

.about-container {
    max-width: 100%;
    margin-left: 90px;
    margin-right: 90px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
    z-index: 3;
}

.about-text {
    flex: 0 1 50%;
    min-width: 320px;
    margin-right: 40px;
    padding-bottom: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

.about-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.about-text h2 span {
    color: #06509F;
}

.about-content {
    font-size: 1.1rem;
    color: #222;
}

.about-images {
    flex: 0 1 50%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    position: relative;
    z-index: 4;
    margin-bottom: -150px;
    height: 400px;
}

.about-img-combined {
    object-fit: contain;
    width: 100%;
    height: 550px;
    object-position: bottom right;
}

.about-road-bg {
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    position: relative;
    z-index: 2;
    text-align: left;
    overflow: hidden;
    margin-top: -40px;
}

.about-road-bg img {
    width: 100vw;
    min-width: 100vw;
    max-width: 100vw;
    display: block;
    object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 1479px) {
    .about-container {
        margin-left: 60px;
        margin-right: 60px;
    }
    
    .about-img-combined {
        height: 500px;
    }
}

@media (max-width: 1200px) {
     .about-container {
        flex-direction: column;
        align-items: center;
        margin-left: 30px;
        margin-right: 30px;
    }
    
    .about-text {
        flex: 1 1 100%;
        margin-right: 0;
        padding-bottom: 40px;
        text-align: center;
        align-items: center;
    }
    
    .about-images {
        flex: 1 1 100%;
        justify-content: center;
        margin-bottom: 0;
        height: auto;
        margin-top: 30px;
    }
    
    .about-img-combined {
        height: 400px;
        object-position: center;
    }
    
    .about-road-bg {
        margin-top: 0;
    }
}

@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        align-items: center;
        margin-left: 30px;
        margin-right: 30px;
    }
    
    .about-text {
        flex: 1 1 100%;
        margin-right: 0;
        padding-bottom: 40px;
        text-align: center;
        align-items: center;
    }
    
    .about-images {
        flex: 1 1 100%;
        justify-content: center;
        margin-bottom: 0;
        height: auto;
        margin-top: 30px;
    }
    
    .about-img-combined {
        height: 400px;
        object-position: center;
    }
    
    .about-road-bg {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .about-container {
        margin-left: 20px;
        margin-right: 20px;
    }
    
    .about-text h2 {
        font-size: 1.8rem;
    }
    
    .about-content {
        font-size: 1rem;
    }
    
    .about-img-combined {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .about-container {
        margin-left: 15px;
        margin-right: 15px;
    }
    
    .about-text h2 {
        font-size: 1.5rem;
    }
    
    .about-img-combined {
        height: 300px;
    }
}


@media (min-width: 1600px) {
 .about-images {
    flex: 0 1 50%; 
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    position: relative;
    z-index: 4; 
    margin-bottom: -180px;
	height:500px;
}

.about-section {
	 max-height: 630px;
	 width: 100%;
	  padding-top:0px;
}

.about-img-combined {
	object-fit: contain;
	width:100%;
}
}

.features-section {
    background: #fff;
	padding:40px 0;
}
.features-section {
    max-width: 100%;
   margin-left:90px;
	margin-right:90px;
}
.features-title {
    text-align: center;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 10px;
}

.features-title h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 18px;
}
.features-title h2 span {
    color: #06509F;
}

.features-subtitle {
    text-align: center;
    max-width: 710px;
    margin: 0 auto 30px auto;
    color: #000000;
    font-size: 16px;
}

.features-grid {
    display: grid;
     grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 100%;
    max-width: 100%; 
    margin: 0 auto;
}

.feature-card {
    background: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(6, 80, 159, 0.12);
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%; 
}

.feature-icon {
    margin-bottom: 16px;
    max-width: 82px; 
    height: 82px;
}

.feature-title {
    margin: 0 0 12px 0;
    font-size: 24px;
	color:#06509F;
	font-weight:600;
}

.feature-desc {
    margin: 0;
    color: #4D4D4D;
	font-size: 18px;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr); 
    }
    
    .feature-card {
        flex: 0 1 calc(50% - 24px);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        flex: 0 1 100%;
    }
}

@media (min-width: 1600px) {
.features-grid {
    display: grid;
     grid-template-columns: repeat(3, 1fr);
   
}

}

.integration-section {
    background-color: #0457BD0F;
    padding: 60px 0 40px 0;
	  max-width: 100%;
	  width: 100%;
}
.integration-title {
    text-align: center;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 10px;
}

.integration-title h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 18px;
}
.integration-title h2 span {
    color: #06509F !important;
}

.integration-section {
    background-color: #0457BD0F;
    padding: 60px 0 40px 0;
    width: 100%;
    overflow: hidden;
}

.integration-container {
    max-width: 100%;
    text-align: center;
}

.integration-content {
    max-width: 800px;
    text-align: center;
	margin:0 auto;
}


.integration-container {
    max-width: 100%;
    text-align: center;
    padding: 0 16px;
}

.integration-image {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
	margin-left:90px;
	margin-right:90px;
	padding-right:90px;
}

.integration-image img {
    width: 100%;
    max-width: 95%;
    height: 100%;
    object-fit: contain;
    display: block;
}




.why-choose-section {
    background: #FFF;
    position: relative;
    overflow: hidden;
	padding-bottom: 80px;
}

.why-choose-container {
    max-width: 100%;
    position: relative;
}


.why-choose-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-choose-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000;
	padding-top: 80px;
}

.why-choose-title span {
    color: #06509F;
	
}

.why-choose-dots {
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: auto;
    z-index: 2;
    pointer-events: none;
}

.why-choose-grid {
    display: grid;
     grid-template-columns: repeat(3, 1fr);
    gap: 40px;
	margin-left:90px;
	margin-right:90px;
}


.why-choose-card {
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(6, 80, 159, 0.08);
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 1;
}

.why-choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(6, 80, 159, 0.12);
}

.why-choose-icon {
    height: 60px;
    width: auto;
    margin-bottom: 25px;
}

.why-choose-card-title {
    font-size: 1.5rem;
    color: #06509F;
    font-weight: 600;
    margin-bottom: 15px;
}

.why-choose-card-desc {
    color: #4D4D4D;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}


@media (max-width: 1024px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-choose-title {
        font-size: 2rem;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-card {
        padding: 30px 20px;
    }
}

@media (min-width: 1600px) {
    .why-choose-container {
        max-width: 100%;
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


 .contact-section {
            position: relative;
            background: #1a2a40;
            background-size: cover;
            background-position: center;
            padding: 60px 0;
        }
		
        .contact-overlay {
            position: absolute;
            inset: 0;
            background: rgba(20,40,80,0.6);
            z-index: 1;
        }
		
        .contact-container {
            position: relative;
            z-index: 2;
            display: flex;
            justify-content: space-between;
            max-width: 100%;
         margin-left:90px;
	      margin-right:90px;
            gap: 32px;
        }
        .contact-info {
             flex: 0 1 50%;
            color: #fff;
            min-width: 320px;
               max-width: 100%;
			   margin-top:60px;
        }
        .contact-info ul {
            list-style: none;
            padding: 0;
            margin: 0 0 24px 0;
        }
        .contact-info li {
            display: flex;
            align-items: center;
            margin-bottom: 16px;
            font-size: 1.1rem;
        }
        .contact-icon {
            width: 36px;
            height: 36px;
            margin-right: 14px;
            border-radius: 50%;
            background: #FFF;
            padding: 2px;
            object-fit: contain;
            display: inline-block;
        }
        .contact-info a {
            color: #fff;
            text-decoration: underline;
        }
        .contact-map iframe, .contact-map img {
            width: 100%;
            height: 290px;
            border: 0;
            border-radius: 8px;
            margin-top: 12px;
            display: block;
        }
        .contact-form {
            flex: 0 1 50%;
            background: transparent;
            border-radius: 12px;
            padding: 32px 24px;
            min-width: 320px;
            max-width: 100%;
            margin-left: auto;
        }
        .contact-form h2 {
            text-align: center;
            margin-bottom: 24px;
            color: #fff;
        }
        .contact-form form {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .form-row {
            display: flex;
            gap: 16px;
        }
        .form-row input {
            flex: 1 1 0;
        }
        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #c3c3c3;
            border-radius: 6px;
            font-size: 1rem;
            background: #fff;
            box-shadow: 0 2px 8px rgba(0,0,0,0.04);
			outline:none;
        }
        .contact-form textarea {
            min-height: 80px;
            resize: vertical;
        }
        .contact-form button {
            background: #2563eb;
            color: #fff;
            border: none;
            padding: 14px 0;
            border-radius: 6px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            margin-top: 8px;
            transition: background 0.2s;
            display: block;
            width: 100%;
        }
        .contact-form button:hover {
            background: #1746a0;
        }
        @media (max-width: 900px) {
            .contact-container {
                flex-direction: column;
                align-items: stretch;
            }
            .contact-form {
                margin-left: 0;
                margin-top: 32px;
            }
        }

.site-footer {
    background: #1D3660;
    color: #fff;
    padding: 40px 0 20px;
    font-size: 1rem;
    line-height: 1.6;
}

.footer-container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    padding: 0 20px;
	         margin-left:90px;
	      margin-right:90px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
    text-transform: none;
    border-bottom: none;
    padding-bottom: 0;
}

.footer-col p {
    margin: 0 0 10px 0;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col a {
    color: #fff;
    text-decoration: none;
}

.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
    text-transform: none;
    padding-bottom: 8px; 
    position: relative;
    display: inline-block; 
}

/* Add blue underline effect */
.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 90px;
    height: 5px;
    background: #328FC7;
}

/* Social icons styling - keep your existing */
.social-icons {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 15px;
}

/* Rest of your existing footer CSS remains the same */
.site-footer {
    background: #1D3660;
    color: #fff;
    padding: 40px 0 20px;
    font-size: 1rem;
    line-height: 1.6;
}

.footer-col a:hover {
    text-decoration: underline;
}

  .social-icons {
        display: flex;
        gap: 6px;
        align-items: center;
    }
    
    .social-icon {
        width: 22px;
        height: 22px;
        display: block;
    }
    
    .icon-placeholder {
        width: 32px;
        height: 32px;
        background: #eee;
        border: 1px dashed #ccc;
    }


.footer-social a {
    display: inline-block;
    font-size: 1.2rem;
    margin-right: 10px;
    color: #fff;
    text-decoration: none;
}

@media (max-width: 768px) {
    .footer-col {
        flex: 100%;
        margin-bottom: 25px;
    }
    
    .footer-container {
        gap: 25px;
    }
}


#loadingSpinner {
    color: #fff; /* Text color if you keep the text */
    margin-top: 10px;
}

    /* Optional: Create a visual spinning circle */
    #loadingSpinner::before {
        content: "";
        display: inline-block;
        width: 20px;
        height: 20px;
        border: 3px solid rgba(255,255,255,0.3);
        border-radius: 50%;
        border-top-color: #fff; /* Color of the spinner */
        animation: spin 1s ease-in-out infinite;
        margin-right: 10px;
        vertical-align: middle;
    }

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


@media (max-width: 480px) {
    .header-container,
    .hero-section,
    .about-container,
    .features-section,
    .integration-image,
    .why-choose-grid,
    .contact-container,
    .footer-container {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .header-container {
        justify-content:space-between !important
    }
}