/* Global Styles */
:root {
    --primary-color: #1a4f8b;
    --secondary-color: #ff6b35;
    --accent-color: #2ecc71;
    --text-color: #333333;
    --light-gray: #f8f9fa;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
}

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

.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
    font-weight: 600;
}

/* Navigation */
.navbar {
    padding: 15px 0;
    transition: all 0.3s ease;
    background: white;
}

.navbar-brand h1 {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 600;
}

.logo-img {
    height: 50px;
    width: auto;
}

.nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    padding: 8px 15px !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}
@media screen and (min-width: 995px) and (max-width: 1200px) { 
    .inquiry-form { height: 500px !important; padding: 20px !important;} 
}
@media screen and (min-width: 390px) and (max-width: 992px) {
    .hero-bg {
        top: -150px !important;
        /* margin: 0 ;
        padding: 0 ; */
        opacity: 0.9;
        /* background: url('../images/shubh\ hero.jpg') no-repeat center; */
        height: 150vh;
    }
    .inquiry-form{
        margin-right: 30px;
    }
    .btn { margin-bottom: 10px; }
    .service-card{
        margin: 10px;
    }
}
/* Hero Section */
.hero-section {
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/shubh\ hero.jpg') no-repeat center center;
    background-size: cover;
    z-index: -1;
    opacity: 0.80;
}


.hero-title {
    font-size: 48px;
    font-weight: 700;
    color:#15407a ;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
}

