/* MacBook 13" */
@media (max-width: 1280px) { 
	.section-title h1 {
    font-size: 98px;
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1.1em;
    margin-bottom: 0;
    cursor: none;
}

}


/* .hero-sub-heading p {
    text-align: justify !important;
} */

.navbar-brand img {
    width: 180px;
}
.container.header-glass {
    background: #f5f0f02b;
   /* padding: 10px;
    margin: 15px;
    border-radius: 15px;*/
}

.glossy-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #333;
  border: 1px solid #cecece69;
  border-radius: 40px;
/*   padding: 18px 35px; */
    font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(76, 42, 112, 0.4);
}

/* Glossy reflection effect */
.glossy-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.4), rgba(255,255,255,0));
  transform: skewX(-25deg);
}
.section-footer-text a:hover{
	color:#000 !important;
}
/* Hover animation */
.glossy-btn:hover::before {
  left: 125%;
  transition: left 0.6s ease-in-out;
}

.glossy-btn:hover {
  box-shadow: 0 6px 18px rgba(76, 42, 112, 0.6);
  transform: translateY(-2px);
}

/* Icon */
.glossy-btn .icon {
  font-size: 18px;
  line-height: 1;
}

.menu-item-has-children > a:after{
    content:"▼";
    margin-left:6px;
    font-size:10px;
}

.why-choose-box-header h2 {
    font-size: 26px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
	justify-content: center !important;
}

/* BASE BUTTON STYLE */
.glossy-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 15px 35px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 40px;
    text-decoration: none;
    transition: 0.3s ease-in-out;
    background: #fff;
    color: #000;
    border: 1px solid #fff;
}

/* SVG ICON base size */
.glossy-btn .icon img {
    width: 28px;
    height: 28px;
    display: block;
}

/* -----------------------------------
   BUTTON 1 — WHITE ALWAYS (No Hover)
------------------------------------ */
.btn-primary:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

/* -----------------------------------
   BUTTON 2 — White → Black On Hover
------------------------------------ */
.btn-hover-dark {
    background: #fff;
    color: #000;
}

.btn-hover-dark:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

/* Change arrow color on hover using filter */
.btn-hover-dark:hover .icon img {
    filter: brightness(0) invert(1);
}



.hero-benefit-item-content h3 {
    font-weight: 600;
    font-size: 23px;
}

.cta-box-content h2 {
    padding-bottom: 40px;
    margin-top: 16px;
}

.social-icons a {
    color: #fff !important;
    
}
.form-section {
  display: flex;
  justify-content: center;
  padding: 20px 20px;
}

.form-container {
  width: 100%;
  max-width: 650px;
  background: rgba(255, 255, 255, 0.04); /* Transparent dark */
  padding: 40px;
  border-radius: 35px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(5px);
}

.form-container h2 {
  color: #fff;
  font-size: 32px;
  margin-bottom: 25px;
  font-weight: 600;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 22px;
}

.form-group label {
  color: #ffffffcc;
  margin-bottom: 8px;
  font-size: 16px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #fff;
  font-size: 16px;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #ffffff78;
}

.form-group textarea {
  min-height: 120px;
  resize: none;
}

.submit-btn {
  width: 100%;
  padding: 16px;
  background: #ffffff;
  color: #000;
  border: none;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #ddd;
}
.form-group label {
    color: #ffffffcc;
    margin-bottom: 8px;
    font-size: 16px;
    text-align: justify;
}
.cta-box-content .section-title {
    text-align: justify;
}
.cta-box-content h2 {
    text-align: left;
}



 /* hide default cursor on desktop */
  @media (pointer: fine) {
    html, body { cursor: none !important; }
  }

  /* Cursor wrapper */
  .custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 44px;               /* outer size */
    height: 44px;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 99999;
    transition: transform 0.12s ease-out;
    will-change: transform, opacity;
    mix-blend-mode: normal;    /* change if you want invert effect */
  }

  /* outer ring */
  .custom-cursor .cursor-ring {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.08); /* faint ring to match dark bg */
    background: rgba(255,255,255,0.02); /* subtle fill */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.45);
    transition: transform 150ms cubic-bezier(.2,.9,.3,1), background 150ms, border-color 150ms;
    backdrop-filter: blur(2px);
  }

  /* inner dot */
  .custom-cursor .cursor-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.6);
    transition: transform 120ms cubic-bezier(.2,.9,.3,1), background 120ms;
    transform-origin: center;
  }

  /* state: hover on interactive element (links, buttons) */
  .custom-cursor.hover .cursor-ring {
    transform: scale(1.45);
    border-color: rgba(255,255,255,0.16);
    background: rgba(255,255,255,0.03);
  }
  .custom-cursor.hover .cursor-dot {
    transform: scale(0.8);
    background: #ffffff;
  }

  /* state: active / mousedown */
  .custom-cursor.active .cursor-ring {
    transform: scale(0.9);
    border-color: rgba(255,255,255,0.22);
  }
  .custom-cursor.active .cursor-dot {
    transform: scale(0.55);
    background: #f2f2f2;
  }

  /* optional: smaller cursor (for compact areas) */
  .custom-cursor.small {
    width: 28px;
    height: 28px;
  }

  /* ripple effect element */
  .cursor-ripple {
    position: fixed;
    pointer-events: none;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 99998;
    opacity: 0;
  }

  /* hide cursor on touch devices */
  @media (hover: none) and (pointer: coarse) {
    .custom-cursor, .cursor-ripple { display: none !important; }
  }

