
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.contact-bar {
    background: #0f1ba1;
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.contact-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 20px;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.navbar {
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    width: 40px;
    height: 40px;
    background: #0f1ba1;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.brand-name {
    font-size: 28px;
    font-weight: 700;
    color: #0f1ba1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #fc6806;
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

.mobile-menu-toggle {

    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #0f1ba1;
}

/* Button Styles */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-primary {
    background: #0f1ba1;
    color: white;
}

.btn-primary:hover {
    background: #fc6806;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #0f1ba1;
    border: 2px solid #0f1ba1;
}

.btn-outline:hover {
    background: #fc6806;
    border: 2px solid #fc6806;
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

/* Hero Section */
.hero {   
    padding: 0;
  min-height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000821;
  overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.highlight {
    color: #0f1ba1;
}

.hero-text p {
    font-size: 20px;
    color: #000;
    margin-bottom: 30px;
}

.features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-item i {
    color: #fc6806;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* About Section */
.about {
    padding: 100px 0;
    background: #e7ebee;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.about-text h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.about-text h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 18px;
    color: #000;
    margin-bottom: 20px;
}

.mission, .values {
    margin-top: 30px;
}

.mission h3, .values h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.values ul {
    list-style: none;
}

.values li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.values li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    background: #0f1ba1;
    border-radius: 50%;
}

.about-stats img {
    /*width: 40%;*/
    /* border-radius: 20px;
    margin-bottom: 30px; */
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.stat-card i {
    font-size: 24px;
    color: #0f1ba1;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #000;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #f9fafb;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: -13px;
    /* margin-bottom: 20px; */
}
.section-header h3 {
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.section-header p {
    font-size: 20px;
    color: #000;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
}

.service-icon.life { background: #fef2f2; color: #dc2626; }
.service-icon.auto { background: #eff6ff; color: #fc6806; }
.service-icon.home { background: #f0fdf4; color: #16a34a; }
.service-icon.business { background: #faf5ff; color: #9333ea; }
.service-icon.umbrella { background: #fffbeb; color: #d97706; }
.service-icon.group { background: #eef2ff; color: #6366f1; }

.service-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-card p {
    color: #000;
    margin-bottom: 20px;
}

.service-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.service-card li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    font-size: 14px;
    color: #000;
}

.service-card li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: #0f1ba1;
    border-radius: 50%;
}

.custom-solution {
    background: linear-gradient(135deg, #0f1ba1 0%, #6366f1 100%);
    color: white;
    padding: 60px;
    border-radius: 20px;
    text-align: center;
}

.custom-solution h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.custom-solution p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.custom-solution .btn {
    background: white;
    color: #0f1ba1;
}

.custom-solution .btn:hover {
    background: #f8fafc;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #e7ebee;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    background: #f9fafb;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-card i {
    font-size: 24px;
    color: #0f1ba1;
    margin-bottom: 15px;
}

.contact-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-card p {
    color: #000;
    line-height: 1.6;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-form > p {
    color: #000;
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0f1ba1;
}

.form-disclaimer {
    font-size: 14px;
    color: #000;
    text-align: center;
    margin-top: 20px;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #fc6806;
}

.footer-info {
    margin-top: 20px;
    font-size: 14px;
    color: #9ca3af;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fc6806;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    /* .about-text img{
        display: none;
    } */
    .nav-buttons{display: none !important;}
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        margin: 10px 0;
    }
    
    .nav-buttons {
        display: none;
        flex-direction: column;
        gap: 10px;
        padding: 20px;
        background: white;
    }
    
    .nav-buttons.active {
        display: flex;
    }
    
    .contact-bar .support-text {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        display: block;
        gap: 40px;
    }
    .about-display-flex {
        gap: 10px;
        color: #000 !important;
        display: inline-block !important;
        font-size: smaller;
    }
    .about-stats img {
        width: 100%;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        display: flow-root;
    }
    .contact-card p {
        color: #000;
        line-height: 1.6;
        font-size: smaller;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .custom-solution {
        padding: 40px 20px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
.social-container img{
    max-width: 30px;
}
.span-orange{
    color: #fc6806 !important;
}
.span-orange-service{
    color: #fc6806;
    font-size: x-large;
    font-weight: 700;
}
.service-card-details:hover {
    background: #fc6806;
    transform: translateY(-2px);
}
.service-card-details:hover .span-orange-service {
    color: #fff;
}
.about-icons{
    display: flex;
    gap: 6px;

}
.about-display-flex{
    display: flex;
    gap: 10px;
    color: #000 !important;
}
.about-icons a{
    text-decoration: none;
    color: #000;
}
.about-icons p{
    text-decoration: none;
    color: #000;
}
.about-text .social-container a{
    text-decoration: none;
}
.contact-card a{
    text-decoration: none;
    color: #000;
}
.contact-card a:hover{
    text-decoration: none;
    color: #fc6806;
}

/* Find Insurance Section */
.find-insurance-section {
    padding: 5rem 0;
    background: white;
}

.client-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.client-card {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    transition: transform 0.3s;
}

.client-card.featured {
    transform: scale(1.05);
}

.client-image {
    position: relative;
    height: 20rem;
    overflow: hidden;
}

.client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    color: white;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.card-description {
    font-size: 0.875rem;
    color: #e5e7eb;
}

.card-content {
    background: white;
    padding: 1.5rem;
    border: 1px solid #fc6806;
}

.feature-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.feature-list li {
    font-size: 0.875rem;
    color: #4b5563;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.feature-list li::before {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    background: #16a34a;
    border-radius: 50%;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.card-btn {
    width: 100%;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.card-btn:not(.featured-btn) {
    background: #fc6806;
    color: #1f2937;
}

.card-btn:not(.featured-btn):hover {
    background: #e5e7eb;
}

.featured-btn {
    background: #16a34a;
    color: white;
}

.featured-btn:hover {
    background: #15803d;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .trusted-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stories-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .client-types-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
}
.slider {
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 100%;
}

.slide {
  min-width: 100vw;
  height: 100vh;
}

.slide img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  display: block;
}

.navigation button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.5);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
}

.navigation .prev {
  left: 20px;
}

.navigation .next {
  right: 20px;
}

.indicators {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
}

.indicators div {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  cursor: pointer;
}
.find-insurance-section {
  width: 100%;
}
.indicators .active {
  background-color: #717171;
}
.services-sty {
  position: relative;
  background-image: url('https://inveshield.com/assets/images/19373.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  padding: 100px 0;
  z-index: 1;
  overflow: hidden;
}

.services-sty::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* black with 50% transparency */
  z-index: 0;
}

.services-sty > * {
  position: relative;
  z-index: 1; /* ensure content sits above the overlay */
}
.services-sty1 {
  position: relative;
  background-image: url('https://inveshield.com/assets/images/24593.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  padding: 100px 0;
  z-index: 1;
  overflow: hidden;
}

.services-sty1::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* black with 50% transparency */
  z-index: 0;
}

.services-sty1 > * {
  position: relative;
  z-index: 1; /* ensure content sits above the overlay */
}
/* .services-sty {*/
/*  position: relative;*/
/*  background-image: url('https://jo-works.in/inveshield_1/assets/images/banner2.jpg');*/
/*  background-size: cover;*/
/*  background-position: center;*/
/*  background-attachment: fixed;*/
/*  background-repeat: no-repeat;*/
/*  padding: 100px 0;*/
/*  overflow: hidden;*/
/*}*/

/*.services-sty .overlay {*/
/*  position: absolute;*/
/*  top: 0; left: 0;*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  z-index: 0;*/
/*}*/

/*.services-sty .container {*/
/*  position: relative;*/
/*  z-index: 1;*/
/*}*/
.find-insurance_{
    background: #ffffff00 !important;
}
.service-card:hover {
  transform: translateY(-10px); /* elevates upward */
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2); /* deeper shadow on hover */
  border: 1px solid #fc6806db;
    background: #fc6806db;

}
.client-card:hover {
  transform: translateY(-10px); /* elevates upward */
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2); /* deeper shadow on hover */
  /* border: 1px solid #fc6806db; */
    /* background: #fc6806db; */

}
.with-corner-image {
  position: relative;
  overflow: hidden; /* ensures the image doesn't overflow outside */
}

.top-corner-shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 180px; /* adjust as needed */
  height: auto;
  opacity: 0.8; /* subtle look */
  z-index: 1;
  pointer-events: none; /* prevents interaction */
}
@media (max-width: 768px) {
  .top-corner-shape {
    width: 100px;
    top: 10px;
    right: 10px;
  }
}