
/*==============================================================
 HERO SLIDER
==============================================================*/

.hero-slider{
    position:relative;
    width:100%;
    height:100vh;
    min-height:700px;
    overflow:hidden;
    background:#071c38;
}

.hero-slides{
    position:relative;
    width:100%;
    height:100%;
}

.hero-slide{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    opacity:0;
    visibility:hidden;
    transition:all .8s ease;
}

.hero-slide.active{
    opacity:1;
    visibility:visible;
    z-index:2;
}

/*==============================================================
 BACKGROUND IMAGE
==============================================================*/

.hero-bg{
    position:absolute;
    inset:0;
    overflow:hidden;
}

.hero-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
    animation:heroZoom 12s linear infinite;
}
/* Mobile Hero Image */
@media (max-width:768px){

    .hero-bg img{

        object-fit:cover;

        object-position:center center;

    }

}
@keyframes heroZoom{

    0%{
        transform:scale(1);
    }

    100%{
        transform:scale(1.12);
    }

}

/*==============================================================
 OVERLAY
==============================================================*/

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        rgba(5,22,44,.45),
        rgba(5,22,44,.45)
    );
    z-index:1;
}

/*==============================================================
 CONTENT
==============================================================*/

.hero-content {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;       /* Yeh content ko horizontally center karega */
    text-align: center;        /* Yeh text ko center align karega */
    height: 100%;
    max-width: 720px;
    margin: 0 auto;            /* Yeh container ko khud center mein rakhega */
    color: #fff;
}

/*==============================================================
 TAG
==============================================================*/

.hero-tag{

    display:inline-flex;
    align-items:center;

    width:max-content;

    padding:10px 18px;

    border-radius:40px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(10px);

    border:1px solid rgba(255,255,255,.15);

    font-size:14px;

    font-weight:600;

    letter-spacing:.5px;

    margin-bottom:25px;

    color:#fff;

}

/*==============================================================
 TITLE
==============================================================*/

.hero-content h1,
.hero-content h2{

    font-size:64px;

    line-height:1.1;

    font-weight:700;

    margin-bottom:25px;

    color:#fff;

}

.hero-content h2{

    font-size:58px;

}

/*==============================================================
 PARAGRAPH
==============================================================*/

.hero-content p{

    font-size:20px;

    line-height:1.8;

    color:#d8dde5;

    max-width:650px;

    margin-bottom:40px;

}

/*==============================================================
 BUTTONS
==============================================================*/

.hero-buttons{

    display:flex;

    flex-wrap:wrap;

    gap:18px;

    margin-bottom:55px;

}

.hero-buttons .btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    padding:16px 34px;

    border-radius:8px;

    font-weight:600;

    transition:.35s;

    font-size:16px;

}

/* Primary */

.hero-buttons .btn-primary{

    background:#ff7b00;

    color:#fff;

}

.hero-buttons .btn-primary:hover{

    background:#ff9200;

    transform:translateY(-3px);

}

/* Outline */

.hero-buttons .btn-outline{

    border:2px solid #fff;

    color:#fff;

}

.hero-buttons .btn-outline:hover{

    background:#fff;

    color:#071c38;

}

/* WhatsApp */

.hero-buttons .btn-whatsapp{

    background:#25d366;

    color:#fff;

}

.hero-buttons .btn-whatsapp:hover{

    background:#18b851;

    transform:translateY(-3px);

}

/*==============================================================
 STATS
==============================================================*/



/*==============================================================
 MOBILE
==============================================================*/

@media (max-width:991px){

.hero-slider{
    height:100vh;
    min-height:620px;
}

.hero-slide{
    height:100vh;
    min-height:620px;
}

.hero-bg,
.hero-bg img{
    width:100%;
    height:100%;
}

.hero-bg img{
    object-fit:cover;
    object-position:center center;
}

}

.hero-content{

padding:140px 0;

}

.hero-content h1,
.hero-content h2{

font-size:42px;

}

.hero-content p{

font-size:17px;

}

