@import url(http://fonts.googleapis.com/css?family=PT+Sans+Narrow|Oswald:400,300);
@import url(https://fonts.googleapis.com/css?family=Kaushan+Script);

/*------------------------------------------*/
/*	     01 - General & Basic Styles
/*------------------------------------------*/


body {
	font-family: 'PT Sans Narrow', Arial, sans-serif;
	font-size: 16px;
    color: #111;
    line-height: 21px;
/*	font-weight: 300;*/
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    text-rendering: optimizeLegibility !important;
    font-smoothing: antialiased !important;
    vertical-align: baseline;
}

strong, b {
	font-weight: 600;
}

ul, ol {
	list-style: none;
}

ul {
    padding: 0;
    margin: 0;
}

p {
    font-size: 20px;
    font-weight:500;
    color: white;
    line-height: 1.5em;
    font-family:Arial, Helvetica, sans-serif;
}

a {
    transition: color 0.2s ease-in-out;
    -moz-transition: color 0.2s ease-in-out;
    -webkit-transition: color 0.2s ease-in-out;
    -o-transition: color 0.2s ease-in-out;
}

a:hover {
    color: #444;
}

a, 
a:hover, 
a:focus,
a:active{
    outline: 0;
    text-decoration: none;
}


.white {
    color: #fff !important;
}

img {
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    
    font-weight: 400;
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 0;
    margin-bottom: 0;
}

.btn-primary {
    background: #184db1;
    border-color: #184db1;
    font-size: 16px;
    padding: 8px 15px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: transparent;
    border-color: #184db1;
    color: #184db1;
}

.btn-cancel {
    background: #222;
    border: 1px solid #222;
    color: #fff;
    padding: 8px 15px;
    font-size: 16px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.btn-cancel:hover {
    background: transparent;
    border-color: #222;
    color: #222;
}


/* Start Section Title */

.section-title {
    margin-bottom: 20px;
}
#about-section .section-title  h2{
    text-align: center;
}
.section-title  h2{
    color: white;
    font-size: 48px;
    font-family: Arial, Helvetica, sans-serif;
    text-transform: none;
    
    text-align: left;
    font-weight: 600;
}

.section-title p {
    padding-bottom: 60px;
    color: white;
    letter-spacing: 1px;
    font-size: 20px;
    font-weight: 300;
    text-align: left;
}
/* End Section Title */


.page-header {
    background: url(../images/banner.jpg) no-repeat;
    padding: 50px 0;
    margin-top: 80px;
}

.page-header h1 {
    color: #fff;
}




/*------------------------------------------*/
/*	     02 - Header & Navigation
/*------------------------------------------*/


.top-bar {
	background-color: #fff;
	border-bottom: 1px solid #f2f2f2;
}


.top-bar a {
	color: #aaa;
}

.top-bar .contact-details {
    //border-left: 1px solid #f2f2f2;
    //padding-top: 8px;
}
.top-bar .contact-details li {
	display: inline-block;
    padding: 5px 15px;
    //font-size: 18px;
	line-height: 32px;
    border-left: 1px solid #f2f2f2;
}

.top-bar .contact-details li:last-child {
    border-right: 1px solid #f2f2f2;
}

.top-bar .contact-details li a:before {
	color: #aaa;
}

.top-bar .contact-details li:first-child a:before {
	display: none;
}

.top-bar .contact-details li a {
	font-size: 14px;
    letter-spacing: 1px;
	display: block;
	line-height: 32px;
}


/* Top Bar Social */

ul.social-list li {
    float: right;
    border-left: 1px solid #f2f2f2;
}

ul.social-list li a {
    display: inline-block;
    transition: background 0.3s;
    -webkit-transition: background 0.3s;
    -moz-transition: background 0.3s;
    -o-transition: background 0.3s;
}

ul.social-list li:first-child {
    border-right: 1px solid #f2f2f2;
}

ul.social-list li a:hover{
    background: #21409a;
}


ul.social-list li a i {
	font-size: 14px;
	display: block;
	width: 42px;
	height: 42px;
	line-height: 42px;
	text-align: center;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}


ul.social-list li a:hover i {
	-webkit-animation: toRightFromLeft 0.3s forwards;
	-moz-animation: toRightFromLeft 0.3s forwards;
	animation: toRightFromLeft 0.3s forwards;
    color: #fff;
}

@-webkit-keyframes toRightFromLeft {
	49% {
		-webkit-transform: translate(40%);
	}
	50% {
		opacity: 0;
		-webkit-transform: translate(-40%);
	}
	51% {
		opacity: 1;
	}
}
@-moz-keyframes toRightFromLeft {
	49% {
		-moz-transform: translate(40%);
	}
	50% {
		opacity: 0;
		-moz-transform: translate(-40%);
	}
	51% {
		opacity: 1;
	}
}
@keyframes toRightFromLeft {
	49% {
		transform: translate(40%);
	}
	50% {
		opacity: 0;
		transform: translate(-40%);
	}
	51% {
		opacity: 1;
	}
}







/* ----------------------------------------------------------------*/
/* Start Navigation Section */
/* ----------------------------------------------------------------*/
.navbar-logo .sulfur-logo-text{
    margin-top: 15px !important;
    
}

.navbar {
    margin-bottom: 10px;
    background: #fff;
    
}

.navbar-header {
    height: 100px;
    overflow: visible;
    margin-top: 25px;
}

.navbar-brand {
   
    padding: 5px 0;
    display: flex;
    align-items:center;
}

.navbar-brand .logo-img {
    
    height: 90px !important;
    max-height: none !important;
    width: auto;
    display: block;
    margin-top: 20px;
    margin-left: -45px;
}
@media (max-width: 768px) {
    .navbar-header {
        margin-top: -20px;
        height: 90px;
    }

    .navbar-brand {
        flex-direction: column;
        align-items: flex-start;
        padding: 5px 10px;
    }

    .navbar-brand .logo-img {
        height: 60px !important;
        max-width: 100%;
        margin-left: 3ric;
    }

    .navbar-logo .sulfur-logo-text {
        margin-top: 5px !important;
        font-size: 14px;
    }

    .navbar {
        margin-bottom: 5px;
        padding: 10px 0;
    }
    .navbar-toggle{
        margin-top: 30px;
    }
}


.navbar-default .navbar-nav {
	margin-right: 10px!important;
	position: relative;
	transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    mar
}

.navbar-default .navbar-nav > li {
    margin-left: 1px;
    margin-top: 20px;
    
}

.navbar-default .navbar-nav > li:first-child {
    margin-left: 0;
}

.navbar-default .navbar-nav > li > a {
	color: #21409a;
	display: block;
    font-size: 20px;
    line-height: 10px;
	font-weight: 500;
    padding: 35px 15px 30px;
	overflow: hidden;
    border-top: 2px solid transparent;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    font-family:Arial, Helvetica, sans-serif;

}

.navbar-default .navbar-nav > li > a i {
    padding-left: 10px;
}

.navbar-default .navbar-nav > li > a.active, 
.navbar-default .navbar-nav > li:hover > a {
	border-top: 2px solid #21409a;
    color: #fff;
    background: #21409a;
    //padding: 25px 15px 30px;
}

.navbar-default .navbar-nav > li > a i {
	margin: 0 -2px 0 -5px;
}


.navbar-default .navbar-nav .dropdown {
    position: absolute;
    left: 0;
    top: 97%;
    width: 180px;
	background-color: #fff;
    border-top: 3px solid #21409a;
    visibility: hidden;
    z-index: 2;
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
    -moz-transition: opacity 0.3s ease-in-out;
    -webkit-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
	-o-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.navbar-default .navbar-nav > li.drop:hover .dropdown {
    visibility: visible;
	opacity: 1;  
}

.dropdown li, .sup-dropdown li {
	position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.dropdown li:first-child, 
.sup-dropdown li:first-child {
    border-top: none;
}

.dropdown li a, 
.sup-dropdown li a {
    display: block;
    color: #6b6b6b;
    font-size: 14px;
    padding: 10px 12px;
    text-decoration: none;
    //text-transform: uppercase;
    transition: padding 0.2s ease-in-out;
    -moz-transition: padding 0.2s ease-in-out;
    -webkit-transition: padding 0.2s ease-in-out;
    -o-transition: padding 0.2s ease-in-out;
}


.dropdown > li:hover > a, 
.sup-dropdown li:hover > a {
    background: #21409a;
    color: #fff;
}

.dropdown  li a.active, 
.sup-dropdown li a.active {
	background: #21409a;
    color: #fff;
}

.dropdown li a i {
	margin: 0 0 0 -4px;
}

.navbar-default .navbar-nav .sup-dropdown {
    position: absolute;
    left: 100%;
    top: 0;
    width: 180px;
	background-color: #fff;
    margin-top: 10px;
    transition: margin-top 0.2s ease-in-out;
    -moz-transition: margin-top 0.2s ease-in-out;
    -webkit-transition: margin-top 0.2s ease-in-out;
    -o-transition: margin-top 0.2s ease-in-out;
    visibility: hidden;
    z-index: 3;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	-o-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar-default .navbar-nav li.drop .dropdown li:hover .sup-dropdown {
    visibility: visible;
    margin-top: 0;
}





/*--------------------------------------------------*/
/* Start Header Section                             */
/*--------------------------------------------------*/
/* ===== Banner Section ===== */

/* ===== Banner Section ===== */

.banner {
    position: relative;
    text-align: center;
    color: #fff;
    background: url(../images/banner.jpg) no-repeat center center;
    background-size: cover;
    padding: 120px 20px;
    margin-top: -10px;
}


.intro-text {
    max-width: 800px;
    margin-left: -80px;
    padding: 40px 20px;
    text-align: left;
    font-family:Arial, Helvetica, sans-serif;
}

.banner .intro-text h1 {
    font-size: 44px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-family: 'Oswald', sans-serif;
    animation: bounceIn 2s;
    color: white;
}

.banner .intro-text p {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 30px;
    letter-spacing: 1px;
    color: white;
    animation: fadeInLeft 2s;
}

.banner .intro-text .btn-primary {
    padding: 12px 25px;
    font-size: 20px;
    color: white;
    background-color:  #284cb6;
    
    transition: all 0.3s ease;
}

.banner .intro-text .btn-primary:hover {
    background: #6f91f0;
    
    
}
.frond-para p {
    font-size: 20px;
    font-weight: 500;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 150px;
    margin-left: -800px;
}

/* ===== Mobile Banner Image (Hidden by default) ===== */
.mobile-banner-image {
    display: none;
    text-align: center;
}

.mobile-banner-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    margin-top: 20px;
}

/* ============ Responsive Styles ============ */
@media (max-width: 992px) {
    .intro-text {
    max-width: 700px;
    margin-left: -70px;
    padding: 40px 20px;
    text-align: left;
    font-family:Arial, Helvetica, sans-serif;
}
    .banner .intro-text h1 {
        font-size: 40px;
        font-weight: 600;
        
    }

    .banner .intro-text p {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .banner {
        padding: 80px 15px;
        /* REMOVE this line ↓ */
        /* background: none; */
        background: url('../images/Mob-Man.jpg') no-repeat center center;
        background-size: cover;
        height: 100vh;
        margin-left: 0px;
    }

    .intro-text {
        margin-top: 20px;
        margin-left:0px;
        padding: 60px 15px;
        font-family:Arial, Helvetica, sans-serif;
    }

    .banner .intro-text h1 {
        font-size: 30px;
        font-weight: 600;
        letter-spacing: 1px;
    }

    .banner .intro-text p {
        font-size: 18px;
    }

    .banner .intro-text .btn-primary {
    font-size: 18px;
    padding: 10px 20px; /* Reduce padding */
    width: auto; /* Keep it narrower */
    min-width: 150px; /* Optional: control minimum width */
}


    .frond-para p {
        font-size: 16px;
        text-align: center;
        margin: 20px auto 0;
        margin-left: 5px;
        font-family:Arial, Helvetica, sans-serif;
    }

    .mobile-banner-image {
        display: none; /* Hide image tag */
    }
}

@media (max-width: 480px) {
    .banner {
        padding: 10px 15px;
        /* REMOVE this line ↓ */
        /* background: none; */
        background: url('../images/Mob-Man.jpg') no-repeat center center;
        background-size: cover;
        height: 100vh;
    }

    .banner .intro-text h1 {
        font-size: 26px;
    }

    .banner .intro-text p {
        font-size: 16px;
    }

    .banner .intro-text .btn-primary {
    font-size: 16px;
    padding: 10px 20px; /* Reduce padding */
    width: auto; /* Keep it narrower */
    min-width: 150px; /* Optional: control minimum width */
}
}


/*---------------------------------------------------------*/
/* Start About Us Section                                  */
/*---------------------------------------------------------*/


#about-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background: url(../images/parallax/bg-01.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    background-color: #21409a;
    margin-top: 1px;
}

#about-section-2 {
    background: #f9f9f9;
    padding-top: 80px;
    padding-bottom: 80px;
}



iframe {
    border: none;
}


.about-img {
    position: relative;
    margin-top: 10px;
}


.about-img .head-text {
    position: absolute;
    left: 0;
    margin-bottom: -50px;
    background: #fff;
    padding: 10px;
    margin-left: 20px;
    margin-right: 20px;
    font-family:Arial, Helvetica, sans-serif;
    
}
.about-text h2{
    text-align: center;
    margin-left: 500px;
        font-family:Arial, Helvetica, sans-serif;
    }
.about-text p{
        font-family:Arial, Helvetica, sans-serif;
    }
.vision-mission {
    margin-top: 30px;
}

.vision-mission h4 {
    margin-bottom: 5px;
    color: white;
    font-weight: 600;
    font-size: 32px;
    font-family:Arial, Helvetica, sans-serif;
}

.vision-mission p {
    color: white;
    font-size: 20px;
    line-height: 1.6;
    margin-top: -5px;
    margin-bottom: 30px;
    font-family:Arial, Helvetica, sans-serif;
}

@media (max-width: 767px) {
    #about-section .section-title  h2{
    text-align: left;
    font-size:20px ;
    }
    .vision-mission h4 {
        font-size: 30px;
        font-weight: 600;
        font-family:Arial, Helvetica, sans-serif;
    }

    .vision-mission p {
        font-size: 20px;
         font-family:Arial, Helvetica, sans-serif;
    }
    .about-text p{
        font-family:Arial, Helvetica, sans-serif;
    }
}



/*---------------------------------------------------------------*/
/* Start Call To Action
/*---------------------------------------------------------------*/


.call-to-action {
    background: url(../images/parallax/call-to.jpg) no-repeat center center fixed;
    background-size: cover;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

.call-to-action p {
    color: #fff;
    font-weight: 300;
    font-size: 30px;
    line-height: 40px;
    letter-spacing: 2px;
    margin: 0 auto;
    max-width: 900px;
    text-align: left;
    font-family: Arial, Helvetica, sans-serif;
}

/* Responsive styles */
@media (max-width: 768px) {
    .call-to-action {
        padding: 80px 15px;
        background-attachment: scroll; /* Disable fixed on small screens for better performance */
    }

    .call-to-action p {
        font-size: 22px;
        line-height: 32px;
        letter-spacing: 1.5px;
         text-align: left;
    font-family: Arial, Helvetica, sans-serif;
    }
}

@media (max-width: 480px) {
    .call-to-action {
        padding: 60px 10px;
    }

    .call-to-action p {
        font-size: 18px;
        line-height: 28px;
        letter-spacing: 1px;
         text-align: left;
    font-family: Arial, Helvetica, sans-serif;
    }
}

.call-to-action .btn-primary {
    padding: 20px;
    font-size: 16px;
}

.call-to-action .btn-primary:hover {
    background: transparent;
}

/********************************/
/* Start Service Section
/********************************/

#service-section {
    padding-top: 80px;
    padding-bottom: 40px;
    background-color: #21409a;
}

.services-post {
    text-align: left;
    margin-bottom: 40px;
    background-color: #1d3782; /* Optional: box background */
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-post:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.services-post h2 {
    color: white;
    font-weight: 600;
    margin: 10px 0 14px;
    text-transform: uppercase;
    font-size: 20px;
    margin-left: 0px;
    font-family:Arial, Helvetica, sans-serif;
    text-align: left;
}

.service-icon {
    margin-left: 0px;
    width: 100%;
    max-width: 100%;
    height: auto;
}
/* Ensure image is aligned to far right */
.service-image-container {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    padding: 0;
}

/* Image style */
.service-image {
    max-width: 100%;
    height: auto;
    margin-top: -300px;
    margin-right: -80%;
}
/* Add border around each service image */
.services-post img.service-icon {
    border: 3px solid #ffffff;
    border-radius: 10px;
    padding: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

/* Hover effect */
.services-post img.service-icon:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Popup Modal Styling */
.modal {
    display: none; 
    position: fixed;
    z-index: 1000;
    padding-top: 80px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.7);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80%;
    border: 4px solid #fff;
    border-radius: 10px;
}

.modal-close {
    position: absolute;
    top: 50px;
    right: 100px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

@media (max-width: 768px) {

    .modal-close {
        top: 20px;
        right: 30px;
        font-size: 30px;
    }
}


/* Responsive adjustment */
@media (max-width: 768px) {
    .service-image-container {
       display: none; /* Hide image on small screens */
    }

    .service-image {
        display: none;
    }
}


/***************************************/
/* Start Client & Testimonial Section
/***************************************/


#babar-section1 {
    background: url(../images/image1.jpg) no-repeat;
    
}
#babar-section2 {
    background: url(../images/service2.jpg) no-repeat;
    
}
#babar-section3 {
    background: url(../images/image3.jpg) no-repeat;
    
}
#babar-section4 {
    background: url(../images/image4.jpg) no-repeat;
    
}
#babar-section6 {
    background: url(../images/service6.jpg) no-repeat;
    
}
#barcodes1 {
    margin-top: 1px;
    padding: 80px 20px;
    background-color: #21409a; /* optional background */
}
#barcodes2 {
    margin-top: 1px;
    padding: 80px 20px;
    background-color: #21409a; /* optional background */
}
#barcodes3 {
    margin-top: 1px;
    padding: 80px 20px;
    background-color: #21409a; /* optional background */
}
#barcodes4 {
    margin-top: 1px;
    padding: 80px 20px;
    background-color: #21409a; /* optional background */
}
#barcodes5 {
    margin-top: 1px;
    padding: 80px 20px;
    background-color: #21409a; /* optional background */
}
.review-box {
    max-width: 600px;
    margin-left: 80px;
    margin-top: 20px;
    text-align: left;
    margin-bottom: -70px;
}

