@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');

body {
    font-family: "Josefin Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: auto;
    font-style: normal;
    margin: 0;
     padding: 0;
    max-width: 100%;
    align-items: center;
}

.nav-menu {
    font-family: "Josefin Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: auto;
    font-style: normal;
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-toggle::after {
    content: '▼';
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: #002366;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
    border-radius: 0 0 4px 4px;
}

.dropdown-menu li:first-child a {
    border-radius: 4px 4px 0 0;
}

.nav ul li a {
    font-family: "Josefin Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: auto;
    font-style: normal;
}

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

.row1 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.aboutleft img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.aboutright {
    flex: 1;
}

.headline .sub-headline {
    color: #0056bf;
    font-size: 1.2em;
    margin: 0;
}

.headline h3 {
    color: #333;
    font-size: 2em;
    margin: 10px 0;
}

.content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}


@media (max-width: 768px) {
    .row1 {
        flex-direction: column;
        text-align: center;
    }

    .aboutleft img {
        max-width: 100%;
    }

    .headline h3 {
        font-size: 1.5em;
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        background-color: #f8f9fa;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .dropdown:hover .dropdown-menu,
    .dropdown.active .dropdown-menu {
        max-height: 300px;
    }

    .dropdown-toggle::after {
        position: absolute;
        right: 40px;
    }
}

.head {
    background: #ffffff;
    color: white;
    padding-top: 0px;
    padding-bottom: 0px;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.headmenu {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logoimg img {
    vertical-align: middle;
    max-width: 150px !important;
}

.nav {
    position: relative;
    justify-content: space-between;
}

.menu-toggle {
    font-size: 24px;
    cursor: pointer;
    display: block;
    padding: 5px;
    color: black;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
    display: none;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 100%;
    left: -110px;
    width: 100%;
    background: linear-gradient(90deg, #fdfdfd, #fff3b7);
}

.nav-menu.active {
    display: flex;
}

.nav-menu li {
    margin: 10px 0;
}

.nav-menu li a {
    color: #000000;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 14px;
    padding: 8px;
    transition: color 0.3s ease;
    display: block;
}

.nav-menu li a:hover {
    color: #bd8700;
}

@media (min-width: 769px) {
    .menu-toggle {
        display: none;
    }

    .nav-menu {
        display: flex !important;
        flex-direction: row;
        position: static;
        width: auto;
        background: none;
    }

    .nav-menu li {
        margin-left: 20px;
        margin: 0;
    }

    .logoimg img {
        max-width: 110px;
    }

    .nav-menu li a {
        font-size: 16px;
        padding: 10px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;

    }

    .nav-menu.active {
        display: flex;
        width: 150px;
    }

    .head {
        position: sticky;
        top: 0;
        z-index: 10;
    }

    .headmenu {
        flex-direction: row;
        text-align: center;
        min-height: 70px;
        min-width: 350px;
    }

    .nav ul {
        flex-direction: column;
        margin-top: 10px;
    }

    .nav ul li {
        margin: 10px 0;
    }

    .logoimg img {
        margin: 0 auto;
        /* Centers the logo on small screens */
    }
}

h3 {
    font-size: 34px;
}

.maineimage {
    height: 500px;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    opacity: 20px black;
}

.swiper-wrapper {
    display: flex;
}

.container {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x)* .5);
    padding-left: calc(var(--bs-gutter-x)* .5);
    margin-right: auto;
    margin-left: auto;
}

.listing-home {
    position: relative;
    overflow-x: hidden;
    gap: 20px;
    scroll-behavior: smooth;
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1* var(--bs-gutter-y));
    margin-right: calc(-.5* var(--bs-gutter-x));
    margin-left: calc(-.5* var(--bs-gutter-x));
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.swiper-horizontal {
    overflow: hidden;
}

.swiper-horizontal {
    touch-action: pan-y;
}

.swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
    display: block;
}

.swiper {
    padding: 26px !important;
}

.row>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x)* .5);
    padding-left: calc(var(--bs-gutter-x)* .5);
    margin-top: var(--bs-gutter-y);
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
    box-sizing: content-box;
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
    display: block;
}