.hero-stats{

grid-template-columns:repeat(2,1fr);

position:relative;

bottom:auto;

left:auto;

transform:none;

margin:30px auto;

}

}
@media (max-width:576px){

    .hero-content{
        width:100%;
        max-width:100%;
        padding:110px 20px 60px;
        text-align:center;
        align-items:center;
        justify-content:center;
    }

    .hero-content h1,
    .hero-content h2{
        font-size:30px;
        line-height:1.25;
        margin-bottom:15px;
    }

    .hero-content p{
        font-size:15px;
        line-height:1.7;
        max-width:100%;
        margin-bottom:0;
    }

    .hero-tag{
        font-size:12px;
        padding:8px 14px;
        margin-bottom:15px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .hero-buttons .btn{
        width:100%;
    }

}
.hero-bg img{

    object-fit:cover;

    object-position:center;

}
/*==============================================================
 HERO SLIDER NAVIGATION
==============================================================*/

.hero-prev,
.hero-next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:58px;
    height:58px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(15px);
    color:#fff;
    font-size:26px;
    cursor:pointer;
    transition:.35s;
    z-index:50;
    display:flex;
    align-items:center;
    justify-content:center;
}

.hero-prev{
    left:30px;
}

.hero-next{
    right:30px;
}

.hero-prev:hover,
.hero-next:hover{
    background:#ff7b00;
    transform:translateY(-50%) scale(1.08);
}

/*==============================================================
 DOTS
==============================================================*/

.hero-dots{

    position:absolute;

    bottom:160px;

    left:50%;

    transform:translateX(-50%);

    display:flex;

    gap:14px;

    z-index:55;

}

.hero-dots span{

    width:14px;

    height:14px;

    border-radius:50%;

    background:rgba(255,255,255,.45);

    cursor:pointer;

    transition:.35s;

}

.hero-dots span.active{

    width:42px;

    border-radius:40px;

    background:#ff7b00;

}

/*==============================================================
 CONTENT ANIMATION
==============================================================*/

.hero-slide.active .hero-tag{

    animation:fadeTop .7s ease forwards;

}

.hero-slide.active h1,
.hero-slide.active h2{

    animation:fadeTop .9s ease forwards;

}

.hero-slide.active p{

    animation:fadeTop 1.1s ease forwards;

}

.hero-slide.active .hero-buttons{

    animation:fadeTop 1.3s ease forwards;

}

@keyframes fadeTop{

0%{

opacity:0;

transform:translateY(60px);

}

100%{

opacity:1;

transform:translateY(0);

}

}

/*==============================================================
 BUTTON EFFECT
==============================================================*/

.hero-buttons .btn{

position:relative;

overflow:hidden;

}

.hero-buttons .btn::before{

content:"";

position:absolute;

left:-120%;

top:0;

width:100%;

height:100%;

background:rgba(255,255,255,.15);

transform:skewX(-30deg);

transition:.7s;

}

.hero-buttons .btn:hover::before{

left:120%;

}

/*==============================================================
 HERO STATS EFFECT
==============================================================*/

.hero-stats{

box-shadow:

0 20px 50px rgba(0,0,0,.30);

}

.hero-stats div{

transition:.35s;

}

.hero-stats div:hover{

transform:translateY(-8px);

}

/*==============================================================
 SCROLL INDICATOR
==============================================================*/

.hero-scroll{

position:absolute;

left:50%;

bottom:40px;

transform:translateX(-50%);

z-index:60;

}

.hero-scroll span{

display:block;

width:28px;

height:48px;

border:2px solid rgba(255,255,255,.65);

border-radius:30px;

position:relative;

}

.hero-scroll span::before{

content:"";

position:absolute;

left:50%;

top:8px;

transform:translateX(-50%);

width:6px;

height:10px;

background:#fff;

border-radius:20px;

animation:scrollDown 2s infinite;

}

@keyframes scrollDown{

0%{

opacity:1;

top:8px;

}

100%{

opacity:0;

top:28px;

}

}

/*==============================================================
 IMAGE HOVER
==============================================================*/

.hero-slide:hover .hero-bg img{

transform:scale(1.15);

transition:8s linear;

}

/*==============================================================
 RESPONSIVE
==============================================================*/