.review-box .stars {
    color: #FFD700; /* Yellow color for stars */
    font-size: 34px;
    margin-bottom: 20px;
}

.review-box h3 {
    font-size: 32px;
    color: white;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.4;
    font-family: Arial, Helvetica, sans-serif;
}

.review-box p {
    color: white;
    font-size: 22px;
    line-height: 1.6;
    font-family: Arial, Helvetica, sans-serif;
}

/* Section Backgrounds */
#babar-section1,
#babar-section2,
#babar-section3,
#babar-section4,
#babar-section6 {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    color: #fff;
    padding: 250px 0;
}

/* Ensure height adjusts well on smaller screens */
@media (max-width: 992px) {
    #babar-section1,
    #babar-section2,
    #babar-section3,
    #babar-section4,
    #babar-section6 {
        padding: 150px 0;
    }
}

@media (max-width: 768px) {
    #babar-section1,
    #babar-section2,
    #babar-section3,
    #babar-section4,
    #babar-section6 {
        padding: 100px 0;
    }
}

@media (max-width: 576px) {
    #babar-section1,
    #babar-section2,
    #babar-section3,
    #babar-section4,
    #babar-section6 {
        padding: 60px 10px;
    }
}

/* Base Styles for All Background Sections */
#babar-section1,
#babar-section2,
#babar-section3,
#babar-section4,
#babar-section6 {
    background-repeat: no-repeat;
    background-position: center center;
    color: #fff;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    
    /* Default mobile-first background size */
    background-size: cover;
    
    /* Smooth transitions for resizing */
    transition: background-size 0.3s ease;
}