/* Scrollbar area par default cursor show */
body::-webkit-scrollbar,
body::-webkit-scrollbar-thumb,
body::-webkit-resizer,
html {
  cursor: default !important;
}


   /* new  marquee section Styles */
       

        /* Spacer to allow scrolling demonstration */
        .spacer {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: #ccc;
            text-transform: uppercase;
        }

        /* The Main Showreel Section */
        .showreel-section {
            position: relative;
			padding:100px 0px;
            width: 100%;
            background: #ffffff;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            overflow: hidden;
            z-index: 10;
        }


        /* Text Tracks */
        .marquee-container {
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 40px; /* Thoda gap badhaya taki button overlap na kare */
/*             transform: rotate(-2deg);  */
        }

        .marquee-track {
            display: flex;
            align-items: center; /* Items ko vertically center karne ke liye */
            white-space: nowrap;
/*             will-change: transform; */
        }

        .marquee-text {
            font-size: 12vw; 
            line-height: 1;
            font-weight: 700;
            color: #1a1a1a;
            text-transform: uppercase;
            padding: 0 20px;
        }

        /* Outline Text Style */
        .outline-text {
            color: transparent;
            -webkit-text-stroke: 2px #1a1a1a;
        }

        /* NEW: Inline Play Button */
        .inline-play-btn {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            width: 11vw;  /* Text size ke hisaab se responsive size */
            height: 11vw; /* Perfect circle */
            background-color: #4c2a70;
            border-radius: 50%;
            cursor: pointer;
            margin: 0 20px; /* Text ke beech thoda space */
            transition: transform 0.3s ease, background-color 0.3s;
            flex-shrink: 0; /* Button ko shrink hone se rokta hai */
        }

/*         .inline-play-btn:hover {
            transform: scale(1.1);
            background-color: #b8d400;
        } */

        .inline-play-icon {
            font-size: 3.5vw; /* Icon size relative to button */
            color:#ffffff;
            margin-left: 0.5vw; /* Visual centering */
        }

        /* Video Modal Overlay - SAME AS BEFORE */
        .video-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 100;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s ease;
        }

        .video-modal.active {
            opacity: 1;
            pointer-events: all;
        }

        .video-wrapper {
            width: 80%;
            max-width: 1000px;
            aspect-ratio: 16/9;
            background: #000;
            position: relative;
            transform: scale(0.8);
            transition: transform 0.4s ease;
        }

        .video-modal.active .video-wrapper {
            transform: scale(1);
        }

        .close-btn {
            position: absolute;
            top: -50px;
            right: 0;
            color: white;
            font-size: 30px;
            cursor: pointer;
            transition: color 0.3s;
        }

        .close-btn:hover {
            color: #d1f000;
        }

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

/* Glassy Service Button */
.services-glass-btn {
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.services-glass-btn:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}

/* Dropdown Style */
.glass-dropdown {
    position: absolute;
    top: 43px;
    right: 0;
    background: rgba(20, 20, 20, 0.5);
    backdrop-filter: blur(16px);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.2);
    width: 260px;
    display: none;
    z-index: 9999;
}

.glass-dropdown li a {
    display: block;
    padding: 14px 18px;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 15px;
    transition: 0.2s;
}

.glass-dropdown li:last-child a {
    border-bottom: none;
}

.glass-dropdown li a:hover {
    background: rgba(255,255,255,0.12);
}

/* Show dropdown on hover */
.header-btn:hover .glass-dropdown {
    display: block;
}
.glass-dropdown li {
    list-style: none !important;
    padding: 0 !important;
}

.glass-dropdown li a {
    display: block;
    padding: 14px 20px !important;
    color: #fff !important;
    text-decoration: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 15px;
}