@media(max-width:991px){

.hero-prev,
.hero-next{

width:46px;

height:46px;

font-size:20px;

}

.hero-prev{

left:15px;

}

.hero-next{

right:15px;

}

.hero-dots{

bottom:140px;

}

}

@media(max-width:768px){

.hero-prev,
.hero-next{

display:none;

}

.hero-dots{

bottom:20px;

}

.hero-dots span{

width:10px;

height:10px;

}

.hero-dots span.active{

width:28px;

}

.hero-stats{

margin-top:40px;

}

}

@media(max-width:576px){

.hero-tag{

font-size:12px;

padding:8px 14px;

}


.hero-content{

    max-width:100%;

    width:100%;

    height:100%;

    padding:120px 20px 80px;

    justify-content:center;

    align-items:center;

    text-align:center;

}

}

/* ==========================================================================
   HERO END
   ========================================================================== */


/*==============================================================
TRUSTED BY SECTION START
==============================================================*/
.trusted-section {
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
}

.trusted-section .container {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    color: #ff7b00;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trusted-section h2 {
    font-size: 36px;
    margin: 15px 0;
    color: #071c38;
}

.trusted-section p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Slider Track */
.logo-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.logo-track {
    display: flex;
    width: max-content;
    animation: scroll 20s linear infinite;
    gap: 60px;
}

.logo-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f8f9fa;
    padding: 15px 25px;
    border-radius: 50px;
    min-width: 200px;
    justify-content: center;
}

.logo-item img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.logo-item h4 {
    margin: 0;
    color: #071c38;
    font-size: 16px;
}

/* Animation */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Responsive */
@media (max-width: 768px) {
    .trusted-section h2 { font-size: 28px; }
    .logo-track { gap: 30px; }
}


/*==============================================================
TRUSTED BY SECTION END
==============================================================*/


/*==============================================================
ABOUT SECTION START
==============================================================*/

/*==============================================================
ABOUT SECTION
==============================================================*/
.about-section {
    padding: 100px 0;
    background: #fff;
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 50px;
}

.about-left, .about-right {
    flex: 1;
}

/* Image Styling */
.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.experience-box {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: #ff7b00;
    color: #fff;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
}

.experience-number {
    font-size: 36px;
    font-weight: 700;
    display: block;
}

/* Right Side Content */
.about-small-title {
    color: #ff7b00;
    font-weight: 600;
    text-transform: uppercase;
}

.about-right h3 {
    font-size: 32px;
    margin: 15px 0;
    color: #071c38;
    line-height: 1.3;
}

.about-right p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
}

/* Features Grid */
.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    font-size: 24px;
    color: #ff7b00;
    background: #fff3e6;
    padding: 15px;
    border-radius: 10px;
}

.feature-content h4 {
    margin: 0;
    font-size: 16px;
    color: #071c38;
}

.feature-content p {
    margin: 0;
    font-size: 13px;
    color: #777;
}

/* CTA Button */
.theme-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #071c38;
    color: #fff;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
    .about-wrapper { flex-direction: column; text-align: center; }
    .feature-card { justify-content: center; }
}

@media (max-width: 576px) {
    .about-features { grid-template-columns: 1fr; }
}

/*==============================================================
ABOUT SECTION END
==============================================================*/


/*==============================================================
SERVICES SECTION START
==============================================================*/

/*==============================================================
PREMIUM MINIMALIST SERVICES SECTION
==============================================================*/
.services-section {
    padding: 120px 0;
    background: #ffffff; /* Clean White */
    color: #071c38;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    color: #ff7b00;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

.section-title h2 {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

/* Luxury Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0; /* Removing gaps to create a seamless gallery look */
    border-top: 1px solid #eee;
    border-left: 1px solid #eee;
}

.service-card {
    padding: 40px;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
    transition: 0.5s;
    background: #fff;
}

.service-card:hover {
    background: #fcfcfc;
    z-index: 1;
    box-shadow: 0 30px 50px rgba(0,0,0,0.05);
}

.service-image {
    width: 100%;
    height: 250px;
    margin-bottom: 30px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s ease;
}

.service-card:hover img {
    transform: scale(1.05);
}

.service-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #071c38; /* Bold Dark Background */
    color: #ffffff;      /* High Contrast Text */
    padding: 16px 32px;
    font-size: 14px;
    font-weight: 800;    /* Extra Bold */
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 50px; /* Fully Rounded for premium shape */
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 2px solid #071c38;
}