/* Individual Background Images */
#babar-section1 {
    background-image: url(../images/image1-mobile.jpg);
}
#babar-section2 {
    background-image: url(../images/service2-mobile.jpg);
}
#babar-section3 {
    background-image: url(../images/image3-mobile.jpg);
}
#babar-section4 {
    background-image: url(../images/image4-mobile.jpg);
}
#babar-section6 {
    background-image: url(../images/service6-mobile.jpg);
}

/* Tablet Screens (768px+) */
@media (min-width: 768px) {
    #babar-section1,
    #babar-section2,
    #babar-section3,
    #babar-section4,
    #babar-section6 {
        padding: 120px 0;
        /* Optional parallax effect for larger screens */
        background-attachment:scroll
    }
    
    /* Switch to higher-res images for tablets */
    #babar-section1 {
        background-image: url(../images/image1.jpg);
    }
    #babar-section2 {
        background-image: url(../images/service2.jpg);
    }
    #babar-section3 {
    background-image: url(../images/image3.jpg);
}
#babar-section4 {
    background-image: url(../images/image4.jpg);
}
#babar-section6 {
    background-image: url(../images/service6.jpg);
}

    /* ... repeat for other sections */
}

/* Desktop Screens (992px+) */
@media (min-width: 992px) {
    #babar-section1,
    #babar-section2,
    #babar-section3,
    #babar-section4,
    #babar-section6 {
        padding: 180px 0;
    }
    
    /* Full resolution images for desktop */
    #babar-section1 {
        background-image: url(../images/image1.jpg);
    }
    #babar-section2 {
        background-image: url(../images/service2.jpg);
    }
    #babar-section3 {
    background-image: url(../images/image3.jpg);
}
#babar-section4 {
    background-image: url(../images/image4.jpg);
}
#babar-section6 {
    background-image: url(../images/service6.jpg);
}
}