.glass-dropdown li:last-child a {
    border-bottom: none !important;
}

.why-choose-box-header {
    height: 285px;   
	padding: 30px;
}
.hero-title {
    width: 50%;
    display: inline-block;
}

@media only screen and (max-width: 991px){
 .showreel-section {
            position: relative;
	 padding:70px 0px;
	}
	
	.form-container {
    padding: 20px;    
}
	.form-section {
    display: flex;
    justify-content: center;
    padding: 20px 0px;
}
	
}

@media (max-width: 430px) { 
	.why-choose-box-header {
    height: 260px;
    padding: 30px;
}
}

.wpcf7 textarea::placeholder {
    font-size: 11px !important; 
}


@media (max-width: 767px) {
    .reverse-mobile {
        display: flex;
        flex-direction: column-reverse;
    }
	    .page-single-sidebar {
        margin-bottom: 30px;
        display: block !important;
    }
}



.phone-wrapper .iti {
    width: 100%;
}

.phone-wrapper input[type="tel"] {
    width: 100%;
    padding-left: 85px !important;
    height: 46px;
    border-radius: 12px;
    background: #272030;
    color: #fff;
    border: 1px solid #333;
}
.iti__flag-box, .iti__country-name {
    margin-right: 6px;
    color: #000;
}

span.iti__country-name {
    display: none !important;
}


.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Fix invalid vertical-align */
.paginationjs input {
    vertical-align: middle !important;
}

/* Fix invalid border value */
.paginationjs-pages li.paginationjs-next {
    border-right: 1px solid #ddd !important;
}

/* Fix typo: tranform → transform */
.rt-tooltip .rt-tooltip-bottom:after {
    transform: rotate(45deg) !important;
}


/* --- Blog Section Layout (The 3-Column Grid) --- */
.blog-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--padding-unit);
}

.blog-container {
    display: grid;
    /* Create three equal columns */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 30px;
}

/* --- Blog Card Styling --- */
.blog-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    overflow: hidden; /* Ensures image and content stay within rounded corners */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
}

.card-image-wrapper {
    position: relative;
    /* Aspect ratio for the image area - adjust as needed */
    padding-top: 60%; 
    overflow: hidden;
}

.card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Semi-transparent black overlay for text legibility on the image */
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 50%);
}

.card-content {
    padding: 20px;
    position: relative;
}

.card-title {
    font-size: 1.35em;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 10px;
}

.card-excerpt {
    color: var(--light-text);
    font-size: 0.95em;
    margin-bottom: 25px;
    line-height: 1.4;
}

.read-more-btn {
    display: inline-block;
    padding: 15px 20px;
    margin-bottom: 15px;
    background-color: #2c213773;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    border: 1px solid var(--button-bg);
    transition: background-color 0.2s, border-color 0.2s;
    font-size: 0.9em;
    font-weight: bold;
}
.read-more-btn:hover {
    background-color: var(--button-hover-bg);
    border-color: var(--button-hover-bg);
}

.card-footer {
    border-top: 1px solid #333333; /* Separator line */
    margin-top: var(--padding-unit);
    padding-top: 15px;
    text-align: right;
}

.post-date {
    font-size: 0.8em;
    color: var(--light-text);
    /* Use the calendar icon via a pseudo-element */
    padding-left: 20px;
    position: relative;
}

/* Pseudo-element for a calendar icon (requires a font like FontAwesome or an SVG/image) */
/* For a pure-CSS solution, we'll just use the space for now */
.post-date::before {
    content: "\1F4C5"; /* Unicode for a simple calendar emoji */
    font-size: 1em;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--light-text);
}


/* --- Pagination Styling --- */
.pagination ul {
    display: flex;
    gap: 10px;
    justify-content: center;
    list-style: none;
    padding: 0;
}

.pagination li a,
.pagination li span {
    padding: 8px 14px;
    background: #111;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
}

.pagination li span.current {
    background: #ffcc00;
    color: #000;
}

.pagination li a:hover {
    background: #333;
}

/* --- Media Queries for Responsiveness --- */
@media (max-width: 900px) {
    .blog-container {
        /* On smaller screens, only allow two columns */
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

@media (max-width: 600px) {
    .blog-container {
        /* On mobile, stack the cards */
        grid-template-columns: 1fr;
    }
}


@font-face {
  font-family: "Font Awesome 6 Brands";
  src: url("/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Font Awesome 6 Free";
  src: url("/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Font Awesome 6 Free";
  src: url("/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-regular-400.woff2") format("woff2");
  font-display: swap;
}