.hero-features {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.hero-features .feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-features .feature i {
    color: var(--secondary-color);
    font-size: 24px;
}

.hero .btn {
    padding: 8px 20px;
    font-size: 14px;
    border-radius: 4px;
}

/* Inquiry Form */
.inquiry-form {
    background: white;
    padding: 30px;
    margin-left: 40px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    height: 410px;
}

.inquiry-form h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.form-control, .form-select {
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 25px;
    font-weight: 500;
}

.btn-primary:hover {
    background-color: #15407a;
    border-color: #f30000;
}

/* Service Cards */
.service-card {
    text-align: center;
    padding: 30px;
    background:linear-gradient(to right, #007bff, #00c6ff);
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    height: 250px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 40px;
    color: rgba(255, 149, 0, 0.991);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: white;
}

/* Feature Cards */
.feature-card {
    text-align: center;
    padding: 30px;
    background: linear-gradient(to right, #007bff, #00c6ff);
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.feature-card i {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

/* Achievement Cards */
.achievement-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.achievement-card .number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.achievement-card .label {
    color: var(--text-color);
    font-size: 16px;
}

/* Portfolio Items */
.portfolio-item {
    position: relative;
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
}

.portfolio-item img {
    width: 100%;
    border-radius: 10px;
}

.portfolio-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-info {
    transform: translateY(0);
}

/* Blog Cards */
.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

/* Contact Section */
.contact-info {
    margin-bottom: 30px;
    float: left !important;
}

.contact-info i {
    float: left !important;
    color: var(--primary-color);
    margin-right: 10px;
}
.contact-info .ph{
    text-align: start;
}

/* Page Header */
.page-header {
    padding: 120px 0 60px;
    background: var(--light-gray);
    margin-bottom: 40px;
}

.page-header h1 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

/* Service Detail Cards */
.service-detail-card {
    padding: 40px 0;
    border-bottom: 1px solid #eee;
}

.service-detail-card:last-child {
    border-bottom: none;
}

.service-detail-card h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-detail-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.service-detail-card ul li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
}

.service-detail-card ul li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

/* Portfolio Styles */
.portfolio-filters {
    margin-bottom: 40px;
}

.portfolio-filters button {
    margin: 0 5px;
    padding: 8px 20px;
    border-radius: 25px;
}

.portfolio-filters button.active {
    background-color: var(--primary-color);
    color: white;
}

.portfolio-card {
    position: relative;
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
}

.portfolio-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 79, 139, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-card:hover img {
    transform: scale(1.1);
}

.portfolio-overlay h3 {
    color: white;
    margin-bottom: 10px;
}

.portfolio-overlay p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

/* Modal Styles */
.modal-content {
    border-radius: 10px;
}

.modal-header {
    background: var(--primary-color);
    color: white;
    border-radius: 10px 10px 0 0;
}

.modal-header .btn-close {
    color: white;
}

.modal-body h4 {
    color: var(--primary-color);
    margin-top: 20px;
    margin-bottom: 10px;
}

.modal-body ul {
    list-style: none;
    padding-left: 0;
}

.modal-body ul li {
    padding: 5px 0;
    padding-left: 25px;
    position: relative;
}

.modal-body ul li:before {
    content: "\f00c";   
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

/* Footer */
.footer {
    padding: 80px 0 30px;
}

.footer h3 {
    color: white;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.social-links a {
    color: white;
    font-size: 20px;
    margin-right: 15px;
    text-decoration: none;
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(213, 13, 13, 0.1);
    text-align: center;
}

.footer-logo {
    border-radius: 8px;
    margin-bottom: 15px;
}

/* Top Bar Styles */
.top-bar {
    padding: 8px 0;
    font-size: 14px;
}

.top-bar i {
    margin-right: 5px;
}

.top-bar .social-links a {
    margin-left: 15px;
    text-decoration: none;
}

/* Blog Styles */
.blog-post {
    margin-bottom: 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.post-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.post-content {
    padding: 25px;
    background: white;
}

.post-meta {
    margin-bottom: 15px;
    color: #666;
    font-size: 14px;
}

.post-meta span {
    margin-right: 20px;
}

.post-meta i {
    margin-right: 5px;
    color: var(--primary-color);
}

.post-content h2 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Blog Widgets */
.blog-widget {
    background: white;
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.blog-widget h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 20px;
}

.search-form .input-group {
    border-radius: 25px;
    overflow: hidden;
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}

.category-list li:last-child {
    border: none;
}

.category-list a {
    color: var(--text-color);
    text-decoration: none;
    display: flex;
    justify-content: space-between;
}

.recent-post {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.recent-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border: none;
}

.recent-post img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 15px;
}

.recent-post h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.recent-post h4 a {
    color: var(--text-color);
    text-decoration: none;
}

.recent-post span {
    font-size: 12px;
    color: #666;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-cloud a {
    background: #f8f9fa;
    padding: 5px 15px;
    border-radius: 20px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.tag-cloud a:hover {
    background: var(--primary-color);
    color: white;
}

/* Blog Pagination */
.blog-pagination {
    margin-top: 40px;
}

.pagination .page-link {
    color: var(--primary-color);
    border-radius: 5px;
    margin: 0 5px;
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .inquiry-form {
        margin-top: 50px;
    }
    
    .service-detail-card {
        text-align: center;
    }
    
    .service-detail-card img {
        margin-bottom: 30px;
    }
    
    .service-detail-card ul {
        text-align: left;
    }
    
    .blog-widget {
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 50px 0;
    }
    
    .hero-section {
        padding: 120px 0 50px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .portfolio-filters button {
        margin-bottom: 10px;
    }
}
/* call to action  */
.cta-section {
    background: linear-gradient(to right, #007bff, #00c6ff);
    text-align: center;
    padding: 50px 20px;
    color: white;
    border-radius: 10px;
    margin: 20px auto;
    width: 100%;
}

.cta-container h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.cta-container p {
    font-size: 18px;
    margin-bottom: 20px;
}

.cta-button, .cta-button-alt {
    background: white;
    color: #007bff;
    padding: 12px 25px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    font-weight: bold;
    margin: 10px;
    display: inline-block;
    transition: 0.3s;
}

.cta-button-alt {
    background: #ffcc00;
    color: #333;
}

.cta-button:hover {
    background: #0056b3;
    color: white;
}

.cta-button-alt:hover {
    background: #ff9900;
}
/* #map  */
#map-section {
    padding: 50px;
    background: #f4f4f4;
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.map-container {
    width: 100%;
    max-width: 1400px;
    height: 400px;
    margin: auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* #services hover  */  
  .services-dropdown {
    position: relative;
    display: inline-block;
    align-content: center;
  }
  
  .services-link {
    text-decoration: none;
    font-size: 18px;
    color: #4e4e4f;
    padding: 10px 20px;
    border-bottom: 2px solid transparent;
  }
  
  .services-link:hover {
    /* border-bottom: 2px solid #e74c3c; */
    color: #e74c3c;
  }
  
  .services-menu {
    display: none;
    position: absolute;
    top: 40px;
    left: 0;
    padding: 0;
    background-color: white;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    list-style: none;
    min-width: 220px;
    z-index: 1000;
  }
  
  .services-menu li a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 16px;
  }
  
  .services-menu li a:hover {
    background-color: #f2f2f2;
    color: #e74c3c;
  }
  
  .services-dropdown:hover .services-menu {
    display: block;
  } 
 /* #why choose us  */
  @import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');

body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background: #f9f9f9;
}

.why-choose-us {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  padding: 80px 20px;
  color: #fff;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.light-effect {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  opacity: 0.3;
  z-index: 1;
  animation: glow 6s ease-in-out infinite alternate;
}

@keyframes glow {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.2); opacity: 0.7; }
}

.container {
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.why-choose-us h2 {
  font-size: 42px;
  margin-bottom: 50px;
  font-weight: bold;
}

.why-choose-us h2 span {
  color: #fdb813;
}

.content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.left, .right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.center-image img {
  width: 320px;
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0px 10px 20px rgba(0,0,0,0.4);
}

.feature {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 12px;
  gap: 20px;
  transition: transform 0.4s ease, background 0.4s ease;
  cursor: pointer;
}

.feature:hover {
  transform: translateY(-8px) scale(1.02);
  background: rgba(255, 255, 255, 0.1);
}

.feature i {
  font-size: 42px;
  color: #fdb813;
  transition: transform 0.6s ease, color 0.4s ease;
}

.feature:hover i {
  transform: rotate(360deg);
  color: #00d4ff;
}

.feature h3 {
  font-size: 22px;
  margin-bottom: 5px;
}

.feature p {
  font-size: 15px;
  color: #ddd;
}

/* Responsive */
@media (max-width: 992px) {
  .content {
    flex-direction: column;
  }
  .center-image {
    order: -1;
    margin-bottom: 40px;
  }
}