/* Large Desktop Screens (1200px+) */
@media (min-width: 1200px) {
    #babar-section1,
    #babar-section2,
    #babar-section3,
    #babar-section4,
    #babar-section6 {
        padding: 220px 0;
    }
}

/* Mobile Landscape Orientation */
@media (max-width: 767px) and (orientation: landscape) {
    #babar-section1,
    #babar-section2,
    #babar-section3,
    #babar-section4,
    #babar-section6 {
        background-size: contain;
        background-attachment: scroll;
        padding: 60px 0;
    }
}

/* High DPI/Retina Screens */
@media 
only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (min-resolution: 192dpi) {
    #babar-section1 {
        background-image: url(../images/image1.jpg);
    }
    #babar-section2 {
        background-image: url(../images/service2.jpg);
    }
    #babar-section3 {
    background-image: url(../images/image3.jpg);
}
#babar-section4 {
    background-image: url(../images/image4.jpg);
}
#babar-section6 {
    background-image: url(../images/service6.jpg);
}
}

/* Fallback for browsers that don't support background-size */
.no-backgroundsize #babar-section1,
.no-backgroundsize #babar-section2,
.no-backgroundsize #babar-section3,
.no-backgroundsize #babar-section4,
.no-backgroundsize #babar-section6 {
    background-position: center top;
    background-repeat: no-repeat;
}