/* Hover Effect: Inverse colors */
.service-btn:hover {
    background: #ff7b00;
    border-color: #ff7b00;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 123, 0, 0.3);
}

/* Arrow inside the bold button */
.service-btn::after {
    content: "→";
    font-size: 18px;
    transition: transform 0.4s ease;
}

.service-btn:hover::after {
    transform: translateX(5px);
}

/*==============================================================
SERVICES SECTION END
==============================================================*/



/*==============================================================
WHY CHOOSE US - MODERN STYLE START
==============================================================*/
.why-choose-section {
    padding: 100px 0;
    background: #fdfdfd;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.why-card {
    background: #ffffff;
    padding: 40px 30px;
    border: 1px solid #eee;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
}

/* Hover Effect: Card lift aur shadow */
.why-card:hover {
    transform: translateY(-15px);
    border-color: transparent;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.why-icon {
    font-size: 30px;
    color: #ff7b00;
    background: #fff3e6;
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    margin: 0 auto 25px;
    transition: 0.4s;
}

.why-card:hover .why-icon {
    background: #ff7b00;
    color: #ffffff;
}

.why-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #071c38;
}

.why-card p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

/* Responsive Grid */
@media (max-width: 992px) {
    .why-choose-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .why-choose-grid { grid-template-columns: 1fr; }
}


/*==============================================================
WHY CHOOSE US - MODERN STYLE START END
==============================================================*/


/*==============================================================
INDUSTRIES SECTION START
==============================================================*/
.industries-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    color: #ff7b00;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-heading h2 {
    font-size: 40px;
    margin: 15px 0;
    color: #071c38;
}

.section-heading p {
    max-width: 600px;
    margin: 0 auto;
    color: #666;
    line-height: 1.6;
}

/* Grid Layout */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.industry-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s ease;
    border: 1px solid #eee;
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.industry-icon {
    font-size: 40px;
    color: #ff7b00;
    margin-bottom: 20px;
}

.industry-card h3 {
    margin-bottom: 15px;
    color: #071c38;
}

.industry-card p {
    color: #777;
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 1.6;
}

.industry-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #071c38;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.industry-btn:hover {
    background: #ff7b00;
}

/* Responsive (Mobile & Tablet) */
@media (max-width: 992px) {
    .industry-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .industry-grid { grid-template-columns: 1fr; }
    .section-heading h2 { font-size: 30px; }
}

/*==============================================================
INDUSTRIES SECTION END
==============================================================*/


/*==============================================================
FEATURED PROJECTS - BENTO GRID STYLE START
==============================================================*/
.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 300px;
    gap: 20px;
    margin: 50px 0;
}

.project-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

/* Pehle 2 projects ko bada karne ke liye */
.project-large {
    grid-column: span 2;
    grid-row: span 2;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

/* Overlay Styling */
.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
    transition: 0.4s;
}

.project-category {
    background: #ff7b00;
    padding: 5px 15px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 50px;
}

.project-overlay h3 { margin: 15px 0 5px; font-size: 20px; }
.project-location { font-size: 14px; opacity: 0.8; margin-bottom: 10px; }

/* Premium Button in overlay */
.project-btn {
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    border-bottom: 2px solid #ff7b00;
}

/* Bottom Section */
.projects-bottom {
    text-align: center;
    padding: 60px;
    background: #f8f9fa;
    border-radius: 20px;
}

.project-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.theme-btn.outline {
    background: transparent;
    border: 2px solid #071c38;
    color: #071c38;
}

@media (max-width: 768px) {
    .projects-grid { grid-template-columns: 1fr; grid-auto-rows: 250px; }
    .project-large { grid-column: span 1; grid-row: span 1; }
}


