.container{max-width: 1170px;    padding: 0 15px;margin: 0 auto;width: 100%;}
/* global css start */
*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}:before,:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}body{background-color: #f6f8f9;overflow:hidden;overflow-y:auto}.errorMsg{border:1px solid #f10000 !important;}body.active{overflow:hidden}body,ul,ol,li,h1,h2,h3,h4,h5,h6,figure,p{padding:0;margin:0;list-style:none}a{text-decoration: none;}
/* global css end */
.defaultFont{font-size:22px;font-weight: bold;color:#a57f0f;margin-bottom: 15px;}
.biggerHeading{font-size: 28px;color:#000;font-weight: bold;margin-bottom: 30px;}

.blueCOntainer{background: #275572;padding:80px 0px;position: relative;z-index: 1;}
.blueCOntainer::after{
       background-image: url(../images/grandBg.png);
    --background-overlay: '';
    background-position: center center;
    background-repeat: repeat;
    background-size: 500px auto;
    width: 100%;
    content: '';
    display: block;
    top: 0;
    position: absolute;
    left: 0;
    height: 100%;
    z-index:-1;
}
.whiteSection{background: #ffffff;padding:80px 0px;position: relative;z-index: 1;}
.whiteSection::after{   background-image: url(../images/grandBg.png);
    --background-overlay: '';
    background-position: center center;
    background-repeat: repeat;
    background-size: 500px auto;
    width: 100%;
    content: '';
    display: block;
    top: 0;
    position: absolute;
    left: 0;
    height: 100%;
    z-index: 0;z-index:-1;opacity:0.2}
    .aboutDeveloper{padding:80px 0px;}
    .layoutPlans{padding:80px 0px;}
    

    .disclaimer{padding:0px 25px 25px;margin-bottom:80px;}
    .disclaimer p{font-size:8px;color:#333;}


    /*Popup css starts */
      .popup-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(5px);
            z-index: 1000;
            animation: fadeIn 0.3s ease;
        }

        .popup-overlay.active {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes slideUp {
            from {
                transform: translateY(50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .popup-container {
            background: white;
            border-radius: 16px;
            width: 100%;
            max-width: 500px;
            max-height:63vh;
            overflow-y: auto;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            animation: slideUp 0.4s ease;
            position: relative;
            transform: translate(101%, 19%);
        }

        .popup-header {
            padding: 30px 30px 20px;
            border-bottom: 1px solid #e5e7eb;
            position: relative;
        }

        .popup-header h2 {
            color: #1f2937;
            font-size: 24px;
            margin-bottom: 8px;
        }

        .popup-header p {
            color: #6b7280;
            font-size: 14px;
        }

        .close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            background: #f3f4f6;
            border: none;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 20px;
            color: #6b7280;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .close-btn:hover {
            background: #e5e7eb;
            color: #1f2937;
            transform: rotate(90deg);
        }

        .popup-body {
            padding: 30px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #374151;
            font-weight: 500;
            font-size: 14px;
        }

        .form-group input {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e5e7eb;
            border-radius: 8px;
            font-size: 15px;
            transition: all 0.3s ease;
            outline: none;
        }

        .form-group input:focus {
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

        .form-group input.error {
            border-color: #ef4444;
        }

        .error-message {
            color: #ef4444;
            font-size: 13px;
            margin-top: 6px;
            display: none;
        }

        .error-message.show {
            display: block;
        }

        .consent-group {
                margin: 10px 0;
                background: #f9fafb;
  
        }

        .consent-group label {
            display: flex;
            align-items: flex-start;
            cursor: pointer;
            font-size: 13px;
            color: #4b5563;
            line-height: 1.6;
        }

        .consent-group input[type="checkbox"] {
            width: 18px;
            height: 18px;
            margin-right: 12px;
            margin-top: 2px;
            cursor: pointer;
            flex-shrink: 0;
        }

        .submit-btn {
            width: 100%;
            padding: 14px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        .submit-btn:disabled {
            background: #9ca3af;
            cursor: not-allowed;
            transform: none;
        }

        @media (max-width: 640px) {
            .popup-container {
                border-radius: 16px 16px 0 0;
                max-height:63vh;
            }

            .popup-header {
                padding: 20px;
            }

            .popup-header h2 {
                font-size: 20px;
            }

            .popup-body {
                padding: 20px;
            }

            .form-group input {
                padding: 10px 14px;
            }
            .whiteSection, .highlightSection{padding:30px 0px;}
            .defaultFont {margin-bottom:6px;}
        }

        @media (max-width: 480px) {
            body {
                padding: 0;
            }

            .popup-overlay.active {
                padding: 0;
                align-items: flex-end;
            }

            .popup-container {
                max-height:63vh;
                border-radius: 16px 16px 0 0;
                position: fixed;
                bottom: 0;
                width:100%;
                left:0;
                right:0;
                width:100%;
                transform: initial;;
            }
            .blueCOntainer {padding:40px 0px;}
              .layoutPlans{padding:40px 0px;}
              .aboutDeveloper p{margin-bottom:0 !important;}
              .bottomFixedBtnBox .bottomFixedBtn a svg{width:14px !important;height:14px !important;}
              .highlightSection{padding:40px 0px !important;}
            
        }



    /* Popup css Ends */