@media (max-width: 768px) {
    .review-box {
    max-width: 600px;
    margin-left: -10px;
    margin-top: -40px;
    text-align: left;
    margin-bottom: -70px;
}

.review-box .stars {
    color: #FFD700; /* Yellow color for stars */
    font-size: 34px;
    margin-bottom: 20px;
}

.review-box h3 {
    font-size: 30px;
    color: white;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.4;
    font-family: Arial, Helvetica, sans-serif;
}

.review-box p {
    color: white;
    font-size: 20px;
    line-height: 1.6;
    font-family: Arial, Helvetica, sans-serif;
}

}

**********************/



/* Responsive for smaller screens */
@media (max-width: 768px) {
  .content-section {
    padding: 30px 15px;
  }

  .vision-mission-section h2 {
    font-size: 1.5rem;
  }

  .vision-mission-section p {
    font-size: 0.95rem;
  }
}


#map-section {
    width: 100%;
    height: 300px;  /* Set custom height */
    margin-top: 1px;
    margin-bottom: 1px;
    padding: 0;
    overflow: hidden;
    position: relative;
    z-index: 0;
}

#map-section iframe {
    border: 0;
    width: 100%;
    height: 100%;  /* Match the section height */
    display: block;
}


/* Footer Section */
.footer-section {
    background: #21409a;
    color: white;
    padding: 60px 0;
}