/*==============================================================
FEATURED PROJECTS - BENTO GRID STYLE END
==============================================================*/


/*==============================================================
FEATURED PROJECTS - MODERN BENTO GRID Start
==============================================================*/

/* Featured Projects Grid - 4 Columns Fix */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns fixed */
    grid-auto-rows: 320px; /* Sabhi cards ki height barabar */
    gap: 20px;
    margin: 50px 0;
}

/* Ensure project-card ka span hata diya gaya hai */
.project-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

/* Responsiveness fix */
@media (max-width: 1024px) {
    .projects-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .projects-grid { grid-template-columns: 1fr; }
}


.projects-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr)) !important;
    gap:20px;
}

.project-card{
    grid-column:auto !important;
    grid-row:auto !important;
    width:100%;
    height:320px;
}
/*==============================================================
FEATURED PROJECTS - MODERN BENTO GRID END
==============================================================*/


/*==============================================================
CONTACT SECTION - PREMIUM LAYOUT START
==============================================================*/
#contact {
    padding: 120px 0;
    background: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 450px; /* Left: Info, Right: Form */
    gap: 80px;
    align-items: start;
}

/* LEFT SIDE: Contact Info */
.contact-info .eyebrow {
    color: #ff7b00;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    margin-bottom: 20px;
}

.contact-info h2 { font-size: 48px; line-height: 1.1; margin-bottom: 20px; color: #071c38; }

.contact-list { list-style: none; padding: 0; margin: 40px 0; }
.contact-list li { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 25px; color: #666; }
.contact-list .icon { width: 24px; height: 24px; fill: #ff7b00; flex-shrink: 0; }

.contact-map { border-radius: 20px; overflow: hidden; margin-top: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }

/* RIGHT SIDE: Contact Form */
.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 20px;
}

.contact-form h3 { font-size: 24px; margin-bottom: 30px; color: #071c38; }

.form__row { margin-bottom: 20px; }
.form__row label { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; margin-bottom: 8px; color: #071c38; }

.form__row input, 
.form__row select, 
.form__row textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #fff;
    transition: 0.3s;
}

.form__row input:focus, 
.form__row textarea:focus {
    border-color: #ff7b00;
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 123, 0, 0.1);
}

.btn--block {
    width: 100%;
    padding: 18px;
    background: #071c38;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

.btn--block:hover { background: #ff7b00; }

/* Responsive adjustments */
@media (max-width: 992px) {
    .contact-grid { grid-template-columns: 1fr; gap: 60px; }
}

/*==============================================================
CONTACT SECTION - PREMIUM LAYOUT END
==============================================================*/


/*==============================================================
PREMIUM DYNAMIC CTA SECTION START
==============================================================*/
.cta-premium {
    padding: 100px 0;
    background: #071c38; /* Dark Blue Luxury Base */
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Background animation effect (Subtle) */
.cta-premium::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,123,0,0.15), transparent 70%);
}

.cta-tag {
    color: #ff7b00;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    font-weight: 700;
}

.cta-title {
    font-size: 48px;
    margin: 20px 0;
    line-height: 1.2;
    color: #ffffff; /* Yeh line add karein taaki text white dikhe */
    font-weight: 700; /* Text ko bold karne ke liye */
}

.cta-desc {
    color: #d1d8e0;
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 18px;
}

/* Button Styling */
.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-main {
    background: #ff7b00;
    color: #fff;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.4s;
}

.btn-main:hover {
    background: #fff;
    color: #071c38;
    transform: translateY(-5px);
}

.btn-outline {
    background: transparent;
    color: #fff;
    padding: 18px 40px;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.2);
    font-weight: 700;
    transition: 0.4s;
}

.btn-outline:hover {
    border-color: #fff;
}

/*==============================================================
PREMIUM DYNAMIC CTA SECTION END
==============================================================*/


/*==============================================================
Client/Trust Section SECTION START
==============================================================*/
.trust-bar {
    background: #f8f9fa; /* Light grey/white feel */
    padding: 30px 0;
    text-align: center;
    color: #071c38;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
}

/*==============================================================
Client/Trust Section SECTION END
==============================================================*/