.img-fluid {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.clientcontainer {

    padding-left: 50px;
    padding-right: 50px;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.Whatsupbuttn {
    position: fixed;
    left: 30px;
    bottom: 5px;
    height: auto;
    background: #9990;
    z-index: 1001;
    display: block;
}

p {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    unicode-bidi: isolate;
}

.top-footer {
    background-color: #281d00;
    display: flex;
    color: white;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header{

box-shadow: 0px 0px 10px 0px rgb(131, 131, 131);
}

/* Design 1 - Flowing Slider */
.associates-section-1 {
    background: linear-gradient(90deg, #ffad093a 1%, #087bff 100%);
    padding: 100px 0;
    min-height: 50vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.section-header h2 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 20px;
    /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); */
}

.associates-slider {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    /* background: rgba(255, 255, 255, 0.1); */
    backdrop-filter: blur(10px);
    padding: 40px;
    /* border: 1px solid rgba(255, 255, 255, 0.2); */
}

.associates-track {
    display: flex;
    animation: scroll 20s linear infinite;
}

.associates-track:hover {
    animation-play-state: paused;
}

.associate-logo {
    min-width: 200px;
    height: 120px;
    background: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.associate-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.associate-logo:hover::before {
    left: 100%;
}

.associate-logo:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.associate-logo img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}



@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes scroll2 {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes scroll3 {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navigation */
.nav-buttons {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.nav-buttons button {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.nav-buttons button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.nav-buttons button.active {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
}

.section {
    display: none;
}

.section.active {
    display: block;
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.slider-controls:hover {
    background: #667eea;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2.5rem;
    }

    .associate-logo {
        min-width: 180px;
        height: 100px;
    }
}




/* Design 1 - Classic Slider */
.testimonials-section-1 {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 100px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.section-header h2 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 20px;
}

.section-header .subtitle {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 10px;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    min-width: 100%;
    background: white;
    padding: 60px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
    font-style: italic;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: #007acc;
    position: absolute;
    top: -20px;
    left: -40px;
}

.testimonial-author {
    font-size: 1.4rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.testimonial-role {
    font-size: 1.1rem;
    color: #007acc;
    font-weight: 500;
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    color: #007acc;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.slider-controls:hover {
    background: #007acc;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.slider-dots {
    display: none;
}

.dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #ccc;
    display: inline-block;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #007acc;
    transform: scale(1.2);
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navigation */
.nav-buttons {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.nav-buttons button {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.nav-buttons button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.nav-buttons button.active {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
}

.section {
    display: none;
}

.section.active {
    display: block;
}


@media (max-width: 768px) {
    .testimonial-slide {
        padding: 40px 30px;
    }

    .testimonial-text {
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }
}

.footer {
    background: black;
    color: #ffffff;
    padding: 50px 100px 30px;
}

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


.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    margin-bottom: 30px;
    font-family: 'georgia', serif;
    
}

.footer-section h3 {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.4;
    display: block;
    text-align: left;
}

.footer-section ul li a:hover {
    color: #cca000;
}

.company-info {
    grid-column: span 1;
}

.company-info .logo {
    color: #cca000;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.company-info p {
    color: #cccccc;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.contact-info {
    margin-top: 15px;
}

.contact-info p {
    color: #cccccc;
    font-size: 13px;
    margin-bottom: 5px;
}

.contact-info strong {
    color: white;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.social-links a {
    width: 35px;
    height: 35px;
    background: #1e90ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
}

.social-links a:hover {
    background: #ffd700;
    color: #333;
}

.footer-bottom {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #444;
    color: #999;
    font-size: 13px;
}

.footer-bottom p {
    margin-bottom: 5px;
}

.footer-bottom a {
    color: #ffd700;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #1e90ff;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer {
        padding: 40px 20px 20px;
    }
}

.directionchange {
    flex-direction: column !important;
}
.imggallery{
    max-width: 100%;
    display: flex;
    gap: 0;
}
.gallerygrid{
    display: grid;
    width: 50%;
    gap: 0;
}
.imggrid{
    display: flex;
    gap: 0;
}
.gallerygrid img{
    width: 100%;
    height: 100%;
}
.why-choose-us {
    padding: 80px 20px;
    background-color: #f8f9fa;
    text-align: center;
    min-height: 100vh;
}
.containerpro{
    display:inline;
    justify-content: space-between;
}
/* .containerpro-con{
    display:inline-flex;
    justify-content: space-between;
    margin: 0px 50px 0px 50px;
} */
.containerwhy {
    max-width: 1200px;
    margin: 0 auto;
}
.projectprice{
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 10px;
}
.projectpricelimit{
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 7px;
}
.projectpara{
    font-size: 12px;
    font-weight: 200;
}
.subtitle {
    color: #FFD700;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.main-title {
    font-size: 3.5rem;
    color: #00030c;
    margin-bottom: 30px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.description {
    max-width: 1000px;
    margin: 0 auto 60px;
    color: #4b5563;
    line-height: 1.4;
    font-size: 1.1rem;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.feature-card {
    background: white;
    padding: 40px 30px 60px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.2);
    border-color: #FFD700;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    border-radius: 0 0 20px 20px;
}

.feature-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.feature-title {
    font-size: 1.5rem;
    color: #1e3a8a;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.feature-description {
    color: #6b7280;
    line-height: 1.5;
    font-size: 1rem;
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-title {
        font-size: 2.8rem;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .why-choose-us {
        padding: 60px 15px;
    }

    .main-title {
        font-size: 2.2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .description {
        font-size: 1rem;
        text-align: center;
    }

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

    .feature-card {
        padding: 30px 20px 50px;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .feature-title {
        font-size: 1.3rem;
    }
 

@media (max-width: 480px) {
    .why-choose-us {
        padding: 40px 10px;
    }

    .main-title {
        font-size: 1.8rem;
    }

    .feature-card {
        padding: 25px 15px 40px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .feature-title {
        font-size: 1.2rem;
    }

    .feature-description {
        font-size: 0.9rem;
    }
   
   
    
}
}

.blog-section {
    padding: 80px 20px;
    background-color: white;
    min-height: 100vh;
}

.containerblog {
    max-width: 1200px;
    margin: 0 auto;
}

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

.subtitle {
    color: #FFD700;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.main-title {
    font-size: 3rem;
    color: #000000;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.blog-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.blog-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 0 10px;
}

.blog-card {
    background: white;
    border-radius: 15px;
    margin-top: 5px;
    margin-bottom: 5px;
    /* overflow: hidden; */
    box-shadow: 0 1px 5px rgba(30, 58, 138, 0.1);
    transition: 0.3s ease;
    border: 2px solid transparent;
}

.blog-card:hover {
    transform: translateY(-8px);
    /* box-shadow: 0 15px 35px rgba(30, 58, 138, 0.2); */
    border-color: #FFD700;
}

.blog-image {
    height: 138px;
    display: flex;
    justify-content: center;

}

.blog-image img {
    border-radius: 10px 10px 0px 0px;
}

/* .blog-image.city-sunset {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

.blog-image.city-buildings {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
} */

.blog-content {
    padding: 25px;
}

.blog-date {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-title {
    font-size: 1.3rem;
    color: #1e3a8a;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
    min-height: 60px;
}

.blog-excerpt {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 80px;
}

.read-more-btn {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.read-more-btn:hover {
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.nav-btn {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.nav-btn:hover {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.3);
}

.nav-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #FFD700;
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .blog-slide {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1024px) {
    .main-title {
        font-size: 2.5rem;
    }

    .blog-slide {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 60px 15px;
    }

    .main-title {
        font-size: 2rem;
    }

    .blog-image img {
        border-radius: 12px 12px 0px 0px;
        width: 100%;
        height: 198px;
    }

    .blog-slide {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .blog-card {
        margin-bottom: 20px;
    }

    .blog-title {
        font-size: 1.2rem;
        min-height: 50px;
    }

    .blog-excerpt {
        min-height: 60px;
    }

    .slider-nav {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .nav-btn {
        padding: 12px 25px;
        width: 200px;
    }
}

@media (max-width: 480px) {
    .blog-section {
        padding: 40px 10px;
    }

    .main-title {
        font-size: 1.8rem;
    }

    .blog-slide {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .blog-content {
        padding: 20px;
    }

    .blog-title {
        font-size: 1.1rem;
        min-height: auto;
    }

    .blog-excerpt {
        min-height: auto;
    }

    .blog-image {
        height: 150px;
        font-size: 2rem;
    }
}

.logo {
    height: 100px;
    margin-top: -54px;
}



/* Project CSS */

.containerpro {
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 10px 20px; */
    
}

/* Header */
.head1 {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 20px 0;
    position: relative;
    overflow: hidden;

}

.head1::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23f4c430" opacity="0.1" width="1200" height="800"/></svg>');
    background-size: cover;
}

.head1-content {
    position: relative;
    z-index: 2;
}

.project-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #f4c430;
}

.project-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Main Content */
.main-content {
    grid-template-columns: 1fr 350px;
    margin-left: 70px;
    margin-right: 70px;
   
}

.content-section {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}
.content-section-projectinfo {
    padding-bottom: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    margin: 20px 50px 20px 50px;
}
.section-header1 {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 15px 20px;
    font-size: 1.1rem;
    font-weight: bold;
}
.section-header2{
     font-family: "Josefin Sans", sans-serif;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 15px 20px;
    font-size: 40px;
    font-weight: bold;
}

.section-content {
    padding: 20px;
}

/* Project Details Grid */
.project-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.detail-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: ease-in-out 0.3s;
    
}

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

.detail-icon {
    width: 40px;
    /* height: 50px; */
    /* background: linear-gradient(135deg, #f4c430 0%, #f39c12 100%); */
    /* border-radius: 50%; */
    margin: 0;
    /* display: flex; */
 padding-left: 0px;
    color: white;
    font-size: 1.5rem;
}
.icon{
    width: 15px;
    height: 15px;
    object-fit: contain;
}

.detail-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    margin-top: -1px;
    margin-bottom: 8px;
    /* display: flex;
    align-items: center;
    gap: 8px;
    color: #1e3c72; */
}

/* Amenities Grid */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.amenity-item {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    /* border-left: 4px solid #f4c430; */
    display: flex;
    align-items: center;
    gap: 10px;
}

.amenity-icon {
    width: 30px;
    height: 30px;
    /* background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%); */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
}

/* Master Plan */
.master-plan {
    text-align: center;
    margin-bottom: 30px;
}

.plan-diagram {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.plan-flow {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.plan-step {
    background: linear-gradient(135deg, #f4c430 0%, #f39c12 100%);
    color: white;
    padding: 15px 25px;
    border-radius: 25px;
    font-weight: bold;
    position: relative;
}

.plan-step::after {
    content: '→';
    position: absolute;
    right: -30px;
    font-size: 1.5rem;
    color: #1e3c72;
}

.plan-step:last-child::after {
    display: none;
}

/* Floor Plans */
.floor-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.floor-plan-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.floor-plan-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e3c72;
    font-size: 1.2rem;
}

.floor-plan-info {
    padding: 15px;
}

.floor-plan-title {
    font-weight: bold;
    margin-bottom: 10px;
    color: #1e3c72;
}

.floor-plan-details {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #666;
}

/* Price Table */
.price-table {
    overflow-x: auto;
    margin-bottom: 30px;
}

.price-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.price-table th {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 15px;
    text-align: left;
}

.price-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.price-table tr:hover {
    background: #f8f9fa;
}

/* Sticky Form */
.sticky-form {
    width: 90%;
    margin: 0 auto;
    border-radius: 10px;
}


.contact-form {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    margin-top: -25px;
}


.form-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #f4c430;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 0.9rem;
}

.form-group input:focus,
.form-group select:focus {
    outline: 2px solid #f4c430;
}

.submit-btn {
    background: linear-gradient(135deg, #f4c430 0%, #f39c12 100%);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: transform 0.3s ease;
}
 /* udhhari ki css */
.mb-md{
    margin-bottom: 3rem;
}
.pt-69{
    padding-top: 1rem;
}
.pt-60{
    padding-top: 3.75rem;
}
.mb-lg{
    margin-bottom: 3.75rem;
}
ul{
    margin: 0;
    padding: 0;
}
.mb-sm{
    margin-bottom: .93rem;
}
.pb-60{
    padding-bottom: 3.75rem;
}
.pb-90{
    padding-bottom: 5.6rem;
}
.p-block-60{
     padding-block: 3.75rem;
}
.pt-70{
    padding-top: 4.75rem;
}

.boom{
    padding: .8rem 1.5rem;
    background: var(--saffaron);
    border-radius: 0;
    font-weight: 500;
    letter-spacing: 0;
}
.boom:hover{
    background-color: #ffd148;
}
 .contact-info1 {
      line-height: 1.8;
    }
 .contact-info1 p {
      margin: 10px 0;
      color: #555;
    }
.contact-info1 i {
      margin-right: 8px;
      color: #007bff;
    }
    .location {
      margin-top: 20px;
    }
   form input, form textarea, form select {
      margin-bottom: 15px;
      padding: 12px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 14px;
      outline: none;
      transition: border 0.3s;
    }

    form input:focus, form textarea:focus, form select:focus {
      border-color: #007bff;
    }
form {
      display: flex;
      flex-direction: column;
    }

/* udhaar itna he */
 .location h4 {
      font-size: 16px;
      margin-bottom: 5px;
      color: #222;
    }

h2{
 font-size: 2.5rem;
 font-weight: 600;
 letter-spacing: -.12rem;
 line-height: 110%;
}
.submit-btn:hover {
    transform: translateY(-2px);
}

.loan-calculator {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
}

.calculator-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #f4c430;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-content {
        grid-template-columns: 1fr;
        margin: 10px;
    }
    h2{
        font-size: 2.25rem;
    }
    h3{
        font-size: 1.25rem;
    }

    .contact-form {
        position: static;
        margin: 20px 0;
        width: 100%;
        max-width: 100%;
        margin-top: 10px;
    }

    .project-title {
        font-size: 2rem;
    }

    .project-details {
        grid-template-columns: 1fr;
    }

    .plan-flow {
        flex-direction: column;
    }

    .plan-step::after {
        content: '↓';
        right: 50%;
        transform: translateX(50%);
        bottom: -30px;
        top: auto;
    }
}



/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f4c430;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.propertyheading {
    margin-top: 20px;
    color: black;
    padding:10px 20px;
    text-align: left;
    margin-left: 300px;
}
.propertyheading, h2{
    font-size: 50px;
}

.filter-section {
    padding: 20px;
    text-align: center;

}
.filter-section select, .filter-section input {
    padding: 10px 25px;
    /* margin: 0 10px; */
    border: 1px solid #000;
    border-radius: 4px;
    appearance: none;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 9l6 6 6-6"/></svg>') no-repeat right 5px center;
    background-size: 12px;
    cursor: pointer;
    background-color: white;
}
.filter-section .search-btn {
    padding: 10px 25px;
    background-color: #000769;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}
.filter-section .search-btn:hover {
    background-color: #050f93;
    color: #fff;

}
.contact-btn{
width: 100px;
}

.property-list {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    padding: 20px;
    grid-template-columns: 3fr 3fr 3fr !important;
    gap: 20px;
}
.social-links a img {
    width: 35px;
}
.property-card {
    border: 1px solid #000;
    margin-bottom: 20px;
    padding: 15px;
    display: flex;
            /* display: flow; for image hiding*/
    grid-template-columns: 1fr 2fr;
    align-items: center;
        border-radius: 10px;
    box-shadow: 1px 2px 5px 0px;
}

@media  (max-width: 768px) {
    .property-list {
    max-width: 1200px;
    margin: 0 auto;
    display: block;
    padding: 20px;
    gap: 20px;
}

.property-card {
    border: 1px solid #000;
    margin-bottom: 20px;
    padding: 15px;
    /* display: grid; for image hiding */
        display: flex;
    grid-template-columns: 1fr 2fr;
    align-items: center;
        border-radius: 10px;
    box-shadow: 1px 2px 5px 0px;
}
}
.property-image {
    height: 150px;
    background-size: cover;
    background-position: center;
    margin-right: 15px;
}
.property-details {
    text-align: left;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two columns for other details, price gets its own */
    gap: 10px;
}
.price-column {
    grid-column: span 2; /* Price spans both columns for emphasis */
    margin-bottom: 10px;
}
.detail-para {
    margin: 5px 0;
    display: flex;
    align-items: center;
}
.detail-icon {
    margin-right: 5px;
    font-size: 16px;
}
.price-text {
    font-size: 20px;
    font-weight: bold;
}
.name-text {
    font-size: 18px;
}
.contact-btn {
    background-color: #12028c;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    width: 100%;
    text-align: center;
    grid-column: span 2; /* Button spans both columns */
}
.pagination {
    text-align: center;
    padding: 20px;
}
.arrow, .page-num {
    margin: 0 10px;
    cursor: pointer;
    font-size: 18px;
}
@media (max-width: 768px) {
    .property-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .property-image {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .property-details {
        grid-template-columns: 1fr; /* Single column for all details on mobile */
    }
    .price-column {
        grid-column: auto; /* Price stacks normally on mobile */
    }
    .filter-section {
        flex-direction: column;
        align-items: center;
    }
    .filter-section select, .filter-section input {
        margin: 5px 0;
        width: 80%;
    }
}