.footer-section .section-title {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-address ul,
.social-icons ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact {
    margin-bottom: 10px;
    font-size: 15px;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 10px;
    color: white;
}

.footer-contact a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #87a1f0;
}

.social-link {
    color: white;
    text-decoration: none;
    font-size: 15px;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
    margin-bottom: 10px;
}

.social-link i {
    margin-right: 10px;
}

.social-link:hover {
    color: #87a1f0;
}

/* Copyright Section */
.copyright-section {
    background: #21409a;
    color: white;

    padding: 20px 0;
    text-align: center;
}
.copyright-section p{
    font-size: 12px;
}

.copyright-section a {
    color: white;
    text-decoration: none;
    font-weight: 400;
}

.copyright-section a:hover {
    color: #7393f5;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .footer-section {
        text-align: center;
    }

    .footer-contact {
        justify-content: center;
    }

    .social-link {
        justify-content: center;
    }
}

/*------------------------------------------*/
/* Large Screen Media Queries (1200px+) */
/*------------------------------------------*/

@media (min-width: 1600px) {
    /* Header/Navigation Adjustments */
    .navbar-brand .logo-img {
        height: 110px !important;
        margin-left: -60px;
    }
    
    .navbar-default .navbar-nav > li > a {
        font-size: 22px;
        padding: 40px 20px 35px;
    }
    
    /* Banner Section */
    .banner {
        padding: 180px 20px;
    }
    
    .intro-text {
        max-width: 1000px;
        margin-left: -100px;
    }
    
    .banner .intro-text h1 {
        font-size: 60px;
        line-height: 1.3;
    }
    
    .banner .intro-text p {
        font-size: 28px;
    }
    
    .frond-para p {
        margin-left: -1000px;
        font-size: 24px;
    }
    
    /* About Section */
    #about-section {
        padding: 120px 0;
    }
    
    .about-text p {
        font-size: 22px;
        line-height: 1.8;
    }
    
    .vision-mission h4 {
        font-size: 36px;
    }
    
    .vision-mission p {
        font-size: 22px;
    }
    
    /* Services Section */
    #service-section {
        padding: 120px 0 80px;
    }
    
    .services-post h2 {
        font-size: 20px;
    }
    
    .service-image {
        margin-top: -350px;
        margin-right: -60%;
        max-width: 90%;
    }
    
    /* Testimonial/Review Boxes */
    .review-box {
        max-width: 800px;
        margin-left: 150px;
    }
    
    .review-box h3 {
        font-size: 40px;
    }
    
    .review-box p {
        font-size: 26px;
    }
    
    /* Call to Action */
    .call-to-action p {
        font-size: 36px;
        line-height: 1.6;
        max-width: 1100px;
    }
    
    /* Map Section */
    #map-section {
        height: 500px;
    }
    
    /* Footer */
    .footer-section {
        padding: 80px 0;
    }
    
    .footer-contact {
        font-size: 18px;
    }
    
    .social-link {
        font-size: 18px;
    }
}

@media (min-width: 2000px) {
    /* Ultra-wide screens */
    .container {
        max-width: 1800px;
    }
    
    .banner .intro-text h1 {
        font-size: 72px;
    }
    
    .service-image {
        margin-right: -40%;
    }
    
    .review-box {
        margin-left: 250px;
    }
}

/* 4K Screens (2560px+) */
@media (min-width: 2560px) {
    .container {
        max-width: 2200px;
    }
    
    .banner {
        padding: 220px 0;
    }
    
    .banner .intro-text h1 {
        font-size: 80px;
    }
    
    .banner .intro-text p {
        font-size: 32px;
    }
    
    /* About Section */
    .about-text p {
        font-size: 26px;
    }
    
    /* Services */
    .services-post h2 {
        font-size: 24px;
    }
    
    /* Review Boxes */
    .review-box h3 {
        font-size: 48px;
    }
    
    .review-box p {
        font-size: 30px;
    }
    
    /* Map */
    #map-section {
        height: 600px;
    }
}

/*------------------------------------------*/
/* Large Height Adjustments */
/*------------------------------------------*/
@media (min-height: 1000px) {
    .banner {
        height: 100vh;
        min-height: 800px;
    }
    
    .intro-text {
        margin-top: 100px;
    }
}

@media (min-height: 1200px) {
    .banner {
        min-height: 1000px;
    }
    
    .intro-text {
        margin-top: 150px;
    }
}